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
219352bf2caab7b456783b328533a7360c49c0f7
f950a1456cc19653fead995c8e837ea57ac85c3f
/Lab4_1_2/Lab4_1_2_all_in_one.cpp
b001bb20b4c7df9c20c8045fbd1be1168843afe9
[]
no_license
mdiannna/EmbeddedSystems
933dd0fcb09ebe221496e22dcfd65af40a74ce4d
6e27617cf83d6a9e9b97f73e34fd712a32cf6f73
refs/heads/master
2022-06-29T19:41:31.386998
2020-05-05T10:05:48
2020-05-05T10:05:48
238,868,800
0
0
null
null
null
null
UTF-8
C++
false
false
19,256
cpp
// serial plotter: // https://randomnerdtutorials.com/arduino-serial-plotter-new-tool/ // #include "temperature.h" // #include <Arduino.h> // #include <Wire.h> /* SFE_BMP180.h Bosch BMP180 pressure sensor library for the Arduino microcontroller Mike Grusin, SparkFun Electronics Uses floating-point equations from the Weather Station Data Logger project http://wmrx00.sourceforge.net/ http://wmrx00.sourceforge.net/Arduino/BMP085-Calcs.pdf Forked from BMP085 library by M.Grusin version 1.0 2013/09/20 initial version Verison 1.1.2 - Updated for Arduino 1.6.4 5/2015 Our example code uses the "beerware" license. You can do anything you like with this code. No really, anything. If you find it useful, buy me a (root) beer someday. */ #ifndef SFE_BMP180_h #define SFE_BMP180_h // #if defined(ARDUINO) && ARDUINO >= 100 // #include "Arduino.h" // #else // #include "WProgram.h" // #endif class SFE_BMP180 { public: SFE_BMP180(); // base type char begin(); // call pressure.begin() to initialize BMP180 before use // returns 1 if success, 0 if failure (bad component or I2C bus shorted?) char startTemperature(void); // command BMP180 to start a temperature measurement // returns (number of ms to wait) for success, 0 for fail char getTemperature(double &T); // return temperature measurement from previous startTemperature command // places returned value in T variable (deg C) // returns 1 for success, 0 for fail char startPressure(char oversampling); // command BMP180 to start a pressure measurement // oversampling: 0 - 3 for oversampling value // returns (number of ms to wait) for success, 0 for fail char getPressure(double &P, double &T); // return absolute pressure measurement from previous startPressure command // note: requires previous temperature measurement in variable T // places returned value in P variable (mbar) // returns 1 for success, 0 for fail double sealevel(double P, double A); // convert absolute pressure to sea-level pressure (as used in weather data) // P: absolute pressure (mbar) // A: current altitude (meters) // returns sealevel pressure in mbar double altitude(double P, double P0); // convert absolute pressure to altitude (given baseline pressure; sea-level, runway, etc.) // P: absolute pressure (mbar) // P0: fixed baseline pressure (mbar) // returns signed altitude in meters char getError(void); // If any library command fails, you can retrieve an extended // error code using this command. Errors are from the wire library: // 0 = Success // 1 = Data too long to fit in transmit buffer // 2 = Received NACK on transmit of address // 3 = Received NACK on transmit of data // 4 = Other error private: char readInt(char address, int16_t &value); // read an signed int (16 bits) from a BMP180 register // address: BMP180 register address // value: external signed int for returned value (16 bits) // returns 1 for success, 0 for fail, with result in value char readUInt(char address, uint16_t &value); // read an unsigned int (16 bits) from a BMP180 register // address: BMP180 register address // value: external unsigned int for returned value (16 bits) // returns 1 for success, 0 for fail, with result in value char readBytes(unsigned char *values, char length); // read a number of bytes from a BMP180 register // values: array of char with register address in first location [0] // length: number of bytes to read back // returns 1 for success, 0 for fail, with read bytes in values[] array char writeBytes(unsigned char *values, char length); // write a number of bytes to a BMP180 register (and consecutive subsequent registers) // values: array of char with register address in first location [0] // length: number of bytes to write // returns 1 for success, 0 for fail int16_t AC1,AC2,AC3,VB1,VB2,MB,MC,MD; uint16_t AC4,AC5,AC6; double c5,c6,mc,md,x0,x1,x2,y0,y1,y2,p0,p1,p2; char _error; }; #define BMP180_ADDR 0x77 // 7-bit address #define BMP180_REG_CONTROL 0xF4 #define BMP180_REG_RESULT 0xF6 #define BMP180_COMMAND_TEMPERATURE 0x2E #define BMP180_COMMAND_PRESSURE0 0x34 #define BMP180_COMMAND_PRESSURE1 0x74 #define BMP180_COMMAND_PRESSURE2 0xB4 #define BMP180_COMMAND_PRESSURE3 0xF4 #endif /* SFE_BMP180.cpp Bosch BMP180 pressure sensor library for the Arduino microcontroller Mike Grusin, SparkFun Electronics Uses floating-point equations from the Weather Station Data Logger project http://wmrx00.sourceforge.net/ http://wmrx00.sourceforge.net/Arduino/BMP085-Calcs.pdf Forked from BMP085 library by M.Grusin version 1.0 2013/09/20 initial version Verison 1.1.2 - Updated for Arduino 1.6.4 5/2015 Our example code uses the "beerware" license. You can do anything you like with this code. No really, anything. If you find it useful, buy me a (root) beer someday. */ // #include "SFE_BMP180.h" // #include <Arduino.h> // #include <Wire.h> #include <stdio.h> #include <math.h> SFE_BMP180::SFE_BMP180() // Base library type { } char SFE_BMP180::begin() // Initialize library for subsequent pressure measurements { double c3,c4,b1; // Start up the Arduino's "wire" (I2C) library: Wire.begin(); // The BMP180 includes factory calibration data stored on the device. // Each device has different numbers, these must be retrieved and // used in the calculations when taking pressure measurements. // Retrieve calibration data from device: if (readInt(0xAA,AC1) && readInt(0xAC,AC2) && readInt(0xAE,AC3) && readUInt(0xB0,AC4) && readUInt(0xB2,AC5) && readUInt(0xB4,AC6) && readInt(0xB6,VB1) && readInt(0xB8,VB2) && readInt(0xBA,MB) && readInt(0xBC,MC) && readInt(0xBE,MD)) { // All reads completed successfully! // If you need to check your math using known numbers, // you can uncomment one of these examples. // (The correct results are commented in the below functions.) // Example from Bosch datasheet // AC1 = 408; AC2 = -72; AC3 = -14383; AC4 = 32741; AC5 = 32757; AC6 = 23153; // B1 = 6190; B2 = 4; MB = -32768; MC = -8711; MD = 2868; // Example from http://wmrx00.sourceforge.net/Arduino/BMP180-Calcs.pdf // AC1 = 7911; AC2 = -934; AC3 = -14306; AC4 = 31567; AC5 = 25671; AC6 = 18974; // VB1 = 5498; VB2 = 46; MB = -32768; MC = -11075; MD = 2432; /* Serial.print("AC1: "); Serial.println(AC1); Serial.print("AC2: "); Serial.println(AC2); Serial.print("AC3: "); Serial.println(AC3); Serial.print("AC4: "); Serial.println(AC4); Serial.print("AC5: "); Serial.println(AC5); Serial.print("AC6: "); Serial.println(AC6); Serial.print("VB1: "); Serial.println(VB1); Serial.print("VB2: "); Serial.println(VB2); Serial.print("MB: "); Serial.println(MB); Serial.print("MC: "); Serial.println(MC); Serial.print("MD: "); Serial.println(MD); */ // Compute floating-point polynominals: c3 = 160.0 * pow(2,-15) * AC3; c4 = pow(10,-3) * pow(2,-15) * AC4; b1 = pow(160,2) * pow(2,-30) * VB1; c5 = (pow(2,-15) / 160) * AC5; c6 = AC6; mc = (pow(2,11) / pow(160,2)) * MC; md = MD / 160.0; x0 = AC1; x1 = 160.0 * pow(2,-13) * AC2; x2 = pow(160,2) * pow(2,-25) * VB2; y0 = c4 * pow(2,15); y1 = c4 * c3; y2 = c4 * b1; p0 = (3791.0 - 8.0) / 1600.0; p1 = 1.0 - 7357.0 * pow(2,-20); p2 = 3038.0 * 100.0 * pow(2,-36); /* Serial.println(); Serial.print("c3: "); Serial.println(c3); Serial.print("c4: "); Serial.println(c4); Serial.print("c5: "); Serial.println(c5); Serial.print("c6: "); Serial.println(c6); Serial.print("b1: "); Serial.println(b1); Serial.print("mc: "); Serial.println(mc); Serial.print("md: "); Serial.println(md); Serial.print("x0: "); Serial.println(x0); Serial.print("x1: "); Serial.println(x1); Serial.print("x2: "); Serial.println(x2); Serial.print("y0: "); Serial.println(y0); Serial.print("y1: "); Serial.println(y1); Serial.print("y2: "); Serial.println(y2); Serial.print("p0: "); Serial.println(p0); Serial.print("p1: "); Serial.println(p1); Serial.print("p2: "); Serial.println(p2); */ // Success! return(1); } else { // Error reading calibration data; bad component or connection? return(0); } } char SFE_BMP180::readInt(char address, int16_t &value) // Read a signed integer (two bytes) from device // address: register to start reading (plus subsequent register) // value: external variable to store data (function modifies value) { unsigned char data[2]; data[0] = address; if (readBytes(data,2)) { value = (int16_t)((data[0]<<8)|data[1]); //if (*value & 0x8000) *value |= 0xFFFF0000; // sign extend if negative return(1); } value = 0; return(0); } char SFE_BMP180::readUInt(char address, uint16_t &value) // Read an unsigned integer (two bytes) from device // address: register to start reading (plus subsequent register) // value: external variable to store data (function modifies value) { unsigned char data[2]; data[0] = address; if (readBytes(data,2)) { value = (((uint16_t)data[0]<<8)|(uint16_t)data[1]); return(1); } value = 0; return(0); } char SFE_BMP180::readBytes(unsigned char *values, char length) // Read an array of bytes from device // values: external array to hold data. Put starting register in values[0]. // length: number of bytes to read { char x; Wire.beginTransmission(BMP180_ADDR); Wire.write(values[0]); _error = Wire.endTransmission(); if (_error == 0) { Wire.requestFrom(BMP180_ADDR,length); while(Wire.available() != length) ; // wait until bytes are ready for(x=0;x<length;x++) { values[x] = Wire.read(); } return(1); } return(0); } char SFE_BMP180::writeBytes(unsigned char *values, char length) // Write an array of bytes to device // values: external array of data to write. Put starting register in values[0]. // length: number of bytes to write { char x; Wire.beginTransmission(BMP180_ADDR); Wire.write(values,length); _error = Wire.endTransmission(); if (_error == 0) return(1); else return(0); } char SFE_BMP180::startTemperature(void) // Begin a temperature reading. // Will return delay in ms to wait, or 0 if I2C error { unsigned char data[2], result; data[0] = BMP180_REG_CONTROL; data[1] = BMP180_COMMAND_TEMPERATURE; result = writeBytes(data, 2); if (result) // good write? return(5); // return the delay in ms (rounded up) to wait before retrieving data else return(0); // or return 0 if there was a problem communicating with the BMP } char SFE_BMP180::getTemperature(double &T) // Retrieve a previously-started temperature reading. // Requires begin() to be called once prior to retrieve calibration parameters. // Requires startTemperature() to have been called prior and sufficient time elapsed. // T: external variable to hold result. // Returns 1 if successful, 0 if I2C error. { unsigned char data[2]; char result; double tu, a; data[0] = BMP180_REG_RESULT; result = readBytes(data, 2); if (result) // good read, calculate temperature { tu = (data[0] * 256.0) + data[1]; //example from Bosch datasheet //tu = 27898; //example from http://wmrx00.sourceforge.net/Arduino/BMP085-Calcs.pdf //tu = 0x69EC; a = c5 * (tu - c6); T = a + (mc / (a + md)); /* Serial.println(); Serial.print("tu: "); Serial.println(tu); Serial.print("a: "); Serial.println(a); Serial.print("T: "); Serial.println(*T); */ } return(result); } char SFE_BMP180::startPressure(char oversampling) // Begin a pressure reading. // Oversampling: 0 to 3, higher numbers are slower, higher-res outputs. // Will return delay in ms to wait, or 0 if I2C error. { unsigned char data[2], result, delay; data[0] = BMP180_REG_CONTROL; switch (oversampling) { case 0: data[1] = BMP180_COMMAND_PRESSURE0; delay = 5; break; case 1: data[1] = BMP180_COMMAND_PRESSURE1; delay = 8; break; case 2: data[1] = BMP180_COMMAND_PRESSURE2; delay = 14; break; case 3: data[1] = BMP180_COMMAND_PRESSURE3; delay = 26; break; default: data[1] = BMP180_COMMAND_PRESSURE0; delay = 5; break; } result = writeBytes(data, 2); if (result) // good write? return(delay); // return the delay in ms (rounded up) to wait before retrieving data else return(0); // or return 0 if there was a problem communicating with the BMP } char SFE_BMP180::getPressure(double &P, double &T) // Retrieve a previously started pressure reading, calculate abolute pressure in mbars. // Requires begin() to be called once prior to retrieve calibration parameters. // Requires startPressure() to have been called prior and sufficient time elapsed. // Requires recent temperature reading to accurately calculate pressure. // P: external variable to hold pressure. // T: previously-calculated temperature. // Returns 1 for success, 0 for I2C error. // Note that calculated pressure value is absolute mbars, to compensate for altitude call sealevel(). { unsigned char data[3]; char result; double pu,s,x,y,z; data[0] = BMP180_REG_RESULT; result = readBytes(data, 3); if (result) // good read, calculate pressure { pu = (data[0] * 256.0) + data[1] + (data[2]/256.0); //example from Bosch datasheet //pu = 23843; //example from http://wmrx00.sourceforge.net/Arduino/BMP085-Calcs.pdf, pu = 0x982FC0; //pu = (0x98 * 256.0) + 0x2F + (0xC0/256.0); s = T - 25.0; x = (x2 * pow(s,2)) + (x1 * s) + x0; y = (y2 * pow(s,2)) + (y1 * s) + y0; z = (pu - x) / y; P = (p2 * pow(z,2)) + (p1 * z) + p0; /* Serial.println(); Serial.print("pu: "); Serial.println(pu); Serial.print("T: "); Serial.println(*T); Serial.print("s: "); Serial.println(s); Serial.print("x: "); Serial.println(x); Serial.print("y: "); Serial.println(y); Serial.print("z: "); Serial.println(z); Serial.print("P: "); Serial.println(*P); */ } return(result); } double SFE_BMP180::sealevel(double P, double A) // Given a pressure P (mb) taken at a specific altitude (meters), // return the equivalent pressure (mb) at sea level. // This produces pressure readings that can be used for weather measurements. { return(P/pow(1-(A/44330.0),5.255)); } double SFE_BMP180::altitude(double P, double P0) // Given a pressure measurement P (mb) and the pressure at a baseline P0 (mb), // return altitude (meters) above baseline. { return(44330.0*(1-pow(P/P0,1/5.255))); } char SFE_BMP180::getError(void) // If any library command fails, you can retrieve an extended // error code using this command. Errors are from the wire library: // 0 = Success // 1 = Data too long to fit in transmit buffer // 2 = Received NACK on transmit of address // 3 = Received NACK on transmit of data // 4 = Other error { return(_error); } // Sparkfun BMP180 library // #include "SFE_BMP180.h" SFE_BMP180 sensor; void InitTemperatureSensor() { if (sensor.begin()) Serial.println("Temperature sensor init success"); else { Serial.println("Temperature sensr PMB180 init fail\n\n"); while(1); // Pause forever. } } double GetTemperature(){ char status; double T; status = sensor.startTemperature(); if (status != 0) { // Wait for the measurement to complete: delay(status); // Retrieve the completed temperature measurement: // The measurement is stored in the variable T. // Function returns 1 if successful, 0 if failure. status = sensor.getTemperature(T); if (status != 0) { // Print out the measurement: // Serial.print("temperature: "); // Serial.print(T,2); // Serial.print(" deg C, "); } // TODO: printf? else Serial.println("error retrieving temperature measurement\n"); } else Serial.println("error starting temperature measurement\n"); return T; } // builtin pin is 13 - LED_BUILTIN #define RED_LED_PIN 10 #define GREEN_LED_PIN 11 #define LED_ON 1 #define LED_OFF 0 void LEDs_Init(); int Is_RED_LED_On(); int Is_GREEN_LED_On(); void Turn_LED_On(int led_pin); void Turn_LED_Off(int led_pin); void ConditionerInit(); void TurnConditionerOn(); void TurnConditionerOff(); int IsConditionerTurnedOn(); int IsConditionerTurnedOff(); void ConditionerInit() { LEDs_Init(); } void TurnConditionerOn() { Turn_LED_Off(GREEN_LED_PIN); Turn_LED_On(RED_LED_PIN); } void TurnConditionerOff() { Turn_LED_Off(RED_LED_PIN); Turn_LED_On(GREEN_LED_PIN); } int IsConditionerTurnedOn() { if(Is_RED_LED_On()==1 && Is_GREEN_LED_On()==0) { return 1; } return 0; } int IsConditionerTurnedOff() { if(Is_RED_LED_On()==0) { return 1; } return 0; } void LEDs_Init() { pinMode(GREEN_LED_PIN, OUTPUT);//Change to output my pins pinMode(RED_LED_PIN, OUTPUT); digitalWrite(GREEN_LED_PIN,LED_OFF);//Turn off LED digitalWrite(RED_LED_PIN,LED_OFF);//Turn off LED } int Is_RED_LED_On() { int LEDState = digitalRead(RED_LED_PIN); if(LEDState==LED_ON) { return 1; } //else return 0; } int Is_GREEN_LED_On() { int LEDState = digitalRead(GREEN_LED_PIN); if(LEDState==LED_ON) { return 1; } //else return 0; } void Turn_LED_On(int led_pin) { digitalWrite(led_pin,LED_ON); } void Turn_LED_Off(int led_pin) { digitalWrite(led_pin,LED_OFF); } #define TIME_INTERVAL_MS 2000 //Read sensor each 2 seconds #define MAX_TEMP 26 #define MIN_TEMP 24 long previousMillis = 0; void SerialInit() { Serial.begin(9600); } unsigned long CompareTimeInterval(unsigned long currentMillis, unsigned long previousMillis) { return currentMillis - previousMillis; } int TimeIntervalElapsed(unsigned long currentMillis, unsigned long previousMillis) { int interval = CompareTimeInterval(currentMillis, previousMillis); if(interval > TIME_INTERVAL_MS) { return 1; } return 0; } int TemperatureExceedsMaxTemp(double t) { if(t>=MAX_TEMP) { return 1; } return 0; } int TemperatureBelowMinTemp(double t) { if(t<=MIN_TEMP) { return 1; } return 0; } void setup() { SerialInit(); InitTemperatureSensor(); ConditionerInit(); Serial.println("Init complete"); } void loop() { double t = 0.0; unsigned long currentMillis = millis(); //time elapsed if(TimeIntervalElapsed(currentMillis, previousMillis)) { previousMillis = currentMillis; //"Last time is now" t = GetTemperature(); // Open serial plotter Serial.println(t); if(TemperatureExceedsMaxTemp(t) && IsConditionerTurnedOff())//if temperature above of 25 degrees { TurnConditionerOn(); } else if(TemperatureBelowMinTemp(t)&&IsConditionerTurnedOn())//if temperature is under 23 degrees { TurnConditionerOff(); } } }
[ "mdiannna@yahoo.com" ]
mdiannna@yahoo.com
74456dcb445d0a7076e54cb87a2890b591ce7e71
c768f2f50a48d573f169f5bb3657a6f6b0747f6a
/MobileApp/RadioButton.cpp
f3121f867c9341cd4db719b8bc9430e3ecf41d46
[]
no_license
FransUrbo/LastBerakning
2340e9521791e7abf93b63f625700633be0c8c48
69d4c3a1add527d6349d4c55e8d09be005e5954e
refs/heads/master
2021-01-10T20:25:51.054155
2010-04-24T17:42:33
2010-04-24T17:42:33
2,987,655
0
0
null
null
null
null
UTF-8
C++
false
false
1,517
cpp
/* * RadioButton.cpp * * http://www.mosync.com/forum/viewtopic.php?f=19&t=507&p=1041#p1041 * Created on: 2 Mar 2010 * Author: sjp */ #include <conprint.h> /* lprintfln() */ #include "RadioButton.h" #include "Util.h" RadioButton::RadioButton(int x, int y, int width, int height, Widget* parent, MAHandle selectedImage, MAHandle unselectedImage) : Widget(x, y, width, height, parent), _sel(selectedImage), _unsel(unselectedImage) { _button = new Image(0, 0, width, height, this, true, true, unselectedImage); _button->setPaddingTop(2); _label = new Label(_button->getWidth(), 0, width - _button->getWidth(), height, this); _label->setFont(gFont); _label->setDrawBackground(false); _label->setPaddingRight(PADDING); _label->setPaddingLeft(PADDING); } RadioButton::~RadioButton() {} void RadioButton::drawWidget() {} void RadioButton::setSelected(bool selected) { _selected = selected; if(_selected && _sel != NULL) _button->setResource(_sel); if(!_selected && _unsel != NULL) _button->setResource(_unsel); } bool RadioButton::checkSelected(int sel) { #if DEBUG >= 1 lprintfln(" checkSelected(%d) == %d", sel, _selected); #endif if(_selected) return(true); else return(false); } void RadioButton::setResources(MAHandle selectedImage, MAHandle unselectedImage) { _sel = selectedImage; _unsel = unselectedImage; } void RadioButton::setCaption(const char *caption) { _label->setCaption(caption); }
[ "turbo" ]
turbo
bc3d818fa7b18be0b9d2c5f4a968365af2df71f4
c39a642616f50bed60c2afa0c197c41bc7d53b57
/shared/xpanel/DspRwr.cpp
a3811ebb9252aa9c9c488428eda99192579d2d89
[]
no_license
wangfeilong321/OpenEaaglesExamples
e1dc23ec38837ea137cd6c41c95e1192fa6fc2c5
e2ca52aadd0c4b991ab16aa9891935e5f1f8e5ff
refs/heads/master
2020-12-24T12:00:49.712347
2016-06-14T19:46:30
2016-06-14T19:46:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,415
cpp
#include "DspRwr.h" #include "openeaagles/simulation/Rwr.h" #include "openeaagles/base/units/Angles.h" namespace oe { namespace xpanel { IMPLEMENT_SUBCLASS(DspRwr, "DspRwr") EMPTY_SLOTTABLE(DspRwr) EMPTY_SERIALIZER(DspRwr) EMPTY_DELETEDATA(DspRwr) DspRwr::DspRwr() { STANDARD_CONSTRUCTOR() rwr = nullptr; } void DspRwr::copyData(const DspRwr& org, const bool) { BaseClass::copyData(org); rwr = nullptr; } void DspRwr::updateData(const double dt) { // Update base classes stuff BaseClass::updateData(dt); } void DspRwr::drawFunc() { // Need a RWR to draw; if not, just draw a big X if (rwr == nullptr) { glBegin(GL_LINES); glVertex3d(-1.0, -1.0, 0.0); glVertex3d( 1.0, 1.0, 0.0); glVertex3d(-1.0, 1.0, 0.0); glVertex3d( 1.0, -1.0, 0.0); glEnd(); return; } // --- // Draw the RWR signal rays // --- GLdouble ocolor[4]; glGetDoublev(GL_CURRENT_COLOR,ocolor); glColor3d(0.0, 1.0, 0.0); unsigned int n = rwr->getNumberOfRays(); for (unsigned int i = 0; i < n; i++) { GLdouble azr = (base::Angle::D2RCC * rwr->getRayAzimuth(i) ); GLdouble pwr = rwr->getRay(i); GLdouble up = cos(azr) * pwr; GLdouble right = sin(azr) * pwr; glBegin(GL_LINES); glVertex3d( 0.0, 0.0, 0.0); glVertex3d( right, up, 0.0); glEnd(); } glColor4dv(ocolor); } } }
[ "doug@openeaagles.org" ]
doug@openeaagles.org
ae78b7aa373ee9f027b9a72472783e53ca6b2a4e
d6a118344d464fdfdab5486bd1cce84976b15748
/color-bf/fileIO.h
eaf78ccce44507052548fa6eabcfae9c9c230f8a
[]
no_license
annelai/colorBF
41b0d25baf1326324c44ab270441a6b58672d100
f7b73336f2d217126f8d375122ea8ff5b091d5f2
refs/heads/master
2016-08-12T04:46:28.592806
2015-09-26T04:32:49
2015-09-26T04:32:49
43,191,621
0
0
null
null
null
null
UTF-8
C++
false
false
1,665
h
#ifndef FILE_IO_H #define FILE_IO_H #include <iostream> #include <fstream> #include <iomanip> #include <string> using namespace std; typedef unsigned char uchar; uchar checkPixelRange(double x); void saveFloat(float* data, const int width, const int height, string filename); void sizePGM(int& width, int& height, string filename); void readPGM(uchar* I, string filename); void readPPM(uchar* I, string filename); void readPGM2f(float* I, string filename); void readPPM2RGBf(float* R, float* G, float* B, string filename); void writeRGBf2PPM(float* R, float* G, float* B, const int width, const int height, string filename); void sizeColorSpace(int& numSpace, string filename); void readColorSpace(int* RGB, int numSpace, string filename); // Save as portable gray map template <class T> void writePGM(T* I, const int width, const int height, string filename) { char* buffer = new char[height*width]; for(int i = 0; i < height*width; ++i) buffer[i] = (char)I[i]; ofstream ofs(filename.c_str(), ios::binary); ofs << "P5" << endl << width << " " << height << endl << 255 << endl; ofs.write(buffer, height*width); ofs.close(); delete [] buffer; } // Save as portable pixel map (color image) template <class T> void writePPM(T* I, const int width, const int height, string filename) { char* buffer = new char[height*width*3]; for(int i = 0; i < height*width*3; ++i) buffer[i] = (char)I[i]; ofstream ofs(filename.c_str(), ios::binary); ofs << "P6" << endl << width << " " << height << endl << "255" << endl; ofs.write(buffer, height*width*3); ofs.close(); delete [] buffer; } #endif
[ "anne@tagtoo.org" ]
anne@tagtoo.org
664ca6f30c0ce82fb9fb43f3fd7bba16a14d47aa
27a7b51c853902d757c50cb6fc5774310d09385a
/[Client]LUNA/Effect/EffectTriggerOffUnitDesc.h
7a34f70b48936b61b48a74b02fb79ea9dc7538e2
[]
no_license
WildGenie/LUNAPlus
f3ce20cf5b685efe98ab841eb1068819d2314cf3
a1d6c24ece725df097ac9a975a94139117166124
refs/heads/master
2021-01-11T05:24:16.253566
2015-06-19T21:34:46
2015-06-19T21:34:46
71,666,622
4
2
null
2016-10-22T21:27:35
2016-10-22T21:27:34
null
UTF-8
C++
false
false
783
h
// EffectTriggerOffUnitDesc.h: interface for the CEffectTriggerOffUnitDesc class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_EFFECTTRIGGEROFFUNITDESC_H__B737BBDC_ABFF_4FCC_88C8_342BA96F0B49__INCLUDED_) #define AFX_EFFECTTRIGGEROFFUNITDESC_H__B737BBDC_ABFF_4FCC_88C8_342BA96F0B49__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "EffectTriggerUnitDesc.h" class CEffectTriggerOffUnitDesc : public CEffectTriggerUnitDesc { public: CEffectTriggerOffUnitDesc(DWORD dwTime,DWORD dwUnitNum); virtual ~CEffectTriggerOffUnitDesc(); void ParseScript(CMHFile* pFile); BOOL Operate(CEffect* pEffect); }; #endif // !defined(AFX_EFFECTTRIGGEROFFUNITDESC_H__B737BBDC_ABFF_4FCC_88C8_342BA96F0B49__INCLUDED_)
[ "brandonroode75@gmail.com" ]
brandonroode75@gmail.com
e8655413df0ef8f16c0ac83a1b57c49d9aeaa7db
bacd60fa61d01da77dbef1f2c8a0539132c98b46
/Week5/Graphs/network-delay-time.cpp
588af1339f1d37234271b4cb490ca247a8bb3223
[]
no_license
JohanF26/WBTraining
43e05b1e17ba5e399c8b2ec989ead2ffdcbc50ab
585f035707a8abf8552b0a57c11905f3e97cd087
refs/heads/master
2020-06-08T20:10:07.389459
2019-08-05T04:38:21
2019-08-05T04:38:21
193,298,845
0
0
null
null
null
null
UTF-8
C++
false
false
1,646
cpp
class Solution { public: int networkDelayTime(vector<vector<int>>& times, int N, int K) { map<int, vector<vector<int>> > graph; vector<int> dist(N+1, INT_MAX); set<int> nodesLeft; for(int i = 1; i <= N; i++){ nodesLeft.insert(i); } for(auto it: times){ graph[it[0]].push_back({it[1],it[2]}); //cout << graph[it[0]][0][0] << " " << graph[it[0]][0][1] << endl; } dist[K] = 0; nodesLeft.erase(K); int currDist = 0; int currK = K; while(!nodesLeft.empty()){ for(auto it: graph[currK]){ //set distance to the min between the previos stored distance //or the distance to this node plus the distance to that node dist[it[0]] = min(dist[it[0]], currDist+it[1]); } currDist = INT_MAX; for(auto i: nodesLeft){ if(dist[i] < currDist){ currDist = dist[i]; currK = i; //cout << i << endl; } } nodesLeft.erase(currK); if(currDist == INT_MAX){ return -1; } } return currDist; } }; /* NOTES The one thing that was a bit tedious about this problem was implementing my own version of Dijkstra's algorithm but after sleeping on it I was able to come up with a solution. Runtime: 136 ms, faster than 28.95% of C++ online submissions for Network Delay Time. Memory Usage: 43.6 MB, less than 12.08% of C++ online submissions for Network Delay Time. */
[ "ferrerasjohan@gmail.com" ]
ferrerasjohan@gmail.com
292baac5513301655c879ac11c1c6058d1a93621
3ee53c9e2086b54036f2a50aa983be5d39f03439
/c++/longest_palindromic_substring.cpp
91590725bf69dd6a1300d0da01128cea91d6a631
[]
no_license
Peilin-Yang/leetcode
764b41992bc903aca4f8249320da5a59e3ce5deb
ad1ce11804183816bc5127091af00a5caa25017d
refs/heads/master
2021-01-10T16:01:31.571332
2015-11-12T19:40:08
2015-11-12T19:40:08
46,076,438
0
0
null
null
null
null
UTF-8
C++
false
false
2,239
cpp
#include <iostream> #include <vector> using namespace std; class Solution { public: string longestPalindrome(string s) { int l = s.size(); if (l == 0 || l == 1) return s; int start = 0, max_len = 1; for (int i = 0; i != l;) { if (l-i < max_len/2) break; int j = i, k = i; while (k < l-1 && s[k+1] == s[k]) { k++; } i = k+1; while (k < l-1 && j > 0 && s[k+1] == s[j-1]) { k++; j--; } int cur_len = k-j+1; if (cur_len > max_len) { start = j; max_len = cur_len; } } cout << "start:" << start << " max_len:" << max_len << endl; return s.substr(start, max_len); } }; int main() { Solution *s = new Solution(); string test; string r; test = "abacdfgdcaba"; r = s->longestPalindrome(test); cout << test << " -> " << r << endl; test = "abb"; r = s->longestPalindrome(test); cout << test << " -> " << r << endl; test = "bb"; r = s->longestPalindrome(test); cout << test << " -> " << r << endl; test = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; r = s->longestPalindrome(test); cout << test << " -> " << r << endl; return 0; }
[ "yangpeilyn@gmail.com" ]
yangpeilyn@gmail.com
75ba18be98014ac90b6f2d21fd30cdb10d65e613
51ae0bd194717983ff0de1e2c3953e59dc4aae17
/src/004_libs/lib/srv/include/view/table.h
5d477ef3c2b238ee7df6a2c20102f940dff3cd60
[]
no_license
skullquake/mongoosesamples
17e60a33f553827d63afed4518258d8942035c77
565df09327271a6c9f192a5f8d22ca6f4e85cf0e
refs/heads/master
2020-07-05T01:24:52.527390
2020-02-12T06:06:44
2020-02-12T06:06:44
202,479,875
0
0
null
null
null
null
UTF-8
C++
false
false
488
h
#ifndef TABLE_H #define TABLE_H #include"HTML.h" #include<iostream> #include<json/json.h> namespace view{ class Table{ public: Table(); ~Table(); void setHeader(std::vector<std::string>); void addRow(std::vector<std::string>); std::vector<std::vector<std::string>> getRows() const; HTML::Element toHtml() const; Json::Value toJson() const; protected: private: std::vector<std::string> mVHeader; std::vector<std::vector<std::string>> mVRows; }; } #endif
[ "ockert8080@gmail.com" ]
ockert8080@gmail.com
ef93839fc80a33d9e32b45339ba984f110f4c74d
c4e5862e1ea5a8bb5d813e456f983484e3078513
/General/pa4/utils.h
7ee9192df37fe0b81bc9a4a24d6e0b094bf691f3
[]
no_license
BOLLIGC-GoW/C
efde462b7224f86c021dec35b675d0e7f8c7b452
08ecb73a3ce70a8a5ac3728b957febbc8fb3a9f2
refs/heads/master
2021-05-05T09:22:08.602446
2018-01-27T21:46:39
2018-01-27T21:46:39
119,205,156
0
0
null
null
null
null
UTF-8
C++
false
false
2,789
h
/* Charles Bollig CSCI 2312 - 001 Spr 15 PA 4 */ /* This file gives the declarations global functions that will be used within the pa4 program. ____________________ Global Functions compute_data(double obtained, double possible, std::string &letter_grade, double &gpa) : void pre-condition: the amount of points obtained, the amount of points possible, the letter grade's memory location, and the gpa's memory location (local vars) are passed to the function post-condition: This function calculate the gpa and letter grade possible based on the points obtained vs the points possible read_data(std::ifstream&, Bag&) : void pre-condition: the ifstream object and memory location of a bag are passed to the function post-condition: The bag will parse the data stored in the file that is used as an argument to the program argv[1]. After the information is parsed, a dynamic bag will be created which holds the unorganized information separate_bag(Bag &orig_Bag, Bag &Metro_Bag, Bag &UCD_Bag, Bag &Other_Bag) : void pre-condition: 4 memory locations of Bag objects are passed to the function, representing the original bag of students, the bag of students that study at UCD, the bag of students that study at Metro State, and the bag of students that do not apply to either post-condition: The original bag will be separated into the various categories explained above. The original bag will not be destroyed after usage. write_data(std::ofstream&, Bag &Metro_Bag, Bag &UCD_Bag, Bag &Other_Bag) : void pre-condition: the ofstream object and memory location of the 3 category bags are passed to the function post-condition: a file will be written to (designated by argv[2]) that is formatted along the guidelines. The bags will be separated by category. GPA Scale GPA_SCALE =4.0; A = 3.7; A_minus = 3.3; B_plus = 3.0; B = 2.8; B_minus = 2.5; C_plus = 2.3; C = 2.0; C_minus = 1.8; D_plus = 1.6; D = 1.4; D_minus = 1.2; */ #ifndef UTILS_CHARBO #define UTILS_CHARBO #include <cstdlib> #include <string> #include "college_person.h" int const STRING_SIZE = 16; int const ID_SIZE = 4; namespace pa4_charbo { void compute_data(double obtained, double possible, std::string &letter_grade, double &gpa); void read_data(std::ifstream&, Bag&); void separate_Bag(Bag &orig_Bag, Bag &Metro_Bag, Bag &UCD_Bag, Bag &Other_Bag); void write_data(std::ofstream&, Bag &Metro_Bag, Bag &UCD_Bag, Bag &Other_Bag); }//End namespace #endif // UTILS_CHARBO
[ "charles.bollig@ucdenver.edu" ]
charles.bollig@ucdenver.edu
c876086ec8437912439563563a0be4314187d276
9411b4757d7235047027b60c55e55c32fc8ec2c6
/src/Praser/test/PraserTest.cpp
ecbc1d696c6e4d18873965458911735f0e17b951
[]
no_license
MIAFOREVER/WEIDU
8418620c8917478fae08f3cc903454eb81a979e6
041a658d5c796f17ae43c4c7e9faf51ca08b706c
refs/heads/master
2020-06-19T23:32:42.041304
2019-07-28T10:45:04
2019-07-28T10:45:04
196,913,352
0
0
null
null
null
null
UTF-8
C++
false
false
2,290
cpp
#include <gtest/gtest.h> #include "Praser.h" #include <string> #include <map> using namespace std; TEST(PraserTest, convertHeader) { HttpPraser p; string T = "POST /url.html HTTP/1.1\r\n"; T += "context:t\r\n"; T += "info:ppp\r\n\r\n"; T += "ajkhd=kusdf&suidga=saduh&eiuruf=sadkgu&dsa=sdfk"; map<string, string> header; map<string, string> info; p.HttpPostPraser(T, header, info); EXPECT_EQ(header["method"], "POST"); EXPECT_EQ(header["url"], "/url.html"); EXPECT_EQ(header["version"], "HTTP/1.1"); EXPECT_EQ(header["context"], "t"); EXPECT_EQ(header["info"], "ppp"); EXPECT_EQ(info["ajkhd"], "kusdf"); EXPECT_EQ(info["suidga"], "saduh"); EXPECT_EQ(info["eiuruf"], "sadkgu"); EXPECT_EQ(info["dsa"], "sdfk"); string temp; p.HttpHeaderPraser(T, temp, header); EXPECT_EQ(header["method"], "POST"); EXPECT_EQ(header["url"], "/url.html"); EXPECT_EQ(header["version"], "HTTP/1.1"); EXPECT_EQ(header["context"], "t"); EXPECT_EQ(header["info"], "ppp"); EXPECT_EQ(temp, "ajkhd=kusdf&suidga=saduh&eiuruf=sadkgu&dsa=sdfk"); } TEST(PraserTest, convertJson) { HttpPraser p; map<string, string> header; map<string, string> info; json j; string T = "POST /url.html HTTP/1.1\r\n"; T += "context:t\r\n"; T += "info:ppp\r\n\r\n"; T += "{ \"happy\": true, \"pi\": 3.141 }"; string temp; p.HttpHeaderPraser(T, temp, header); EXPECT_EQ(header["method"], "POST"); EXPECT_EQ(header["url"], "/url.html"); EXPECT_EQ(header["version"], "HTTP/1.1"); EXPECT_EQ(header["context"], "t"); EXPECT_EQ(header["info"], "ppp"); p.HttpPostJson(temp, j); EXPECT_EQ(j["happy"], true); EXPECT_EQ(j["pi"], 3.141); } TEST(PraserTest, mapToHeader) { HttpPraser p; map<string, string> header; header["context"] = "UTF-8"; header["location"] = "GUANGDONG"; string t; p.mapToHeader(header, t); EXPECT_EQ(t, "context:UTF-8\r\nlocation:GUANGDONG\r\n\r\n"); } TEST(PraserTest, mapToTitle) { HttpPraser p; map<string, string> header; header["version"] = "HTTP/1.1"; header["status_code"] = "200"; header["status"] = "OK"; string t; p.mapToTitle(header, t); EXPECT_EQ(t, "HTTP/1.1 200 OK\r\n"); }
[ "15686357310@github.com" ]
15686357310@github.com
fdf29c5c887729bd67e16d448e721c9b87888eb1
275ec6905a664e6d50f6f7593d62066740b241a0
/13_5.h
15d78bc41cace81997cebd2cd4068a9f6d8e697d
[]
no_license
huangjiahua/cppLearningFiles
0f135624d5d7d2256e8fd55146a408170737b603
7000ac6111b33c880a66c2c3cc2e4f41390aff9e
refs/heads/master
2021-09-10T15:11:48.991007
2018-03-28T08:57:41
2018-03-28T08:57:41
122,352,150
0
0
null
null
null
null
UTF-8
C++
false
false
472
h
#include <iostream> #include <string> using namespace std; class HasPtr { public: HasPtr(const std::string &s = std::string()): ps(new std::string(s)), i(0) { } HasPtr(const HasPtr &org): ps(new string(*org.ps)), i(org.i) { } HasPtr& operator=(const HasPtr &org) { string* new_ps = new string(*org.ps); ps = new_ps; delete new_ps; i = org.i; return *this; } private: std::string *ps; int i; };
[ "hjh4477@outlook.com" ]
hjh4477@outlook.com
9957bf5dd923082371ea2ef1488348364475f256
e858606ccacb9a78bfb48ca90b56d9469cff7a09
/RImageBook/src/thirdparty/i386/VTK/include/vtkTransform2D.h
856737fb64cb518195d59a4a189a07ea91f9082c
[]
no_license
tkatsuki/rimagebook
51f41166e98d442f7b9e2226b65046586f95dfc8
d26a1502faf39804bf8cb06d1699de24e6d53d58
refs/heads/master
2021-01-19T17:59:07.539596
2015-06-29T21:12:57
2015-06-29T21:12:57
38,264,836
1
2
null
null
null
null
UTF-8
C++
false
false
6,029
h
/*========================================================================= Program: Visualization Toolkit Module: vtkTransform2D.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm 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. =========================================================================*/ // .NAME vtkTransform2D - describes linear transformations via a 3x3 matrix // .SECTION Description // A vtkTransform2D can be used to describe the full range of linear (also // known as affine) coordinate transformations in two dimensions, // which are internally represented as a 3x3 homogeneous transformation // matrix. When you create a new vtkTransform2D, it is always initialized // to the identity transformation. // // This class performs all of its operations in a right handed // coordinate system with right handed rotations. Some other graphics // libraries use left handed coordinate systems and rotations. #ifndef __vtkTransform2D_h #define __vtkTransform2D_h #include "vtkObject.h" #include "vtkMatrix3x3.h" // Needed for inline methods class vtkPoints2D; class VTK_COMMON_EXPORT vtkTransform2D : public vtkObject { public: static vtkTransform2D *New(); vtkTypeMacro(vtkTransform2D,vtkObject); void PrintSelf(ostream& os, vtkIndent indent); // Description: // Set the transformation to the identity transformation. void Identity(); // Description: // Invert the transformation. void Inverse(); // Description: // Create a translation matrix and concatenate it with the current // transformation. void Translate(double x, double y); void Translate(const double x[2]) { this->Translate(x[0], x[1]); } void Translate(const float x[2]) { this->Translate(x[0], x[1]); } // Description: // Create a rotation matrix and concatenate it with the current // transformation. The angle is in degrees. void Rotate(double angle); // Description: // Create a scale matrix (i.e. set the diagonal elements to x, y) // and concatenate it with the current transformation. void Scale(double x, double y); void Scale(const double s[2]) { this->Scale(s[0], s[1]); } void Scale(const float s[2]) { this->Scale(s[0], s[1]); } // Description: // Set the current matrix directly. void SetMatrix(vtkMatrix3x3 *matrix) { this->SetMatrix(matrix->GetData()); } void SetMatrix(const double elements[9]); // Description: // Get the underlying 3x3 matrix. vtkGetObjectMacro(Matrix, vtkMatrix3x3); void GetMatrix(vtkMatrix3x3 *matrix); // Description: // Return the position from the current transformation matrix as an array // of two floating point numbers. This is simply returning the translation // component of the 3x3 matrix. void GetPosition(double pos[2]); void GetPosition(float pos[2]) { double temp[2]; this->GetPosition(temp); pos[0] = static_cast<float>(temp[0]); pos[1] = static_cast<float>(temp[1]); } // Description: // Return a matrix which is the inverse of the current transformation // matrix. void GetInverse(vtkMatrix3x3 *inverse); // Description: // Return a matrix which is the transpose of the current transformation // matrix. This is equivalent to the inverse if and only if the // transformation is a pure rotation with no translation or scale. void GetTranspose(vtkMatrix3x3 *transpose); // Description: // Override GetMTime to account for input and concatenation. unsigned long GetMTime(); // Description: // Apply the transformation to a series of points, and append the // results to outPts. Where n is the number of points, and the float pointers // are of length 2*n. void TransformPoints(const float *inPts, float *outPts, int n); // Description: // Apply the transformation to a series of points, and append the // results to outPts. Where n is the number of points, and the float pointers // are of length 2*n. void TransformPoints(const double *inPts, double *outPts, int n); // Description: // Apply the transformation to a series of points, and append the // results to outPts. void TransformPoints(vtkPoints2D *inPts, vtkPoints2D *outPts); // Description: // Apply the transformation to a series of points, and append the // results to outPts. Where n is the number of points, and the float pointers // are of length 2*n. void InverseTransformPoints(const float *inPts, float *outPts, int n); // Description: // Apply the transformation to a series of points, and append the // results to outPts. Where n is the number of points, and the float pointers // are of length 2*n. void InverseTransformPoints(const double *inPts, double *outPts, int n); // Description: // Apply the transformation to a series of points, and append the // results to outPts. void InverseTransformPoints(vtkPoints2D *inPts, vtkPoints2D *outPts); // Description: // Use this method only if you wish to compute the transformation in // homogeneous (x,y,w) coordinates, otherwise use TransformPoint(). // This method calls this->GetMatrix()->MultiplyPoint(). void MultiplyPoint(const float in[3], float out[3]) { this->GetMatrix()->MultiplyPoint(in,out);}; void MultiplyPoint(const double in[3], double out[3]) { this->GetMatrix()->MultiplyPoint(in,out);}; protected: vtkTransform2D (); ~vtkTransform2D (); void InternalDeepCopy(vtkTransform2D *t); vtkMatrix3x3 *Matrix; vtkMatrix3x3 *InverseMatrix; private: vtkTransform2D (const vtkTransform2D&); // Not implemented void operator=(const vtkTransform2D&); // Not implemented }; #endif
[ "yhourai@gmail.com" ]
yhourai@gmail.com
961c89292f96499106ade92111b274bec56f95eb
2ee4bac5db61fe01ab5327ed1ba7f98f2dc78eb3
/cmake/install/ios/SIMULATOR64/include/djinni/support-lib/jni/djinni_support.hpp
4db80f9f2160e80b8ccf7df4d2985d662c2d5309
[]
no_license
4brunu/DjinniExperimentalVersionCmakeTest
34c178218f302055ca4ef0361e3260811ca5846c
4aea9d6ce03b520fbe0202d9b885c41492483255
refs/heads/master
2021-06-11T06:28:38.149339
2017-03-10T11:33:05
2017-03-10T11:33:05
62,883,515
0
0
null
null
null
null
UTF-8
C++
false
false
24,480
hpp
// // Copyright 2014 Dropbox, Inc. // // 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. // #pragma once #include <cassert> #include <exception> #include <memory> #include <mutex> #include <string> #include <unordered_map> #include "djinni/support-lib/proxy_cache_interface.hpp" #include "djinni/support-lib/djinni_common.hpp" #include <jni.h> /* * Djinni support library */ // jni.h should really put extern "C" in JNIEXPORT, but it doesn't. :( #define CJNIEXPORT extern "C" JNIEXPORT namespace djinni { /* * Global initialization and shutdown. Call these from JNI_OnLoad and JNI_OnUnload. */ void jniInit(JavaVM * jvm); void jniShutdown(); /* * Get the JNIEnv for the invoking thread. Should only be called on Java-created threads. */ JNIEnv * jniGetThreadEnv(); /* * Global and local reference guard objects. * * A GlobalRef<T> is constructed with a local reference; the constructor upgrades the local * reference to a global reference, and the destructor deletes the local ref. * * A LocalRef<T> should be constructed with a new local reference. The local reference will * be deleted when the LocalRef is deleted. */ struct GlobalRefDeleter { void operator() (jobject globalRef) noexcept; }; template <typename PointerType> class GlobalRef : public std::unique_ptr<typename std::remove_pointer<PointerType>::type, GlobalRefDeleter> { public: GlobalRef() {} GlobalRef(GlobalRef && obj) : std::unique_ptr<typename std::remove_pointer<PointerType>::type, ::djinni::GlobalRefDeleter>( std::move(obj) ) {} GlobalRef(JNIEnv * env, PointerType localRef) : std::unique_ptr<typename std::remove_pointer<PointerType>::type, ::djinni::GlobalRefDeleter>( static_cast<PointerType>(env->NewGlobalRef(localRef)), ::djinni::GlobalRefDeleter{} ) {} }; struct LocalRefDeleter { void operator() (jobject localRef) noexcept; }; template <typename PointerType> class LocalRef : public std::unique_ptr<typename std::remove_pointer<PointerType>::type, LocalRefDeleter> { public: LocalRef() {} LocalRef(JNIEnv * /*env*/, PointerType localRef) : std::unique_ptr<typename std::remove_pointer<PointerType>::type, ::djinni::LocalRefDeleter>( localRef) {} explicit LocalRef(PointerType localRef) : std::unique_ptr<typename std::remove_pointer<PointerType>::type, LocalRefDeleter>( localRef) {} // Allow implicit conversion to PointerType so it can be passed // as argument to JNI functions expecting PointerType. // All functions creating new local references should return LocalRef instead of PointerType operator PointerType() const & { return this->get(); } operator PointerType() && = delete; }; template<class T> const T& get(const T& x) noexcept { return x; } template<class T> typename LocalRef<T>::pointer get(const LocalRef<T>& x) noexcept { return x.get(); } template<class T> const T& release(const T& x) noexcept { return x; } template<class T> typename LocalRef<T>::pointer release(LocalRef<T>& x) noexcept { return x.release(); } template<class T> typename LocalRef<T>::pointer release(LocalRef<T>&& x) noexcept { return x.release(); } /* * Exception to indicate that a Java exception is pending in the JVM. */ class jni_exception : public std::exception { GlobalRef<jthrowable> m_java_exception; public: jni_exception(JNIEnv * env, jthrowable java_exception) : m_java_exception(env, java_exception) { assert(java_exception); } jthrowable java_exception() const { return m_java_exception.get(); } /* * Sets the pending JNI exception using this Java exception. */ void set_as_pending(JNIEnv * env) const noexcept; }; /* * Throw if any Java exception is pending in the JVM. * * If an exception is pending, this function will clear the * pending state, and pass the exception to * jniThrowCppFromJavaException(). */ void jniExceptionCheck(JNIEnv * env); /* * Throws a C++ exception based on the given Java exception. * * java_exception is a local reference to a Java throwable, which * must not be null, and should no longer set as "pending" in the JVM. * This is called to handle errors in other JNI processing, including * by jniExceptionCheck(). * * The default implementation is defined with __attribute__((weak)) so you * can replace it by defining your own version. The default implementation * will throw a jni_exception containing the given jthrowable. */ DJINNI_NORETURN_DEFINITION void jniThrowCppFromJavaException(JNIEnv * env, jthrowable java_exception); /* * Set an AssertionError in env with message message, and then throw via jniExceptionCheck. */ DJINNI_NORETURN_DEFINITION void jniThrowAssertionError(JNIEnv * env, const char * file, int line, const char * check); #define DJINNI_ASSERT_MSG(check, env, message) \ do { \ djinni::jniExceptionCheck(env); \ const bool check__res = bool(check); \ djinni::jniExceptionCheck(env); \ if (!check__res) { \ djinni::jniThrowAssertionError(env, __FILE__, __LINE__, message); \ } \ } while(false) #define DJINNI_ASSERT(check, env) DJINNI_ASSERT_MSG(check, env, #check) /* * Helper for JniClassInitializer. */ template <class Key, class T> class static_registration { public: using registration_map = std::unordered_map<Key, T *>; static registration_map get_all() { const std::lock_guard<std::mutex> lock(get_mutex()); return get_map(); } static_registration(const Key & key, T * obj) : m_key(key) { const std::lock_guard<std::mutex> lock(get_mutex()); get_map().emplace(key, obj); } ~static_registration() { const std::lock_guard<std::mutex> lock(get_mutex()); get_map().erase(m_key); } private: const Key m_key; static registration_map & get_map() { static registration_map m; return m; } static std::mutex & get_mutex() { static std::mutex mtx; return mtx; } }; /* * Helper for JniClass. (This can't be a subclass because it needs to not be templatized.) */ class JniClassInitializer { private: using Registration = static_registration<void *, const JniClassInitializer>; const std::function<void()> init; const Registration reg; JniClassInitializer(const std::function<void()> & init) : init(init), reg(this, this) {} template <class C> friend class JniClass; friend void jniInit(JavaVM *); }; /* * Each instantiation of this template produces a singleton object of type C which * will be initialized by djinni::jniInit(). For example: * * struct JavaFooInfo { * jmethodID foo; * JavaFooInfo() // initialize clazz and foo from jniGetThreadEnv * } * * To use this in a JNI function or callback, invoke: * * CallVoidMethod(object, JniClass<JavaFooInfo>::get().foo, ...); * * This uses C++'s template instantiation behavior to guarantee that any T for which * JniClass<T>::get() is *used* anywhere in the program will be *initialized* by init_all(). * Therefore, it's always safe to compile in wrappers for all known Java types - the library * will only depend on the presence of those actually needed. */ template <class C> class JniClass { public: static const C & get() { (void)s_initializer; // ensure that initializer is actually instantiated assert(s_singleton); return *s_singleton; } private: static const JniClassInitializer s_initializer; static std::unique_ptr<C> s_singleton; static void allocate() { // We can't use make_unique here, because C will have a private constructor and // list JniClass as a friend; so we have to allocate it by hand. s_singleton = std::unique_ptr<C>(new C()); } }; template <class C> const JniClassInitializer JniClass<C>::s_initializer ( allocate ); template <class C> std::unique_ptr<C> JniClass<C>::s_singleton; /* * Exception-checking helpers. These will throw if an exception is pending. */ GlobalRef<jclass> jniFindClass(const char * name); jmethodID jniGetStaticMethodID(jclass clazz, const char * name, const char * sig); jmethodID jniGetMethodID(jclass clazz, const char * name, const char * sig); jfieldID jniGetFieldID(jclass clazz, const char * name, const char * sig); /* * Helper for maintaining shared_ptrs to wrapped Java objects. * * This is used for automatically wrapping a Java object that exposes some interface * with a C++ object that calls back into the JVM, such as a listener. Calling * get_java_proxy<T>(obj) the first time will construct a T and return a shared_ptr to it, and * also save a weak_ptr to the new object internally. The constructed T contains a strong * GlobalRef to jobj. As long as something in C++ maintains a strong reference to the wrapper, * future calls to get(jobj) will return the *same* wrapper object. * * Java | C++ * | ________________________ ___________ * _____________ | | | | | * | | | | JniImplFooListener | <=========== | Foo | * | FooListener | <============ | : public FooListener, | shared_ptr |___________| * |_____________| GlobalRef | JavaProxyCacheEntry | * | |________________________| * | ^ ______________________ * | \ | | * | - - - - - - | JavaProxyCache | * | weak_ptr |______________________| * * As long as the C++ FooListener has references, the Java FooListener is kept alive. * * We use a custom unordered_map with Java objects (jobject) as keys, and JNI object * identity and hashing functions. This means that as long as a key is in the map, * we must have some other GlobalRef keeping it alive. To ensure safety, the Entry * destructor removes *itself* from the map - destruction order guarantees that this * will happen before the contained global reference becomes invalid (by destruction of * the GlobalRef). */ struct JavaIdentityHash; struct JavaIdentityEquals; struct JavaProxyCacheTraits { using UnowningImplPointer = jobject; using OwningImplPointer = jobject; using OwningProxyPointer = std::shared_ptr<void>; using WeakProxyPointer = std::weak_ptr<void>; using UnowningImplPointerHash = JavaIdentityHash; using UnowningImplPointerEqual = JavaIdentityEquals; }; extern template class ProxyCache<JavaProxyCacheTraits>; using JavaProxyCache = ProxyCache<JavaProxyCacheTraits>; template <typename T> using JavaProxyHandle = JavaProxyCache::Handle<GlobalRef<jobject>, T>; /* * Cache for CppProxy objects. This is the inverse of the JavaProxyCache mechanism above, * ensuring that each time we pass an interface from Java to C++, we get the *same* CppProxy * object on the Java side: * * Java | C++ * | * ______________ | ________________ ___________ * | | | | | | | * | Foo.CppProxy | ------------> | CppProxyHandle | =============> | Foo | * |______________| (jlong) | <Foo> | (shared_ptr) |___________| * ^ | |________________| * \ | * _________ | __________________ * | | | | | * | WeakRef | <------------------------- | jniCppProxyCache | * |_________| (GlobalRef) |__________________| * | * * We don't use JNI WeakGlobalRef objects, because they last longer than is safe - a * WeakGlobalRef can still be upgraded to a strong reference even during finalization, which * leads to use-after-free. Java WeakRefs provide the right lifetime guarantee. */ class JavaWeakRef; struct JniCppProxyCacheTraits { using UnowningImplPointer = void *; using OwningImplPointer = std::shared_ptr<void>; using OwningProxyPointer = jobject; using WeakProxyPointer = JavaWeakRef; using UnowningImplPointerHash = std::hash<void *>; using UnowningImplPointerEqual = std::equal_to<void *>; }; extern template class ProxyCache<JniCppProxyCacheTraits>; using JniCppProxyCache = ProxyCache<JniCppProxyCacheTraits>; template <class T> using CppProxyHandle = JniCppProxyCache::Handle<std::shared_ptr<T>>; template <class T> static const std::shared_ptr<T> & objectFromHandleAddress(jlong handle) { assert(handle); assert(handle > 4096); const auto & ret = reinterpret_cast<const CppProxyHandle<T> *>(handle)->get(); assert(ret); return ret; } /* * Information needed to use a CppProxy class. * * In an ideal world, this object would be properly always-valid RAII, and we'd use an * optional<CppProxyClassInfo> where needed. Unfortunately we don't want to depend on optional * here, so this object has an invalid state and default constructor. */ struct CppProxyClassInfo { const GlobalRef<jclass> clazz; const jmethodID constructor; const jfieldID idField; CppProxyClassInfo(const char * className); CppProxyClassInfo(); ~CppProxyClassInfo(); // Validity check explicit operator bool() const { return bool(clazz); } }; /* * Base class for Java <-> C++ interface adapters. * * I is the C++ base class (interface) being adapted; Self is the interface adapter class * derived from JniInterface (using CRTP). For example: * * class NativeToken final : djinni::JniInterface<Token, NativeToken> { ... } */ template <class I, class Self> class JniInterface { public: /* * Given a C++ object, find or create a Java version. The cases here are: * 1. Null * 2. The provided C++ object is actually a JavaProxy (C++-side proxy for Java impl) * 3. The provided C++ object has an existing CppProxy (Java-side proxy for C++ impl) * 4. The provided C++ object needs a new CppProxy allocated */ jobject _toJava(JNIEnv* jniEnv, const std::shared_ptr<I> & c) const { // Case 1 - null if (!c) { return nullptr; } // Case 2 - already a JavaProxy. Only possible if Self::JavaProxy exists. if (jobject impl = _unwrapJavaProxy<Self>(&c)) { return jniEnv->NewLocalRef(impl); } // Cases 3 and 4. assert(m_cppProxyClass); return JniCppProxyCache::get(typeid(c), c, &newCppProxy); } /* * Given a Java object, find or create a C++ version. The cases here are: * 1. Null * 2. The provided Java object is actually a CppProxy (Java-side proxy for a C++ impl) * 3. The provided Java object has an existing JavaProxy (C++-side proxy for a Java impl) * 4. The provided Java object needs a new JavaProxy allocated */ std::shared_ptr<I> _fromJava(JNIEnv* jniEnv, jobject j) const { // Case 1 - null if (!j) { return nullptr; } // Case 2 - already a Java proxy; we just need to pull the C++ impl out. (This case // is only possible if we were constructed with a cppProxyClassName parameter.) if (m_cppProxyClass && jniEnv->IsSameObject(jniEnv->GetObjectClass(j), m_cppProxyClass.clazz.get())) { jlong handle = jniEnv->GetLongField(j, m_cppProxyClass.idField); jniExceptionCheck(jniEnv); return objectFromHandleAddress<I>(handle); } // Cases 3 and 4 - see _getJavaProxy helper below. JavaProxyCache is responsible for // distinguishing between the two cases. Only possible if Self::JavaProxy exists. return _getJavaProxy<Self>(j); } // Constructor for interfaces for which a Java-side CppProxy class exists JniInterface(const char * cppProxyClassName) : m_cppProxyClass(cppProxyClassName) {} // Constructor for interfaces without a Java proxy class JniInterface() : m_cppProxyClass{} {} private: /* * Helpers for _toJava above. The possibility that an object is already a C++-side proxy * only exists if the code generator emitted one (if Self::JavaProxy exists). */ template <typename S, typename JavaProxy = typename S::JavaProxy> jobject _unwrapJavaProxy(const std::shared_ptr<I> * c) const { if (auto proxy = dynamic_cast<JavaProxy *>(c->get())) { return proxy->JavaProxyHandle<JavaProxy>::get().get(); } else { return nullptr; } } template <typename S> jobject _unwrapJavaProxy(...) const { return nullptr; } /* * Helper for _toJava above: given a C++ object, allocate a CppProxy on the Java side for * it. This is actually called by jniCppProxyCacheGet, which holds a lock on the global * C++-to-Java proxy map object. */ static std::pair<jobject, void*> newCppProxy(const std::shared_ptr<void> & cppObj) { const auto & data = JniClass<Self>::get(); const auto & jniEnv = jniGetThreadEnv(); std::unique_ptr<CppProxyHandle<I>> to_encapsulate( new CppProxyHandle<I>(std::static_pointer_cast<I>(cppObj))); jlong handle = static_cast<jlong>(reinterpret_cast<uintptr_t>(to_encapsulate.get())); jobject cppProxy = jniEnv->NewObject(data.m_cppProxyClass.clazz.get(), data.m_cppProxyClass.constructor, handle); jniExceptionCheck(jniEnv); to_encapsulate.release(); return { cppProxy, cppObj.get() }; } /* * Helpers for _fromJava above. We can only produce a C++-side proxy if the code generator * emitted one (if Self::JavaProxy exists). */ template <typename S, typename JavaProxy = typename S::JavaProxy> std::shared_ptr<I> _getJavaProxy(jobject j) const { static_assert(std::is_base_of<JavaProxyHandle<JavaProxy>, JavaProxy>::value, "JavaProxy must derive from JavaProxyCacheEntry"); return std::static_pointer_cast<JavaProxy>(JavaProxyCache::get( typeid(JavaProxy), j, [] (const jobject & obj) -> std::pair<std::shared_ptr<void>, jobject> { auto ret = std::make_shared<JavaProxy>(obj); return { ret, ret->JavaProxyHandle<JavaProxy>::get().get() }; } )); } template <typename S> std::shared_ptr<I> _getJavaProxy(...) const { assert(false); return nullptr; } const CppProxyClassInfo m_cppProxyClass; }; /* * Guard object which automatically begins and ends a JNI local frame when * it is created and destroyed, using PushLocalFrame and PopLocalFrame. * * Local frame creation can fail. The throwOnError parameter specifies how * errors are reported: * - true (default): throws on failure * - false: queues a JNI exception on failure; the user must call checkSuccess() * * The JNIEnv given at construction is expected to still be valid at * destruction, so this class isn't suitable for use across threads. * It is intended for use on the stack. * * All JNI local references created within the defined scope will be * released at the end of the scope. This class doesn't support * the jobject return value supported by PopLocalFrame(), because * the destructor cannot return the new reference value for the parent * frame. */ class JniLocalScope { public: /* * Create the guard object and begin the local frame. * * @param p_env the JNIEnv for the current thread. * @param capacity the initial number of local references to * allocate. */ JniLocalScope(JNIEnv* p_env, jint capacity, bool throwOnError = true); bool checkSuccess() const { return m_success; } ~JniLocalScope(); private: JniLocalScope(const JniLocalScope& other); JniLocalScope& operator=(const JniLocalScope& other); static bool _pushLocalFrame(JNIEnv* const env, jint capacity); static void _popLocalFrame(JNIEnv* const env, jobject returnRef); JNIEnv* const m_env; const bool m_success; }; jstring jniStringFromUTF8(JNIEnv * env, const std::string & str); std::string jniUTF8FromString(JNIEnv * env, const jstring jstr); class JniEnum { public: /* * Given a Java object, find its numeric value. This returns a jint, which the caller can * static_cast<> into the necessary C++ enum type. */ jint ordinal(JNIEnv * env, jobject obj) const; /* * Create a Java value of the wrapped class with the given value. */ LocalRef<jobject> create(JNIEnv * env, jint value) const; protected: JniEnum(const std::string & name); private: const GlobalRef<jclass> m_clazz; const jmethodID m_staticmethValues; const jmethodID m_methOrdinal; }; #define DJINNI_FUNCTION_PROLOGUE0(env_) #define DJINNI_FUNCTION_PROLOGUE1(env_, arg1_) /* * Helper for JNI_TRANSLATE_EXCEPTIONS_RETURN. * * Must be called in a catch block. Responsible for setting the pending * exception in JNI based on the current C++ exception. * * The default implementation is defined with __attribute__((weak)) so you * can replace it by defining your own version. The default implementation * will call jniDefaultSetPendingFromCurrent(), which will propagate a * jni_exception directly into Java, or throw a RuntimeException for any * other std::exception. */ void jniSetPendingFromCurrent(JNIEnv * env, const char * ctx) noexcept; /* * Helper for JNI_TRANSLATE_EXCEPTIONS_RETURN. * * Must be called in a catch block. Responsible for setting the pending * exception in JNI based on the current C++ exception. * * This will call jniSetPendingFrom(env, jni_exception) if the current exception * is a jni_exception, or otherwise will set a RuntimeException from any * other std::exception. Any non-std::exception will result in a call * to terminate(). * * This is called by the default implementation of jniSetPendingFromCurrent. */ void jniDefaultSetPendingFromCurrent(JNIEnv * env, const char * ctx) noexcept; /* Catch C++ exceptions and translate them to Java exceptions. * * All functions called by Java must be fully wrapped by an outer try...catch block like so: * * try { * ... * } JNI_TRANSLATE_EXCEPTIONS_RETURN(env, 0) * ... or JNI_TRANSLATE_EXCEPTIONS_RETURN(env, ) for functions returning void * * The second parameter is a default return value to be used if an exception is caught and * converted. (For JNI outer-layer calls, this result will always be ignored by JNI, so * it can safely be 0 for any function with a non-void return value.) */ #define JNI_TRANSLATE_EXCEPTIONS_RETURN(env, ret) \ catch (const std::exception &) { \ ::djinni::jniSetPendingFromCurrent(env, __func__); \ return ret; \ } /* Catch jni_exception and translate it back to a Java exception, without catching * any other C++ exceptions. Can be used to wrap code which might cause JNI * exceptions like so: * * try { * ... * } JNI_TRANSLATE_JAVA_EXCEPTIONS_RETURN(env, 0) * ... or JNI_TRANSLATE_JAVA_EXCEPTIONS_RETURN(env, ) for functions returning void * * The second parameter is a default return value to be used if an exception is caught and * converted. (For JNI outer-layer calls, this result will always be ignored by JNI, so * it can safely be 0 for any function with a non-void return value.) */ #define JNI_TRANSLATE_JNI_EXCEPTIONS_RETURN(env, ret) \ catch (const ::djinni::jni_exception & e) { \ e.set_as_pending(env); \ return ret; \ } } // namespace djinni
[ "4brunu@gmail.com" ]
4brunu@gmail.com
1271a1080ae82ded1d2dee5ea31e2677e75f5911
a8f245198ca5162ccc970d8945b7069fe05f9f4f
/midipal/apps/scale_processor.h
aba814125a802176802013107ac070d4641962c1
[]
no_license
pichenettes/midipal
0ef4744cb3290b4f7d309d2d382268faecfa1f43
da82ab2eab942455b808eb8067947e321b628e90
refs/heads/master
2022-05-20T17:37:14.506307
2022-05-13T15:44:21
2022-05-13T15:44:21
1,829,708
242
64
null
2016-05-02T23:04:18
2011-06-01T02:26:28
C++
UTF-8
C++
false
false
1,988
h
// Copyright 2011 Emilie Gillet. // // Author: Emilie Gillet (emilie.o.gillet@gmail.com) // // 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 3 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/>. // // ----------------------------------------------------------------------------- // // Scale processor app. #ifndef MIDIPAL_APPS_SCALE_PROCESSOR_H_ #define MIDIPAL_APPS_SCALE_PROCESSOR_H_ #include "midipal/app.h" namespace midipal { namespace apps { class ScaleProcessor { public: ScaleProcessor() { } static void OnInit(); static void OnRawMidiData( uint8_t status, uint8_t* data, uint8_t data_size, uint8_t accepted_channel); static void OnNoteOn(uint8_t channel, uint8_t note, uint8_t velocity); static void OnNoteOff(uint8_t channel, uint8_t note, uint8_t velocity); static void OnNoteAftertouch(uint8_t channel, uint8_t note, uint8_t velocity); static const prog_AppInfo app_info_; protected: static void ProcessNoteMessage( uint8_t message, uint8_t note, uint8_t velocity); static uint8_t channel_; static uint8_t root_; static uint8_t scale_; static uint8_t original_; static uint8_t voice_1_; static uint8_t voice_2_; static uint8_t lowest_note_; static uint8_t previous_note_; static uint8_t voice_2_note_; static uint8_t flip_; DISALLOW_COPY_AND_ASSIGN(ScaleProcessor); }; } } // namespace midipal::apps #endif // MIDIPAL_APPS_SCALE_PROCESSOR_H_
[ "ol.gillet@gmail.com" ]
ol.gillet@gmail.com
45b58e09bdb2b099183d2dea4c14a9670d0bd697
2aedbd17cd5071bea56659f67a9644f7d8df9546
/etk/renderer/generic/ui_action.h
f7eaa774df8bba4c1dc4cde248978f2488e99957
[]
no_license
qschwagle/Eta-ToolKit
3825cdaf28b995d6ecbe11497703e0bd759f5f3f
adaf3c898fd8a8b80cfdfc372dcedcf0fa2bce47
refs/heads/master
2023-04-18T20:56:48.962374
2021-04-23T17:37:29
2021-04-23T17:37:29
330,802,984
0
0
null
2021-04-12T17:46:09
2021-01-18T22:35:25
C++
UTF-8
C++
false
false
134
h
#pragma once namespace etk { namespace renderer { class UIAction { public: virtual bool Run(void) { return false; } private: }; } }
[ "qschwagle@gmail.com" ]
qschwagle@gmail.com
151f123071db01246eb3c83609d72c7af6a0b8d5
04e251aec4e9c5b05a56f79342fca9e1ccd8421e
/conio.cpp
4fc86a1aad4ad81d2d1b4f35cea2f661b96aef29
[]
no_license
vaibhav1465/practice
c9005cdf04d197596251f68547e2dc4c0cde2096
7fe1756a2f78ec3773e7a4622526688aec8dca61
refs/heads/main
2023-08-15T12:57:46.067996
2021-09-27T18:13:09
2021-09-27T18:13:09
311,442,282
0
0
null
null
null
null
UTF-8
C++
false
false
4,931
cpp
#include<stdio.h> #include<stdlib.h> #include<conio.h> #include<dos.h> int main() { printf("sbsbjbjkbf,bj\n"); clrscr(); getch(); printf("bjbfhfe f"); } room_c=room[roomt]; meal_c=meal[mealt]; void VICTORIA() { printf("\n\t\t\t\t*****\n\t\t\t\t Victoria Hotel\n\t\t\t\t\t C A N A D A\n\t\t\t\t*****\t\t"); getch(); printf("\n\n\t*\tModest rooms, suites & apartments in a casual hotel, offering a pool, a spa & 3 restaurants."); printf("\n\t*\t3 restaurants and 3 cafes.\n\t*\tFree shuttle to the beach\n\t*\tBasketball and tennis courts\n\t*\tFitness centre\t\t\t"); getch(); printf("\n\n\t\t\t\tT Y P E O F R O O M S\n\t\t\t\t----------------------------"); printf("\n\t\t1\tBusiness Suite\tINR 14000/-per night"); printf("\n\t\t2\tExecutive Suite\tINR 175000/-per night"); printf("\n\t\t3\tLuxury Suite\tINR 11000/-per night\t\t"); getch(); printf("\n\n\t\t[PRICES WILL VARY WITH SEASONS]"); printf("\n\n\t* Free wifi\t* 24X7 Room Service\t* GST EXTRA\t* Extra Bedding Available"); getch(); printf("\n\n\t\tSELECT YOUR ROOM TYPE\t"); int room[4]={0,14000,17500,11000},roomt; scanf("%d",&roomt); printf("\n\t*\tENTER NO OF ROOMS REQUIRED\t"); scanf("%d",&nrooms); printf("\n\n\t*\tANY EXTRA BEDDING\t"); scanf("%d",&extrab); printf("\n\n\t\t->SELECT YOUR MEAL PLAN\t"); int meal[5]={0,0,2000,7000,5500},mealt; printf("\n\t1-Europeon plan INR 0/-"); printf("\n\n\t2-Continental plan INR 2000/-"); printf("\n\n\t3-American plan INR 7000/-"); printf("\n\n\t4-Modified American plan INR 5500/-\t\t"); scanf("%d",&mealt); } int main() { VICTORIA(); } [8:47 PM, 11/13/2019] Aniket (analytical Class): #include<stdio.h> #include<conio.h> int nrooms,extrab; void THE_OAKS_HOTEL() { printf("\n\t\t\t\t*****\n\t\t\t\t The Oaks Hotel\n\t\t\t\t\t C A N A D A\n\t\t\t\t*****\t\t"); getch(); printf("\n\n\t*\tModest rooms, suites & apartments in a casual hotel, offering a pool, a spa & 3 restaurants."); printf("\n\t*\t3 restaurants and 3 cafes.\n\t*\tFree shuttle to the beach\n\t*\tBasketball and tennis courts\n\t*\tFitness centre\t\t\t"); getch(); printf("\n\n\t\t\t\tT Y P E O F R O O M S\n\t\t\t\t----------------------------"); printf("\n\t\t1\tBusiness Suite\tINR 14000/-per night"); printf("\n\t\t2\tExecutive Suite\tINR 175000/-per night"); printf("\n\t\t3\tLuxury Suite\tINR 11000/-per night\t\t"); getch(); printf("\n\n\t\t[PRICES WILL VARY WITH SEASONS]"); printf("\n\n\t* Free wifi\t* 24X7 Room Service\t* GST EXTRA\t* Extra Bedding Available"); getch(); printf("\n\n\t\tSELECT YOUR ROOM TYPE\t"); int room[4]={0,14000,17500,11000},roomt; scanf("%d",&roomt); printf("\n\t*\tENTER NO OF ROOMS REQUIRED\t"); scanf("%d",&nrooms); printf("\n\n\t*\tANY EXTRA BEDDING\t"); scanf("%d",&extrab); printf("\n\n\t\t->SELECT YOUR MEAL PLAN\t"); int meal[5]={0,0,2000,7000,5500},mealt; printf("\n\t1-Europeon plan INR 0/-"); printf("\n\n\t2-Continental plan INR 2000/-"); printf("\n\n\t3-American plan INR 7000/-"); printf("\n\n\t4-Modified American plan INR 5500/-\t\t"); scanf("%d",&mealt); } int main() { THE_OAKS_HOTEL(); } [8:50 PM, 11/13/2019] Aniket (analytical Class): #include<stdio.h> #include<conio.h> int nrooms,extrab; void HOMEWOOD_SUITES() { printf("\n\t\t\t\t*****\n\t\t\t\t Homewood Suites \n\t\t\t\t\t C A N A D A\n\t\t\t\t*****\t\t"); getch(); printf("\n\n\t*\tModest rooms, suites & apartments in a casual hotel, offering a pool, a spa & 3 restaurants."); printf("\n\t*\t3 restaurants and 3 cafes.\n\t*\tFree shuttle to the beach\n\t*\tBasketball and tennis courts\n\t*\tFitness centre\t\t\t"); getch(); printf("\n\n\t\t\t\tT Y P E O F R O O M S\n\t\t\t\t----------------------------"); printf("\n\t\t1\tBusiness Suite\tINR 14000/-per night"); printf("\n\t\t2\tExecutive Suite\tINR 175000/-per night"); printf("\n\t\t3\tLuxury Suite\tINR 11000/-per night\t\t"); getch(); printf("\n\n\t\t[PRICES WILL VARY WITH SEASONS]"); printf("\n\n\t* Free wifi\t* 24X7 Room Service\t* GST EXTRA\t* Extra Bedding Available"); getch(); printf("\n\n\t\tSELECT YOUR ROOM TYPE\t"); int room[4]={0,14000,17500,11000},roomt; scanf("%d",&roomt); printf("\n\t*\tENTER NO OF ROOMS REQUIRED\t"); scanf("%d",&nrooms); printf("\n\n\t*\tANY EXTRA BEDDING\t"); scanf("%d",&extrab); printf("\n\n\t\t->SELECT YOUR MEAL PLAN\t"); int meal[5]={0,0,2000,7000,5500},mealt; printf("\n\t1-Europeon plan INR 0/-"); printf("\n\n\t2-Continental plan INR 2000/-"); printf("\n\n\t3-American plan INR 7000/-"); printf("\n\n\t4-Modified American plan INR 5500/-\t\t"); scanf("%d",&mealt); } int main() { HOMEWOOD_SUITES(); }
[ "noreply@github.com" ]
vaibhav1465.noreply@github.com
e0a54aef2334371fb3f00143b2c60c08954fac32
875e79dd215328697da2876e5803a0c481b0c6e1
/SyGameBase/ClientBase/uibase/UIChoiceList.h
0e84aabffbe8c8dc8a8cfbbbc97efae2655b56c3
[]
no_license
jijinlong/SyGame
304fd85653b147838a77d795e80bc54e89195071
b6bf9d6f7a0d4cd8d5fbe82e84b79683a6c71ae5
refs/heads/master
2021-01-22T05:15:44.142811
2013-10-25T05:40:10
2013-10-25T05:40:10
11,146,791
6
3
null
null
null
null
GB18030
C++
false
false
1,198
h
#pragma once #include "cocos2d.h" #include "UIList.h" NS_CC_BEGIN /** * 实现下拉列表框 */ class UIChoiceList:public UIList{ public: static UIChoiceList* create(const CCRect & viewRect,int eachWidth,int eachHeight); /** * 可以使每个物体动态的展示出来 */ void showEachDynamic(); void showEach(); /** * 处理条目选中 **/ void doItemDown(UIItem *item); /** * 检查是否在区域里 */ bool touchDown(float x,float y); /** * 更新位置 */ bool touchMove(float x,float y); /** * 停止拖动 */ bool touchEnd(float x,float y); /** * 设置位置 */ virtual void setPosition(float x,float y); /** * 设置大小 */ virtual void setSize(float w,float h) ; virtual void setEditable(bool tag); int getNowChoiceId(){if (_nowChoiceItem) return _nowChoiceItem->bagId; return -1;} UIItem *getNowChoiceItem(){return _nowChoiceItem;} UIItem * getItemByBagId(int bagId); void setChoiceId(int id); private: UIItem * _nowChoiceItem; // 当前选中的条目 bool _touchIn; bool _editable; bool showTag; UIChoiceList() { showTag = true; _touchIn = false; _editable = false; _nowChoiceItem = NULL; } }; NS_CC_END
[ "jjl_2009_hi@163.com" ]
jjl_2009_hi@163.com
c5f08307f6076564654bfce9c27af7c0212106d0
1fe8d4133981e53e88abf633046060b56fae883e
/venv/lib/python3.8/site-packages/tensorflow/include/external/mkl_dnn/src/cpu/cpu_reorder_pd.hpp
49d3ce81d0d16983248b61875e498cc83aebbe1c
[]
no_license
Akira331/flask-cifar10
6c49db8485038731ce67d23f0972b9574746c7a7
283e7a2867c77d4b6aba7aea9013bf241d35d76c
refs/heads/master
2023-06-14T16:35:06.384755
2021-07-05T14:09:15
2021-07-05T14:09:15
382,864,970
0
0
null
null
null
null
UTF-8
C++
false
false
129
hpp
version https://git-lfs.github.com/spec/v1 oid sha256:3c5abd1a8e6a1f52bd674542ee00ae1ac2eba8901e41b0756965bd76c17cde2a size 2124
[ "business030301@gmail.com" ]
business030301@gmail.com
dacc18a212bcd07130f64fab3b17152e3626d4a3
47b3764ee19b3d45137cbf9c2dd7166b7201126f
/You are not welcome here/You are not welcome here_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/Generics33.cpp
912869c8de47554a189ec9741b4f6a71fd3b4c41
[]
no_license
Yvhenii/You-are-not-welcom-here-fin-
2f6406883c1285c220a57ae9038ae3f50d4b9514
4eae534ffd0d63d23f893503613d4ac7657a453b
refs/heads/main
2023-08-13T18:20:19.715135
2021-09-13T11:11:18
2021-09-13T11:11:18
405,936,269
0
0
null
null
null
null
UTF-8
C++
false
false
1,796,460
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" template <typename R, 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 VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1> struct GenericVirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct GenericVirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2> struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R> struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1> struct GenericInterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct GenericInterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; // System.Action struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579; // System.Action`1<System.Object> struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0; // System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>> struct Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180; // System.AggregateException struct AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.Generic.Comparer`1<System.Int32> struct Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2; // System.Collections.Generic.Comparer`1<System.Object> struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7; // System.Collections.Generic.Comparer`1<System.UInt32> struct Comparer_1_t48A8EFAD34AFDD91B93724203AAF84B00763020E; // System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> struct Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F; // System.Collections.Generic.EqualityComparer`1<System.Int32> struct EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33; // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA; // System.Collections.Generic.EqualityComparer`1<UnityEngine.Polybrush.RndVec3> struct EqualityComparer_1_t2582F078E4ACE6DD1049AE28AE13402799B77055; // System.Collections.Generic.IComparer`1<System.Int32> struct IComparer_1_t5D09F75F75FD32CDCD24671DFD58441DFA9F5C14; // System.Collections.Generic.IComparer`1<System.Object> struct IComparer_1_tFF77EB203CF12E843446A71A6581145AB929D681; // System.Collections.Generic.IComparer`1<System.UInt32> struct IComparer_1_tEB35069A836D01D7A23FAC5AFD86DFE89E95706C; // System.Collections.Generic.IEnumerable`1<System.Object> struct IEnumerable_1_t2F75FCBEC68AFE08982DA43985F9D04056E2BE73; // System.Collections.Generic.IEnumerator`1<System.Int32> struct IEnumerator_1_t7348E69CA57FC75395C9BBB4A9FBB33953F29F27; // System.Collections.Generic.IEnumerator`1<System.Linq.IGrouping`2<System.Object,System.Object>> struct IEnumerator_1_tCC67622484E1E26F01DFC2E8439C235122B30B6F; // System.Collections.Generic.IEnumerator`1<System.Linq.IGrouping`2<UnityEngine.Polybrush.RndVec3,System.Int32>> struct IEnumerator_1_tE9F010540E7CD1608C6753E2C28CCB3C6B94CAC6; // System.Collections.Generic.IEnumerator`1<System.Object> struct IEnumerator_1_tDDB69E91697CCB64C7993B651487CEEC287DB7E8; // System.Collections.Generic.IEqualityComparer`1<System.Int32> struct IEqualityComparer_1_t7B82AA0F8B96BAAA21E36DDF7A1FE4348BDDBE95; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_tAE7A8756D8CF0882DD348DC328FB36FEE0FB7DD0; // System.Collections.Generic.IEqualityComparer`1<UnityEngine.Polybrush.RndVec3> struct IEqualityComparer_1_tA768D981398D1E795DC36EED8E7F133656C23C74; // System.Collections.Generic.List`1<System.Threading.Tasks.Task> struct List_1_tC62C1E1B0AD84992F0A374A5A4679609955E117E; // System.Collections.IDictionary struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7; // System.Collections.IEnumerator struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> struct ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; // System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs> struct EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC; // System.Exception struct Exception_t; // 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.Object,System.Boolean> struct Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC; // System.Func`2<System.Object,System.Int32> struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6; // System.Func`2<System.Object,System.Object> struct Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4; // System.Func`2<System.Object,System.UInt32> struct Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A; // 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.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.Task>> struct Func_2_t9183BE7C6FB5EAED091785FC3E1D3D41DB3497F7; // 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.IAsyncResult struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1; // System.Lazy`1<System.Object> struct Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7; // System.Linq.EnumerableSorter`1<System.Object> struct EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD; // System.Linq.IGrouping`2<System.Object,System.Object> struct IGrouping_2_tC0613B6F7B0F657F21DA36943B7DBCC2CB1C527C; // System.Linq.IGrouping`2<UnityEngine.Polybrush.RndVec3,System.Int32> struct IGrouping_2_tA21C8A3EB25F2FE0860D9B83F3F79D339D231908; // System.Linq.Lookup`2/Grouping<System.Object,System.Object> struct Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63; // System.Linq.Lookup`2/Grouping<System.Object,System.Object>[] struct GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671; // System.Linq.Lookup`2/Grouping<UnityEngine.Polybrush.RndVec3,System.Int32> struct Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC; // System.Linq.Lookup`2/Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>[] struct GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B; // System.Linq.Lookup`2<System.Object,System.Object> struct Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4; // System.Linq.Lookup`2<UnityEngine.Polybrush.RndVec3,System.Int32> struct Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D; // System.Linq.OrderedEnumerable`1/<GetEnumerator>d__1<System.Object> struct U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF; // System.Linq.OrderedEnumerable`1<System.Object> struct OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D; // System.Linq.OrderedEnumerable`2<System.Object,System.Int32> struct OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A; // System.Linq.OrderedEnumerable`2<System.Object,System.Object> struct OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B; // System.Linq.OrderedEnumerable`2<System.Object,System.UInt32> struct OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5; // System.Linq.Set`1/Slot<System.Int32>[] struct SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691; // System.Linq.Set`1/Slot<System.Object>[] struct SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A; // System.Linq.Set`1<System.Int32> struct Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382; // System.Linq.Set`1<System.Object> struct Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; // System.OperationCanceledException struct OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90; // System.Predicate`1<Cinemachine.CameraState/CustomBlendable> struct Predicate_1_t9521EB82ACE41AD71C0C8D6E3E7CB57CF8A90762; // System.Predicate`1<Cinemachine.CinemachineClearShot/Pair> struct Predicate_1_t4859C57AE169CFEAD7B0DDB3D8B85CEC17A01023; // System.Predicate`1<Cinemachine.CinemachineStateDrivenCamera/HashPair> struct Predicate_1_t3E119AAC3C020B4C3584C6CC40DDA35273C4AFD8; // System.Predicate`1<Cinemachine.TargetPositionCache/CacheCurve/Item> struct Predicate_1_tE679129F26B83506213AABAFDDB02E4E54394B60; // System.Predicate`1<Cinemachine.TargetPositionCache/CacheEntry/RecordingItem> struct Predicate_1_t7220680686D0F96C39750996F326CA0A6A23C7AF; // System.Predicate`1<System.Byte> struct Predicate_1_tFDB7E349837C854DED22559777D0F1D11C83E875; // System.Predicate`1<System.Char> struct Predicate_1_t72B0E826A53687129ED01DCB215AB69C8EF296DA; // System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct Predicate_1_t0CED81C3FC8E7102A1E55F8156E33915BDC8EB2C; // System.Predicate`1<System.Diagnostics.Tracing.EventProvider/SessionInfo> struct Predicate_1_t5DF4D75C44806F4C5EE19F79D23B7DD693B92D83; // System.Predicate`1<System.Int32> struct Predicate_1_t2E795623C97B4C5B38406E9201D0720C5C15895F; // System.Predicate`1<System.Int32Enum> struct Predicate_1_t04D23B98D3C2827AAD9018CEB5C22E4F69AE649A; // System.Predicate`1<System.Int64> struct Predicate_1_t480A858115E18AE09004B70F8D424B430CC2BB81; // System.Predicate`1<System.Object> struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979; // System.Predicate`1<System.Single> struct Predicate_1_t841FDBD98DB0D653BF54D71E3481608E51DD4F38; // System.Predicate`1<System.Threading.Tasks.Task> struct Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335; // System.Predicate`1<System.UInt32> struct Predicate_1_t3583426FF9E6498ABD95E96A9738B5B9E127CD81; // System.Predicate`1<System.UInt64> struct Predicate_1_t3E5A8BAE2A782FF0F14E0629B643CCEF02A7BE3F; // System.Predicate`1<System.ValueTuple`2<System.Int32,System.Object>> struct Predicate_1_t5668238D18203A0B9A2146A71BE08456395DCAFF; // System.Predicate`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>> struct Predicate_1_t43A0F43C51DC8DD6D24A9511A4624763BE778DE3; // System.Predicate`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame> struct Predicate_1_tB49E63EDA80D01F4A107737EB2622C74B64D1C46; // System.Predicate`1<UnityEngine.AnimatorClipInfo> struct Predicate_1_t2654C282BB27C89BF1BB5D7FCC09DD6DD09C4D22; // System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock> struct Predicate_1_t6021C753A4C8761482AE2125268A1F20CC5302F9; // System.Predicate`1<UnityEngine.Color32> struct Predicate_1_tA8093CB95EF5DA7B543ABA099527806A0FE5BD4E; // System.Predicate`1<UnityEngine.Color> struct Predicate_1_t61DDCCB390DE4D540A71E6908516D815FBC3F07E; // System.Predicate`1<UnityEngine.EventSystems.RaycastResult> struct Predicate_1_t3BE7E6936879AAE7D83581BB6DBEB5AB7966797B; // System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource> struct Predicate_1_tE3D5694609E51215B4376F06DA6D8B0915659522; // System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource> struct Predicate_1_t8ED3DE1F08418BEC8373C50FC9DB31983FC263E4; // System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex> struct Predicate_1_t374DC9880DE0B98D67A6BA3B77648958F4D954E9; // System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.ShadowUtility/Edge> struct Predicate_1_tE6258625C04FDEEA071A97A0914827AB3721815A; // System.Predicate`1<UnityEngine.GradientAlphaKey> struct Predicate_1_t003940FBB1C3AE696D372DA7CA9A10DE87142B15; // System.Predicate`1<UnityEngine.GradientColorKey> struct Predicate_1_tD19929B0FE35135B95CFA6F4D8EB2AB04E91B5ED; // System.Predicate`1<UnityEngine.Playables.PlayableBinding> struct Predicate_1_t9E83FE2FFFED37D642AF2B395BB7F966739ADAE1; // System.Predicate`1<UnityEngine.Polybrush.CommonEdge> struct Predicate_1_t0EBB009AADDF380967A2B91710A72829197329CD; // System.Predicate`1<UnityEngine.RaycastHit2D> struct Predicate_1_t2E7328AF8D5171CD04F3ADE6309A349DEDFF4D96; // System.Predicate`1<UnityEngine.Rendering.ShaderTagId> struct Predicate_1_t210056A6DD5FD7834AEA5E40F08DD18A64A8CD50; // System.Predicate`1<UnityEngine.TextCore.GlyphRect> struct Predicate_1_tB0A5EFEBC66C6A7540167D26FA783AFDCCB2DDD1; // System.Predicate`1<UnityEngine.Timeline.AnimationOutputWeightProcessor/WeightInfo> struct Predicate_1_tAFABF0537FD8D848F2539B4D4CDCA73A2C172EDB; // System.Predicate`1<UnityEngine.Timeline.IntervalTreeNode> struct Predicate_1_tD5FCEA88DD45A302EB8551F25B4BE35F50F12F4D; // System.Predicate`1<UnityEngine.Timeline.IntervalTree`1/Entry<System.Object>> struct Predicate_1_t2E5ABCE04476F52E5984266F258E030035608C16; // System.Predicate`1<UnityEngine.Timeline.TimeNotificationBehaviour/NotificationEntry> struct Predicate_1_t9B364626E1833645CE9E40E210F351EEE2828A51; // System.Predicate`1<UnityEngine.UICharInfo> struct Predicate_1_tBE52451BEC74D597DE894237BB32DFC9015F9697; // System.Predicate`1<UnityEngine.UIElements.FocusController/FocusedElement> struct Predicate_1_t4D9C20A6A7FA5C2332CD5F5F884429C8E5253B50; // System.Predicate`1<UnityEngine.UILineInfo> struct Predicate_1_t10822666A90A56FEFE6380CDD491BDEAC56F650D; // System.Predicate`1<UnityEngine.UIVertex> struct Predicate_1_t39035309B4A9F1D72B4B123440525667819D4683; // System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest> struct Predicate_1_tB36DEBDA8A92B190BF11D931895C0C099709AFFB; // System.Predicate`1<UnityEngine.Vector2> struct Predicate_1_tAFE9774406A8EEF2CB0FD007CE08B234C2D47ACA; // System.Predicate`1<UnityEngine.Vector3> struct Predicate_1_tE5F02AA525EA77379C5162F9A56CEFED1EBC3D4F; // System.Predicate`1<UnityEngine.Vector4> struct Predicate_1_tE53B3E1A17705A6185547CF352AD3E33938E2C94; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759; // System.Reflection.MemberFilter struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381; // System.Reflection.MethodInfo struct MethodInfo_t; // 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.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<System.Object,System.Object> struct CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object> struct ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object> struct ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; // System.Runtime.CompilerServices.IAsyncStateMachine struct IAsyncStateMachine_tEFDFBE18E061A6065AB2FF735F1425FB59F919BC; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770; // System.String struct String_t; // System.System_LazyDebugView`1<System.Object> struct System_LazyDebugView_1_t90CC9A5347F59FD5AC8F840F4052F6D2FCEFC4D5; // System.Threading.AsyncLocal`1<System.Object> struct AsyncLocal_1_tB3967B9BB037A3D4C437E7F0773AFF68802723D9; // System.Threading.CancellationCallbackInfo struct CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36; // System.Threading.CancellationTokenSource struct CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE; // System.Threading.ContextCallback struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676; // System.Threading.ExecutionContext struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70; // System.Threading.IAsyncLocal struct IAsyncLocal_tE256E53573305DF8C65DE4F1AC64F0112314B6F4; // System.Threading.ManualResetEvent struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408; // System.Threading.ManualResetEventSlim struct ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445; // System.Threading.SendOrPostCallback struct SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01; // System.Threading.SparselyPopulatedArrayFragment`1<System.Object> struct SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364; // System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo> struct SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7; // System.Threading.SparselyPopulatedArray`1<System.Object> struct SparselyPopulatedArray_1_t93BFED0AE376D58EC4ECF029A2E97C5D7CA80395; // System.Threading.Tasks.Shared`1<System.Object> struct Shared_1_t3C840CE94736A1E7956649E5C170991F41D4066A; // System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration> struct Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2; // System.Threading.Tasks.StackGuard struct StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9; // System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object> struct SystemThreadingTasks_FutureDebugView_1_tACDCA09E414A7545E866CBB23AAFD88303AFC295; // System.Threading.Tasks.Task struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2; // System.Threading.Tasks.Task/ContingentProperties struct ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08; // System.Threading.Tasks.TaskExceptionHolder struct TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811; // 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.Object> struct TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C; // System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.Task> struct TaskFactory_1_t58FE324C5DC18B5ED9A0E49CA8543DEEA65B4462; // 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/<>c<System.Boolean> struct U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5; // System.Threading.Tasks.Task`1/<>c<System.Int32> struct U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5; // System.Threading.Tasks.Task`1/<>c<System.Object> struct U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4; // System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult> struct U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893; // 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.Object> struct Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09; // System.Threading.Tasks.Task`1<System.Threading.Tasks.Task> struct Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138; // System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult> struct Task_1_t1359D75350E9D976BFA28AD96E417450DE277673; // System.Type struct Type_t; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; // UnityEngine.EventSystems.BaseRaycaster struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966; // UnityEngine.Events.UnityAction struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4; // UnityEngine.GameObject struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F; // UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0; // UnityEngine.Playables.INotification struct INotification_tEC90B82EADB49A639DD88AF14471EC5BA61EE3BD; // UnityEngine.Playables.PlayableBinding/CreateOutputMethod struct CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3; // UnityEngine.Playables.PlayableBinding[] struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB; // UnityEngine.UIElements.Focusable struct Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B; // UnityEngine.UIElements.VisualElement struct VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57; IL2CPP_EXTERN_C RuntimeClass* AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Delegate_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UIntPtr_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral1EF7700DEF2F08593CD7569A4AE5AE2D9B84F07B; IL2CPP_EXTERN_C String_t* _stringLiteral5D42AD1769F229C76031F30A404B4F7863D68DE0; IL2CPP_EXTERN_C String_t* _stringLiteral67EC301691E7C5B5C5A5E425FA5E939BE5233688; IL2CPP_EXTERN_C String_t* _stringLiteral699B142A794903652E588B3D75019329F77A9209; IL2CPP_EXTERN_C String_t* _stringLiteral8019FF861180B0DC6C2B79B88A224FEAFA0EBDB6; IL2CPP_EXTERN_C String_t* _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF; IL2CPP_EXTERN_C String_t* _stringLiteral8404BFE291F6723B2FE5235E7AA3C6B87813046A; IL2CPP_EXTERN_C String_t* _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE; IL2CPP_EXTERN_C String_t* _stringLiteralB074C920DAB17C140FA8E906179F603DBCE3EC79; IL2CPP_EXTERN_C String_t* _stringLiteralDCDC6806A4E290FA615A75A1499A7DF9A8192743; IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; IL2CPP_EXTERN_C String_t* _stringLiteralEBCD63F14EF28CDE705FE1FC1E3B163BB1FCAC0B; IL2CPP_EXTERN_C String_t* _stringLiteralF33F6BBE3C398D35275BA44A4895220984E8D4A6; IL2CPP_EXTERN_C String_t* _stringLiteralF7F24D49529641003F57A1A7C43CFCCA3D29BD73; IL2CPP_EXTERN_C String_t* _stringLiteralFB9F492624E1928628EDA9AEDEE3233A32388E42; IL2CPP_EXTERN_C const RuntimeMethod* AsyncLocalValueChangedArgs_1__ctor_m35C870EB8F451D9D0916F75F48C8FD4B08AD1FF8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncLocal_1_System_Threading_IAsyncLocal_OnValueChanged_mBD7888E1EB5B5ACBBF150908E671E458E8A0EFA1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncLocal_1__ctor_mBF520B58E9E752F59538039C7EB57E879F5AE8A2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncLocal_1_get_Value_m37DD33E11005742D98ABE36550991DF58CEE24E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncLocal_1_set_Value_m8D6AFEFFA7271575D6B9F60F8F812407431BA2C9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_m57C91813D220D03A19EC2206F5595821E1DA9954_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_mC7806A5C115ED2239A5073313AA3564D8244156E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_mEB49F32EAEB3E6C469F3A1194FBC34CD1D91CBBF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_GetTaskForResult_m25C4063D490D0AD29E9EB9BFB2973A4DC15D9408_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_GetTaskForResult_m5CF1A462822DB26CF310955638395584F9057E09_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_GetTaskForResult_mBCC369A6A2330CE1DA71FF770CF128EF6C5CB7F1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_m18ACA0FEA9C22741AE3229F64EFCD66E2DE7ED16_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_mBD219CF220624C992AC67B976E3D8DCE381DF027_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_mCCBBC85BA750240E46519BDDA6301130646CA4BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_m69471716E68A2553BAA340A0A780CD6953E3ECD3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_m6C16FFAECC8CE76F82289A87141A9524F5B09C60_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1__cctor_m6D0EC8CE377BD097203676E3EA3BFD3B73CD2B3C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1__cctor_m7318198C05AD1334E137A3EEFD06FED8349CC66B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1__cctor_m8654D1109767B5ED6117AF36557E1D49005C5C60_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_mB90A654E7FBAE31DB64597AA0B3B5ED3712E2966_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_mE71F3C1D2587BE90812781280F0175E9CE14BA66_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Finalize_m91ED04E1A857A9FCD9812761E21F0A1456FC39EC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_GetValue_m838D9EF0BF4891909CA39673B6057E0E913AB829_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_RecomputeSize_m7E1820E6AF43FE02FAAC116D609B358930AAE23D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_RehashWithoutResize_mBE728B1A280016D22A46B47E8932515672667159_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Rehash_m2C5F0FFA6D63F510DB4F61FD728DFA4D1674DCE0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2__ctor_m1BF7C98CA314D99CE58778C0C661D5F1628B6563_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1__ctor_m9038EF920A0F90A746627FF394F3A44ED51CFB21_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1__ctor_mAD28136B3EBB7A59923B02CD31DE0E0DB4B69FA7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1__ctor_mB82ADF237AE2CA3076F32A86D153EBD7B339E3B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaitable_1__ctor_mFB57BDDFCD7717F4EFBA0C41312C99E8E24D31C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_mC2B7B126733CDE385D61F2036F9D0668B36F171B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_mE6DE53E996B30ABB828D43811259EC164DDC607B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_UnsafeOnCompleted_m4839332C5C05D22963CEA62A1FEE699C68109404_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_UnsafeOnCompleted_m51FAB5E9A9B65CADB2FC226EDDA77B18E003AD60_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_UnsafeOnCompleted_m52A95CEFA755CAAEE1E8755101ACA45A295A7A35_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_UnsafeOnCompleted_mA3AA09BD7CC25D9F838DF9BBBF200B41C65BBD57_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter__ctor_m0E48D705E5FED5CC83670FA7A2B32702BBE20840_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter__ctor_mBC2C82388746A0B33A7CC359CB90AB34F4CB0F80_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter__ctor_mFD356296FDD56905A728A7EF64E95DA08F0CDE26_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter__ctor_mFE77210335876C9788ECDD3C5393C4636B39A00B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_m1429B429A92D467192E16F1291BAA5761706EAB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_m3106B5C67EF6270B9DB4B5E1C5C687BCAA446F24_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_Add_m194E02D900DC5F2CAD7AB235F6421DA5E8A77ADB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_GetEnumerator_m96584177D2096260F94B1669535099190D4DF1D9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Add_m996D08F1410BA896DFA7850499AA71879364C429_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Clear_mB32A5C3F1F6FDCD8DE2C57864E14BE49D300BED0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Contains_m4552CB0F477C684FC0E6365F7CDD5A6113B19573_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_CopyTo_m4F16624888C915DABAA0F141A507F7C05B30CC80_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Remove_m5C06BBCC6E844DEFDAECB0806F1FA080B3F90B20_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_get_Count_mDE563FB35990618F2AFEF9524108561BFDEC84FD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_get_IsReadOnly_mAD044B15EEE0B64BB5A53F97D58D56681581E1D5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_IListU3CTElementU3E_IndexOf_mFF7F9B14B00AC8DD59CDA480416AEB272C90CD27_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_IListU3CTElementU3E_Insert_m9CE5371725E3DF8203A5DDE67122DC1FCD6510A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_IListU3CTElementU3E_RemoveAt_mC74ED7D0A76A57C1FBF07D54A725D3EB190F9318_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_IListU3CTElementU3E_get_Item_m3FF6913C426C1A1B558117683B9A073AEF486875_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_Generic_IListU3CTElementU3E_set_Item_m5D93FAC6F689B1D1C5058132FA3BC3E794B0CEE2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping_System_Collections_IEnumerable_GetEnumerator_m5584E62BA305925AC5B936D24E02DCA4F4D972CE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Grouping__ctor_m5ACCE08B5231968B89B3F01272EC97B6D9876258_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListBuilder_1_Add_m42B66384FC0CD58D994246D40CB4F473D3E639A4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListBuilder_1_CopyTo_m88C60144CC6606D734A5522D4EC6027CE1E01FAE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListBuilder_1_ToArray_m9DAACFD0ECFE92359885E585A3BE6EE34A43798E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListBuilder_1__ctor_m732FB66A81E20018611D91961EFC856084C6596E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListBuilder_1_get_Item_m440ACBC3F6764B4992840EEEC1CCA9AFD3A5886D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2_GetEnumerator_m8CDBAF288C8E1DDA2DA58F0D77E002ED6F093AFE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2_GetEnumerator_mADDC51418F76E7024AAD9789AD0B804000D43874_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2_GetGrouping_m0753627BD1ADBF791B7093FD25C092906CC1455B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2_GetGrouping_m1C752DAAFBBD5C7AFF73C51662E1FFE0738CD618_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2_InternalGetHashCode_mBDFF57050CFC9AB1931869A1211FACF1FF08C0C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2_InternalGetHashCode_mF4C4A0D768038B8B963FC546DF3967F9D4D5A878_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2_Resize_m1BC513742EBB77CA5062322E6BC4A673137456F8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2_Resize_m55BCE05BB13ADF0ABEDF9B6767F0718E7B54FAC0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2_System_Collections_IEnumerable_GetEnumerator_m62B91FA391D704608B70F2BA1A54C8DDFF740356_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2_System_Collections_IEnumerable_GetEnumerator_m8B158492070EC205313929BC54B4C7714A45EA60_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2__ctor_m9E47C07FD542171F547D6D08AE95E4BB85693B01_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Lookup_2__ctor_mD91B999C81536436BEAEDD089AFDD080CA6D72F8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Box_m2F6E2E5A99EE94E5F4A113D7CFF12EC1889DF6C9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Box_m41771ECA0B346D8EE52946C2D53DAFC2FCCFF91A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Box_m65440F4F20650FACF20592CDA5B60351180CC859_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Box_m7AD599CEBDD341B74ADFFA2EE42E40619B1C933D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Box_m7C656D7B05E522D54760DAA9C6B3BF644A230031_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Box_m97F28DF9582F3B1FC0C0AAD7AB730AD1509D7E59_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Box_mD6D4DE024A1D18E3ABB7DC6905B7BE4BC0EDB3D4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Box_mE2784D14DD83A4A3F433845A968BA3D33089A02B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_m12B7CCFE77645EF7BFFE6747B0DC0A743E3FAEDC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_m1FA9AE8F6E43B1AC7DA2EF0F387F081979467C25_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_m27BA7C9660B3660D2EBE7395D74074C360B96E6D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_m40ADF33A723A68AB2B2FEB59AFECC69CD4F223AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_m4AF55EB69E27EA4B93F15251F604285D62426E33_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_m5675B6057A25CD775313F9B3B69932E06A7DCB04_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_m5D590E2CB3FAB0FF32A3B16AC25813089A0523F0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_m5DEFB9CC500A1486BCEC1D5D691DFF1BEEAD9F81_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_m616873F8BAC7A9E73D0CE2D3EC9EC49F6167C0E0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_m867EB0D65ACB5204CFF11EFE7BC5B77D1FEDD846_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_mC4A197FA803FF5A473A45D9362E8DE3C3A0C9637_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_mC856AC1460EF4282C8E56291C412A0A916DD2712_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_mCF874DB6A45A0E1794D966BC6CBD63218E2ABD11_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_mDB884205D5954E6C2DBE345DFB806D3F1BAED080_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_mDD3F51FAFBD5B40CE0D778E2AE3303A40209F45E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Equals_mFFEE098834767D89CBF264F5B4FD3E3ACC7015E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetHashCode_m56AC4B3DFFC7510EF5C98721FF2A2ACB898B0EF2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetHashCode_m75D5966FDDEC3F900C21CBFEE03A8BC087408E41_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetHashCode_m94232DE86EB0E6B35607A39DA9F513CF9754F2F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetHashCode_m99637F7283FCCB08B4C2DB9BE61B44EB07C7ED1F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetHashCode_mA2A8D10C6803F789C01D884345427C207032E80A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetHashCode_mB8F830CC7EDF8E3FA462E0D05B8242F388FA1F16_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetHashCode_mC37D0B59BBA0C4499BDB8C0C768278EE8C450843_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetHashCode_mF2DA27E4C81C52280695B8185A5B3F34A16BDB5B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_ToString_m363E0AD25D0DB0B6F8C916315B9F245B0029FA72_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_ToString_m5CF657AB54EFB4B3E09840F5217CA707B9EC967A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_ToString_m6862243F6976595439F489C10790596B13D113B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_ToString_m7EA7DF40B01B84A39807813416C4C186B23C52C4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_ToString_m8B3E28321CC3D391381CE384D61F16E59C8B1BBE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_ToString_mA289110DA157CC0FC479D7424CA11F974D9D6655_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_ToString_mA342DAFAACE3FF6BD1F5F41A003BB56981B308C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_ToString_mC6D12173E52B269C4AF65B27671CB5E46BAADEFF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Unbox_m1E42727BC0B959E7B54620B0E535DD9E9D7AD4C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Unbox_m43653E906B96E19EECCB30DFEE23670F090A380B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Unbox_m5EE1A8F95CF452249D88B4BC6F17C245884522C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Unbox_m66A8CA1EDECCB3D4F9C89653F51D5CB8F6AD77FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Unbox_m816DD3CEA6B701CDF3D073FC4A9427B4969B78E1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Unbox_m8F03073B6E86B4B0B711D6D3384B9F4D75FBD0FE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Unbox_mB59B2FBB12B740FB0DA50DDFBE487A5BF054EBC2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_Unbox_mB91B8A5848967930785B8C6448F412C1339B81AD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m04D6D6F6B0D572ED38D3E5CB80E2528C5E6360BD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m2363E26BE9E8EE765BEA232058A47DF46945F616_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m49ABD148B7A7789CB005BA17CA29E1896EE35057_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m7684344C547C49122B242D657ED4F2CA1C5C6B9F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mA8ED073A176FC38129CED874F576B6CC839EC5EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m1F3DEA1D85DFE14F9D74A4DA014B0282D4BCEF1C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m32D4CD9D36108D7EE445A232AAB86E6DD0CB001B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m54AA814374E14F2513143A5032F9E4AAD3228226_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m7C9CFCE6186F3CD55B4D63BB50E6D3D48A78583A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m902B83FE050783CC1CEF6CB970A5AAB926F77D9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m904F41E85B564BEA9E2D8BB5BA38173F99078A3E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_mA8BB683CA6A8C5BF448A737FB5A2AF63C730B3E5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_1_GetEnumerator_m6B583F692645DA469982C5C635DE70D5553CC4EB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_1_System_Collections_IEnumerable_GetEnumerator_mB6C6801C983E116B406413C829A698AD37281F93_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_1__ctor_m3CA8A9BBEF36999C72B40DB7DEDAC6639FC006AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2_GetEnumerableSorter_m1D3CD8D266723F87EADEB7B83CCD7E96EDB5EE83_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2_GetEnumerableSorter_m5BF80E853BE7CFB5028886234C5AB0E68C68B5D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2_GetEnumerableSorter_mB4E96D7A5E37C58C32C154BF14B7A9E3E7F32580_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_mA05BEA8881ECC81117F11B951C7410BE282429B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_mBC31DD2997EB411D3D86107019A712E928751317_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OrderedEnumerable_2__ctor_mED1C124F227E7A0EB33F97EC366CE099B482B736_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Set_1_Add_m3474B51201F7B6207474C63E01833E00D4567EA4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Set_1_Add_mFD3EC38181B88D9589E5CDAA74AF81B8E2D6A36E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Set_1_Find_m413002EA7969B44A4E7056313A98F8A46C3F4CF6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Set_1_Find_mC230B8BA41504EB4F0ECEA107C600A1EBA562B6B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Set_1_InternalGetHashCode_m0C52506E42ABDEEAEC8DD63713FD49831F5D59A0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Set_1_InternalGetHashCode_mE8095A336276E0F8E6A1CE9ED6F0202A815D014B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Set_1_Resize_mDA5450E8D59ACE46B2E0AA2E444AF1553E06BEBF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Set_1_Resize_mF6848DACFFA1797F5CFA72146BD21290923E97F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Set_1__ctor_m3FF819A5EC6008F1283E3A4B57BE229BCE79504C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Set_1__ctor_m9A478E5A00A823D7896856D965F002845D2CC4FF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Shared_1__ctor_mAFCC38C207B2F85CB2AE05C7C866B8169EAAE24A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Shared_1__ctor_mCF3BC894D80B61B1BE65133DA767D1B3D88933F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayAddInfo_1__ctor_m1A9D946CCFA8A499F78A0BF45E83C3E51E8AD481_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m1AB1FDBC0781375CA9B068017B5491D9EE2349E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayFragment_1__ctor_m410909B1376FED0939FF033141563FBDE4FCFD2A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayFragment_1__ctor_m6BA064F85BABCC878437B61DDC0A2C4B2715800A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayFragment_1_get_Item_m8250124614B9A0DC4F0CAF035E9978BB9990077B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayFragment_1_get_Length_mBF5C58CC3C4F7647E4CCA1C246108F532B90DFC9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayFragment_1_get_Prev_m5C5B855EDCF34FAE3DAA3A550AFD4BADFAB05B0A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArray_1_Add_m469C4150738A88088CC4259E8A69434FD7FBB7B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArray_1__ctor_m7A1F6A2953F75F7D0F45688384401330C117232D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArray_1_get_Tail_mA2AA0F79FF9906A900DDCF2B49DC6D435B5A2CB5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SystemThreadingTasks_FutureDebugView_1__ctor_mDB74B9D5A57303DF8AA1CA557EFAD476590D75CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SystemThreadingTasks_FutureDebugView_1_get_AsyncState_m0D3FE981463F7D5D97232FAB96BE343A1BCC3D6D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SystemThreadingTasks_FutureDebugView_1_get_CancellationPending_m50E1DDDC8FF602F705CF56FA863A79497979B94F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SystemThreadingTasks_FutureDebugView_1_get_CreationOptions_m3A5827B7FED8876042CD32BCC2C3EC614EA1CA7E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SystemThreadingTasks_FutureDebugView_1_get_Exception_m4016937C440FA3A4FCED5F5922B251632B7FD3A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SystemThreadingTasks_FutureDebugView_1_get_Id_mC5BE695A71E0B17CB62F699E26DA26605F043919_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SystemThreadingTasks_FutureDebugView_1_get_Result_mB187333B3B34BA6E21E7A2E27BF01FCF4B3857EF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SystemThreadingTasks_FutureDebugView_1_get_Status_m029BABAE9B49403CB52EB87424A469212CFB12BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* System_LazyDebugView_1__ctor_m1636869EA2A7A9AAB65981F91825BEF2AF1CDCAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* System_LazyDebugView_1_get_IsValueCreated_m6F297C78C8583EF3EE0F2E1171AD02C900163D0D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* System_LazyDebugView_1_get_IsValueFaulted_mE7C6E437833846730D0C9A5040A1C781101072E0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* System_LazyDebugView_1_get_Mode_m9562B46E49883D23DE4CE2FB3320248125AC7879_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* System_LazyDebugView_1_get_Value_m5612E9AE365565A58A964C47FB45C2C57F270725_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1_GetResult_m77546DD82B46E6BAAAA79AB5F1BBCD2567E0F7F8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1_GetResult_m9653F7144240DCB33FCDAC21DE6A89FD12F58BA5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1_GetResult_m9E148849CD4747E1BDD831E4FB2D7ECFA13C11C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1_UnsafeOnCompleted_m4204CC2DE0200E2EFA43C485022F816D27298975_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1_UnsafeOnCompleted_m682D0FAFEEB8268BB1EC46583C9F93A15999E743_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1_UnsafeOnCompleted_m8D75DA13F52ABD6D5ACD823594F6A5CD43BE2A3E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1_UnsafeOnCompleted_mCD78FE2109BECF3B49ABCC367C9A1304BD390A98_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1__ctor_m24B0BDC6C1997B01AF4AE2076109F12FAE651359_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1__ctor_m264753C2342B426F8ABF7184580DCCE10EA239C4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1__ctor_m41A6F0A24C1A6B40A42112AEE3C519D55C19B947_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1__ctor_m6C8BE3015F8F6264840E6A5665455D5325E44CE5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1__ctor_m81726078B90345F0D7A7F23D10FB1DF21C641C07_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1__ctor_mCB70351ED04D84754138596AE15CE1BE07662688_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1__ctor_mF0CF0F845F7DAD367609B618C7CFB8751BDE0251_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_1__ctor_mF7EBABF76BCDC881D5A7FAB3EC46335DAEB404BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_ConfigureAwait_m60DD864D9488EACBA6C087E87E448797C1C8B76B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_ConfigureAwait_mAB7D38722C432C9FB07D4BE72C9B964D5476810A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_GetAwaiter_m9C50610C6F05C1DA9BFA67201CB570F1DE040817_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_GetAwaiter_mACFDCEB6FCFDFCFADAD84AB06A6DC16BAE77948E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_GetResultCore_m7C02E4418D32F519D55AE8DF42759C02688B3953_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_GetResultCore_m8EBE0B8753DCE615F51B03FDC34AF2A84635DD32_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_GetResultCore_mD5A626240E7764CDCE20ECA29E4AD60C72956A96_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_InnerInvoke_m08CF8E48F076997870E45BC7AA065A65AF7FE8BF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_InnerInvoke_m555C0E2791E25E4AD24D7486CB08C1C6C7B2C95B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_InnerInvoke_m5642BBCE224B9FA860D2741A00E0C582057B7A67_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetCanceled_m14A73C54A1A5FDFB9C9A6E5E8E7AFB2166E629A8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetCanceled_m1B45215C2A32476781C0D2F7C5A50ED7EC8A4B33_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetCanceled_m734D6894721B115F2DB33F0343824A622226014A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetCanceled_mD749E76D7E6FA3AB266A4EA52A42D86494D4A237_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetCanceled_mDB8ECFE83613228B10AC4F3BC9FE73A8686F85CC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetCanceled_mEE19AE4EEF9946C551126531BEEB24385A75336E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetException_m251DD9D833C7000B3F41D2F4708CA419C64FED94_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetException_m7707A1E606F28CF340B48150E98D0D7EDD44EB69_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetException_mF98ADB3D7D0CA8874536F59F62D2DAE11093AD45_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetResult_m38F5C35F41BC393435AC1CF161290BA66B27D3F6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetResult_m4FE4E07EBB0BA224341A4946FE2C4A813BD8AF64_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetResult_mFC68BAD2AD67B63EF8E248E06F6C1819EF13A10E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__cctor_m2403A9EF37EF932D4F21DF2D79590ECFEE1BC9F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__cctor_m2FA7F8AA88B303EAA88BEA4456B41782D1AF6D94_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__cctor_mB6C10F48526D783AC04DA5A0138366BE1074BD03_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m0A3A6225A5B5378BB8B6CB10C248F7904FA91BF4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m0C8160A512539A2BA41821CFD126F247FEDAE7FD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m204E1CC1F2D6FFDB95821FF3E91C102C6CFACB4F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m294345A83D9CAC9B7198CA662BA64B776B5A8B23_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m296739F870489EEFB5452CB0CA922094E914BE89_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m3418D05E6E80990C18478A5EC60290D71B493EB3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m3533BD867272C008F003BC8B763A0803A4C77C47_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m3A414F98FA833365D5DFA9DBBFD275B886CDFEAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m547E9FC9104980C9A31340A40C5DBD6ED0EF9662_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m6DAC1732E56024E32076DEE1A3863F17635A8944_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m7891CB01EB20826147070EA4906F804ACF5402E0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m853EDDB7B8743654CF53E235439CD8E404BF9DF7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m87E6AE95DBC2E864EC279359D3918B3B51ED8D37_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m99E038A55993AA4AEB326D8DF036B42506038010_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_mB7D5AA53007C0310ED213C0008D89E1942E5F629_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_DebuggerDisplayMethodDescription_m383B1D03069496E6DAD88DC7C13EA8F3307BB144_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_DebuggerDisplayMethodDescription_m6A350CE8815D0723DDFC7D94AAA0FE49074D47F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_DebuggerDisplayMethodDescription_m80AC347CA4971A596AE432B94DFF5860665A9FAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_DebuggerDisplayResultDescription_m30CC009921E9D0DFBBA0B29183170DAACB6B3A76_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_DebuggerDisplayResultDescription_m99D5522BDAF99C53DDFE796ED685C58B61A20BD0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_DebuggerDisplayResultDescription_mFFA5DCF72FAEB415244ACCDF76B8E552DC72E233_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_ResultOnSuccess_m3419E1D24207ACE1FF958CBC46316229F42F10E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_ResultOnSuccess_m843D91F8565061877BE801921DFB8C39112B1FBE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_ResultOnSuccess_mA573D5AD0C0B331815A82D31C4D4928DED52C575_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_Result_m45FAB4C705F7450AA70A3D1AC57F5FE7587D87AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_Result_m653E95E70604B69D29BC9679AA4588ED82AD01D7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_Result_m723545759DF19A9171742042E0610CAF7E9C3568_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_get_AsyncState_mEE6996D21AD9F92E34A30FA73A7D31A5BCE42657_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_mEC26269ABD71D03847D81120160D2106C2B3D581_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CGetEnumeratorU3Ed__1_MoveNext_m23D3773DBF4D81ABBC236E9DDA007553DC56A04F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CGetEnumeratorU3Ed__1_System_Collections_Generic_IEnumeratorU3CTElementU3E_get_Current_m98DEA03BA71A147ED84ECA2263938A496D057E96_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_m7D5F72F53326D41EF185078584418D121C372D28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_get_Current_m0597A01A32A7AD6E2F392811D14CF721CFCCCF1D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CGetEnumeratorU3Ed__1_System_IDisposable_Dispose_m01544C5EBD94E647D9097CED71885C0B2569DDCB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CGetEnumeratorU3Ed__1__ctor_mA7BF0B53308C5EAD3A3E8484E4CC12E0226751BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__64_0_m772E3C0036762E0FE901B45A1BE3F005355C0D0C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__64_0_m933EE40969AAD17F3625204FB1ECF2105BFA3DC3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__64_0_mB4EA2EFED31C2B44F2439B6CC9D956DABE18C579_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__64_0_mBDCCDBE549EA6CA48D2D1F3EB018791C6391166B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__cctor_m50CFD009EBEE56D078E9600E0A0706D18977484A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__cctor_m560F0C908B4C534050E4AEDF477E06F305ABC000_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__cctor_m6505B87C516A190EC07E4861911C3123119AD05A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__cctor_mD10BEC9FAFD3552DDB9FF483CCFD7F6699C36D20_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__ctor_m0EB02C13EE46DC6FCC797FA3876DA8AB2FB5FA93_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__ctor_m38624AEE489E484C88102D32E2757B630841CF24_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__ctor_mA23DBC22818F0D9EBFC6BF1DADB358EDA82414B9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__ctor_mB1669AAE5AD5631E68DAA10DB87C9B340EDF2DE5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IntPtr_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UIntPtr_t_0_0_0_var; IL2CPP_EXTERN_C const uint32_t AsyncLocalValueChangedArgs_1__ctor_m35C870EB8F451D9D0916F75F48C8FD4B08AD1FF8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3DGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632FGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocal_1_System_Threading_IAsyncLocal_OnValueChanged_mBD7888E1EB5B5ACBBF150908E671E458E8A0EFA1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocal_1__ctor_mBF520B58E9E752F59538039C7EB57E879F5AE8A2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocal_1_get_Value_m37DD33E11005742D98ABE36550991DF58CEE24E6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncLocal_1_set_Value_m8D6AFEFFA7271575D6B9F60F8F812407431BA2C9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_Create_m57C91813D220D03A19EC2206F5595821E1DA9954_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_Create_mC7806A5C115ED2239A5073313AA3564D8244156E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_Create_mEB49F32EAEB3E6C469F3A1194FBC34CD1D91CBBF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_GetTaskForResult_m25C4063D490D0AD29E9EB9BFB2973A4DC15D9408_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_GetTaskForResult_m5CF1A462822DB26CF310955638395584F9057E09_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_GetTaskForResult_mBCC369A6A2330CE1DA71FF770CF128EF6C5CB7F1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetResult_m18ACA0FEA9C22741AE3229F64EFCD66E2DE7ED16_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetResult_mBD219CF220624C992AC67B976E3D8DCE381DF027_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetResult_mCCBBC85BA750240E46519BDDA6301130646CA4BB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetStateMachine_m69471716E68A2553BAA340A0A780CD6953E3ECD3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_SetStateMachine_m6C16FFAECC8CE76F82289A87141A9524F5B09C60_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1__cctor_m6D0EC8CE377BD097203676E3EA3BFD3B73CD2B3C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1__cctor_m7318198C05AD1334E137A3EEFD06FED8349CC66B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1__cctor_m8654D1109767B5ED6117AF36557E1D49005C5C60_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_get_Task_mB90A654E7FBAE31DB64597AA0B3B5ED3712E2966_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AsyncTaskMethodBuilder_1_get_Task_mE71F3C1D2587BE90812781280F0175E9CE14BA66_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConditionalWeakTable_2_Finalize_m91ED04E1A857A9FCD9812761E21F0A1456FC39EC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConditionalWeakTable_2_GetValue_m838D9EF0BF4891909CA39673B6057E0E913AB829_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConditionalWeakTable_2_RecomputeSize_m7E1820E6AF43FE02FAAC116D609B358930AAE23D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConditionalWeakTable_2_RehashWithoutResize_mBE728B1A280016D22A46B47E8932515672667159_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConditionalWeakTable_2_Rehash_m2C5F0FFA6D63F510DB4F61FD728DFA4D1674DCE0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConditionalWeakTable_2__ctor_m1BF7C98CA314D99CE58778C0C661D5F1628B6563_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DEGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48FGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3BGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1__ctor_m9038EF920A0F90A746627FF394F3A44ED51CFB21_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1__ctor_mAD28136B3EBB7A59923B02CD31DE0E0DB4B69FA7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1__ctor_mB82ADF237AE2CA3076F32A86D153EBD7B339E3B7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaitable_1__ctor_mFB57BDDFCD7717F4EFBA0C41312C99E8E24D31C7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_GetResult_mC2B7B126733CDE385D61F2036F9D0668B36F171B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_GetResult_mE6DE53E996B30ABB828D43811259EC164DDC607B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_UnsafeOnCompleted_m4839332C5C05D22963CEA62A1FEE699C68109404_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_UnsafeOnCompleted_m51FAB5E9A9B65CADB2FC226EDDA77B18E003AD60_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_UnsafeOnCompleted_m52A95CEFA755CAAEE1E8755101ACA45A295A7A35_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_UnsafeOnCompleted_mA3AA09BD7CC25D9F838DF9BBBF200B41C65BBD57_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter__ctor_m0E48D705E5FED5CC83670FA7A2B32702BBE20840_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter__ctor_mBC2C82388746A0B33A7CC359CB90AB34F4CB0F80_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter__ctor_mFD356296FDD56905A728A7EF64E95DA08F0CDE26_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter__ctor_mFE77210335876C9788ECDD3C5393C4636B39A00B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_get_IsCompleted_m1429B429A92D467192E16F1291BAA5761706EAB0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_get_IsCompleted_m3106B5C67EF6270B9DB4B5E1C5C687BCAA446F24_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_Add_m194E02D900DC5F2CAD7AB235F6421DA5E8A77ADB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_GetEnumerator_m96584177D2096260F94B1669535099190D4DF1D9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Add_m996D08F1410BA896DFA7850499AA71879364C429_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Clear_mB32A5C3F1F6FDCD8DE2C57864E14BE49D300BED0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Contains_m4552CB0F477C684FC0E6365F7CDD5A6113B19573_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_CopyTo_m4F16624888C915DABAA0F141A507F7C05B30CC80_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Remove_m5C06BBCC6E844DEFDAECB0806F1FA080B3F90B20_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_get_Count_mDE563FB35990618F2AFEF9524108561BFDEC84FD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_get_IsReadOnly_mAD044B15EEE0B64BB5A53F97D58D56681581E1D5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_IListU3CTElementU3E_IndexOf_mFF7F9B14B00AC8DD59CDA480416AEB272C90CD27_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_IListU3CTElementU3E_Insert_m9CE5371725E3DF8203A5DDE67122DC1FCD6510A5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_IListU3CTElementU3E_RemoveAt_mC74ED7D0A76A57C1FBF07D54A725D3EB190F9318_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_IListU3CTElementU3E_get_Item_m3FF6913C426C1A1B558117683B9A073AEF486875_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_Generic_IListU3CTElementU3E_set_Item_m5D93FAC6F689B1D1C5058132FA3BC3E794B0CEE2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping_System_Collections_IEnumerable_GetEnumerator_m5584E62BA305925AC5B936D24E02DCA4F4D972CE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Grouping__ctor_m5ACCE08B5231968B89B3F01272EC97B6D9876258_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ListBuilder_1_Add_m42B66384FC0CD58D994246D40CB4F473D3E639A4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ListBuilder_1_CopyTo_m88C60144CC6606D734A5522D4EC6027CE1E01FAE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ListBuilder_1_ToArray_m9DAACFD0ECFE92359885E585A3BE6EE34A43798E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ListBuilder_1__ctor_m732FB66A81E20018611D91961EFC856084C6596E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ListBuilder_1_get_Item_m440ACBC3F6764B4992840EEEC1CCA9AFD3A5886D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2_GetEnumerator_m8CDBAF288C8E1DDA2DA58F0D77E002ED6F093AFE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2_GetEnumerator_mADDC51418F76E7024AAD9789AD0B804000D43874_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2_GetGrouping_m0753627BD1ADBF791B7093FD25C092906CC1455B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2_GetGrouping_m1C752DAAFBBD5C7AFF73C51662E1FFE0738CD618_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2_InternalGetHashCode_mBDFF57050CFC9AB1931869A1211FACF1FF08C0C0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2_InternalGetHashCode_mF4C4A0D768038B8B963FC546DF3967F9D4D5A878_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2_Resize_m1BC513742EBB77CA5062322E6BC4A673137456F8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2_Resize_m55BCE05BB13ADF0ABEDF9B6767F0718E7B54FAC0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2_System_Collections_IEnumerable_GetEnumerator_m62B91FA391D704608B70F2BA1A54C8DDFF740356_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2_System_Collections_IEnumerable_GetEnumerator_m8B158492070EC205313929BC54B4C7714A45EA60_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2__ctor_m9E47C07FD542171F547D6D08AE95E4BB85693B01_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Lookup_2__ctor_mD91B999C81536436BEAEDD089AFDD080CA6D72F8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Box_m2F6E2E5A99EE94E5F4A113D7CFF12EC1889DF6C9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Box_m41771ECA0B346D8EE52946C2D53DAFC2FCCFF91A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Box_m65440F4F20650FACF20592CDA5B60351180CC859_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Box_m7AD599CEBDD341B74ADFFA2EE42E40619B1C933D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Box_m7C656D7B05E522D54760DAA9C6B3BF644A230031_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Box_m97F28DF9582F3B1FC0C0AAD7AB730AD1509D7E59_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Box_mD6D4DE024A1D18E3ABB7DC6905B7BE4BC0EDB3D4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Box_mE2784D14DD83A4A3F433845A968BA3D33089A02B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_m12B7CCFE77645EF7BFFE6747B0DC0A743E3FAEDC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_m1FA9AE8F6E43B1AC7DA2EF0F387F081979467C25_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_m27BA7C9660B3660D2EBE7395D74074C360B96E6D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_m40ADF33A723A68AB2B2FEB59AFECC69CD4F223AB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_m4AF55EB69E27EA4B93F15251F604285D62426E33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_m5675B6057A25CD775313F9B3B69932E06A7DCB04_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_m5D590E2CB3FAB0FF32A3B16AC25813089A0523F0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_m5DEFB9CC500A1486BCEC1D5D691DFF1BEEAD9F81_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_m616873F8BAC7A9E73D0CE2D3EC9EC49F6167C0E0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_m867EB0D65ACB5204CFF11EFE7BC5B77D1FEDD846_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_mC4A197FA803FF5A473A45D9362E8DE3C3A0C9637_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_mC856AC1460EF4282C8E56291C412A0A916DD2712_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_mCF874DB6A45A0E1794D966BC6CBD63218E2ABD11_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_mDB884205D5954E6C2DBE345DFB806D3F1BAED080_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_mDD3F51FAFBD5B40CE0D778E2AE3303A40209F45E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Equals_mFFEE098834767D89CBF264F5B4FD3E3ACC7015E6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetHashCode_m56AC4B3DFFC7510EF5C98721FF2A2ACB898B0EF2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetHashCode_m75D5966FDDEC3F900C21CBFEE03A8BC087408E41_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetHashCode_m94232DE86EB0E6B35607A39DA9F513CF9754F2F9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetHashCode_m99637F7283FCCB08B4C2DB9BE61B44EB07C7ED1F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetHashCode_mA2A8D10C6803F789C01D884345427C207032E80A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetHashCode_mB8F830CC7EDF8E3FA462E0D05B8242F388FA1F16_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetHashCode_mC37D0B59BBA0C4499BDB8C0C768278EE8C450843_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetHashCode_mF2DA27E4C81C52280695B8185A5B3F34A16BDB5B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_ToString_m363E0AD25D0DB0B6F8C916315B9F245B0029FA72_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_ToString_m5CF657AB54EFB4B3E09840F5217CA707B9EC967A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_ToString_m6862243F6976595439F489C10790596B13D113B3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_ToString_m7EA7DF40B01B84A39807813416C4C186B23C52C4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_ToString_m8B3E28321CC3D391381CE384D61F16E59C8B1BBE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_ToString_mA289110DA157CC0FC479D7424CA11F974D9D6655_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_ToString_mA342DAFAACE3FF6BD1F5F41A003BB56981B308C6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_ToString_mC6D12173E52B269C4AF65B27671CB5E46BAADEFF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Unbox_m1E42727BC0B959E7B54620B0E535DD9E9D7AD4C8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Unbox_m43653E906B96E19EECCB30DFEE23670F090A380B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Unbox_m5EE1A8F95CF452249D88B4BC6F17C245884522C6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Unbox_m66A8CA1EDECCB3D4F9C89653F51D5CB8F6AD77FA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Unbox_m816DD3CEA6B701CDF3D073FC4A9427B4969B78E1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Unbox_m8F03073B6E86B4B0B711D6D3384B9F4D75FBD0FE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Unbox_mB59B2FBB12B740FB0DA50DDFBE487A5BF054EBC2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_Unbox_mB91B8A5848967930785B8C6448F412C1339B81AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1__ctor_m04D6D6F6B0D572ED38D3E5CB80E2528C5E6360BD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1__ctor_m2363E26BE9E8EE765BEA232058A47DF46945F616_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1__ctor_m49ABD148B7A7789CB005BA17CA29E1896EE35057_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1__ctor_m7684344C547C49122B242D657ED4F2CA1C5C6B9F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1__ctor_mA8ED073A176FC38129CED874F576B6CC839EC5EA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2BGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5EGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7FGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609FGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_Value_m1F3DEA1D85DFE14F9D74A4DA014B0282D4BCEF1C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_Value_m32D4CD9D36108D7EE445A232AAB86E6DD0CB001B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_Value_m54AA814374E14F2513143A5032F9E4AAD3228226_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_Value_m7C9CFCE6186F3CD55B4D63BB50E6D3D48A78583A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_Value_m902B83FE050783CC1CEF6CB970A5AAB926F77D9C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_Value_m904F41E85B564BEA9E2D8BB5BA38173F99078A3E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Nullable_1_get_Value_mA8BB683CA6A8C5BF448A737FB5A2AF63C730B3E5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OrderedEnumerable_1_GetEnumerator_m6B583F692645DA469982C5C635DE70D5553CC4EB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OrderedEnumerable_1_System_Collections_IEnumerable_GetEnumerator_mB6C6801C983E116B406413C829A698AD37281F93_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OrderedEnumerable_1__ctor_m3CA8A9BBEF36999C72B40DB7DEDAC6639FC006AB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OrderedEnumerable_2_GetEnumerableSorter_m1D3CD8D266723F87EADEB7B83CCD7E96EDB5EE83_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OrderedEnumerable_2_GetEnumerableSorter_m5BF80E853BE7CFB5028886234C5AB0E68C68B5D6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OrderedEnumerable_2_GetEnumerableSorter_mB4E96D7A5E37C58C32C154BF14B7A9E3E7F32580_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OrderedEnumerable_2__ctor_mA05BEA8881ECC81117F11B951C7410BE282429B7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OrderedEnumerable_2__ctor_mBC31DD2997EB411D3D86107019A712E928751317_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t OrderedEnumerable_2__ctor_mED1C124F227E7A0EB33F97EC366CE099B482B736_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m01DEC433226C79495334DEFD4D1494960984C53B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m08916F9561F216D02FD4C6523DAAD964C689E916_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m0973A8DA66E3C131DC3BCD470418E8E1A4944BC8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m10047A113CDD3C48B9FBDA81E60638C27F4558DE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m1A03E3D17D190283E3BAB6FD09D2C05C12DD96DA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m257398D3FCAB0921448DD4DFDFD424F44FDD2EC6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m25916A46AEC08EB5C420E57B29CCEF158AFC4615_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m28669725363DE11FE500867F7164B2FFC012A487_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m389A7D6883E41E6B1A23C30EE6545E1D34142A92_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m3B5CC425E7FFF6A15EBCCAA63A3EA8671B7F5E9D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m4502F9DF10C4220808F2DFC37FF741897A7B377C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m5DE56B0D92C26BDE3E3E85489B2F5D211EE77547_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m627DC31F64B8F6070AD68945A3D695D6632F884D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m6E70342C1C5415108463FF2FE42458284622DF9D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m7ACF6386688D17F5079705F6A300769A86DF32B3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m84E52BAEB21A7319DA6FE73588D3F0D759BA3F8B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m8555546A2481D9E190B2CFE1DA4E4B18A23EFBD2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m8B4038CEF6E302AF0A213378B6C6F0C2A4714AC1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m8D824C647B3A22108F66614B6F4DE43277B36469_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m90BB8181458016410D0F7F2F9ACA8C1769093DD1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m91E2C50D9F5791F9B0F90AB019AABF8264CCE23D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_m9E4188794C168039A82A1C3D3B0CACE9837EE265_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mA158F581DEB11CBAEB9ACD57D30005BEDE4B63D2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mA1CB13E1C34BA28515C4A5C52F02A77C4BF41ED3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mA29F443433E874CF930E18680C53C9F7195F3DA9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mA3A66BF780B27DF4874F988EEE6543DA23E6C216_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mA4F936144D9D9887F2F77249CCFB765A613CF2C5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mAC8ED1792396CB8483BDD7617FCB87810BFE0270_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mB2B0A84B146D728FD23E417F6A6A0E8B2DCA05D8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mB567C3C68C659FEF48C09F60D385FD7499269741_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mB57C9C91D25ECCC926A9FCE97E7B9CA9A9961F80_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mB86174F16CD4E8CC75DB1B265BA8ADBDC8ABB49A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mBB74E139AC44BE5D0514DCA8FBD05B36C6A17B7E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mCC25335934A0971E3DD462F7B8DA106D42D7EE1E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mD4576B09BECBFE128F03CEC278F406C6206C94C7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mD9505FA9E7B26EA36C23FB6BD7548343E47B7CD3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mD98ABA95ACFF5F6EEB48A1DD24D1A084C93F61EC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mDC5F85069EDA7814A72FE3C87A2EF51437E48897_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mE122B11F5DF5852E6EC097CC400F1C77E3710CD9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mE3AE55B49F3DB26C7C7E6B08E8C0B3478B5B2F7E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mE4920874E9F0479EC9101ECF757E9D403D45A8B9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mE8860EEABC4134918A1044C1485C97D45A272F15_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mEAE2C8BD716828DC02E341B768C08CA62B2484BC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mF849303483A69CB986D3DFAD16462E42866B0601_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mF8C1DBAAF893218E8E196E920188C51FE38916FA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Predicate_1_BeginInvoke_mFFDA63A023301B746B37FA7E947C58CBAD928A3B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Set_1_Add_m3474B51201F7B6207474C63E01833E00D4567EA4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Set_1_Add_mFD3EC38181B88D9589E5CDAA74AF81B8E2D6A36E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Set_1_Find_m413002EA7969B44A4E7056313A98F8A46C3F4CF6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Set_1_Find_mC230B8BA41504EB4F0ECEA107C600A1EBA562B6B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Set_1_InternalGetHashCode_m0C52506E42ABDEEAEC8DD63713FD49831F5D59A0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Set_1_InternalGetHashCode_mE8095A336276E0F8E6A1CE9ED6F0202A815D014B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Set_1_Resize_mDA5450E8D59ACE46B2E0AA2E444AF1553E06BEBF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Set_1_Resize_mF6848DACFFA1797F5CFA72146BD21290923E97F4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Set_1__ctor_m3FF819A5EC6008F1283E3A4B57BE229BCE79504C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Set_1__ctor_m9A478E5A00A823D7896856D965F002845D2CC4FF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Shared_1__ctor_mAFCC38C207B2F85CB2AE05C7C866B8169EAAE24A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Shared_1__ctor_mCF3BC894D80B61B1BE65133DA767D1B3D88933F2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArrayAddInfo_1__ctor_m1A9D946CCFA8A499F78A0BF45E83C3E51E8AD481_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54AGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769AGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m1AB1FDBC0781375CA9B068017B5491D9EE2349E7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArrayFragment_1__ctor_m410909B1376FED0939FF033141563FBDE4FCFD2A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArrayFragment_1__ctor_m6BA064F85BABCC878437B61DDC0A2C4B2715800A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArrayFragment_1_get_Item_m8250124614B9A0DC4F0CAF035E9978BB9990077B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArrayFragment_1_get_Length_mBF5C58CC3C4F7647E4CCA1C246108F532B90DFC9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArrayFragment_1_get_Prev_m5C5B855EDCF34FAE3DAA3A550AFD4BADFAB05B0A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArray_1_Add_m469C4150738A88088CC4259E8A69434FD7FBB7B7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArray_1__ctor_m7A1F6A2953F75F7D0F45688384401330C117232D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SparselyPopulatedArray_1_get_Tail_mA2AA0F79FF9906A900DDCF2B49DC6D435B5A2CB5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SystemThreadingTasks_FutureDebugView_1__ctor_mDB74B9D5A57303DF8AA1CA557EFAD476590D75CA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SystemThreadingTasks_FutureDebugView_1_get_AsyncState_m0D3FE981463F7D5D97232FAB96BE343A1BCC3D6D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SystemThreadingTasks_FutureDebugView_1_get_CancellationPending_m50E1DDDC8FF602F705CF56FA863A79497979B94F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SystemThreadingTasks_FutureDebugView_1_get_CreationOptions_m3A5827B7FED8876042CD32BCC2C3EC614EA1CA7E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SystemThreadingTasks_FutureDebugView_1_get_Exception_m4016937C440FA3A4FCED5F5922B251632B7FD3A6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SystemThreadingTasks_FutureDebugView_1_get_Id_mC5BE695A71E0B17CB62F699E26DA26605F043919_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SystemThreadingTasks_FutureDebugView_1_get_Result_mB187333B3B34BA6E21E7A2E27BF01FCF4B3857EF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SystemThreadingTasks_FutureDebugView_1_get_Status_m029BABAE9B49403CB52EB87424A469212CFB12BE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t System_LazyDebugView_1__ctor_m1636869EA2A7A9AAB65981F91825BEF2AF1CDCAC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t System_LazyDebugView_1_get_IsValueCreated_m6F297C78C8583EF3EE0F2E1171AD02C900163D0D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t System_LazyDebugView_1_get_IsValueFaulted_mE7C6E437833846730D0C9A5040A1C781101072E0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t System_LazyDebugView_1_get_Mode_m9562B46E49883D23DE4CE2FB3320248125AC7879_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t System_LazyDebugView_1_get_Value_m5612E9AE365565A58A964C47FB45C2C57F270725_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1_GetResult_m77546DD82B46E6BAAAA79AB5F1BBCD2567E0F7F8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1_GetResult_m9653F7144240DCB33FCDAC21DE6A89FD12F58BA5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1_GetResult_m9E148849CD4747E1BDD831E4FB2D7ECFA13C11C8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1_UnsafeOnCompleted_m4204CC2DE0200E2EFA43C485022F816D27298975_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1_UnsafeOnCompleted_m682D0FAFEEB8268BB1EC46583C9F93A15999E743_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1_UnsafeOnCompleted_m8D75DA13F52ABD6D5ACD823594F6A5CD43BE2A3E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1_UnsafeOnCompleted_mCD78FE2109BECF3B49ABCC367C9A1304BD390A98_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285CGenerics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskFactory_1__ctor_m24B0BDC6C1997B01AF4AE2076109F12FAE651359_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskFactory_1__ctor_m264753C2342B426F8ABF7184580DCCE10EA239C4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskFactory_1__ctor_m41A6F0A24C1A6B40A42112AEE3C519D55C19B947_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskFactory_1__ctor_m6C8BE3015F8F6264840E6A5665455D5325E44CE5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskFactory_1__ctor_m81726078B90345F0D7A7F23D10FB1DF21C641C07_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskFactory_1__ctor_mCB70351ED04D84754138596AE15CE1BE07662688_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskFactory_1__ctor_mF0CF0F845F7DAD367609B618C7CFB8751BDE0251_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskFactory_1__ctor_mF7EBABF76BCDC881D5A7FAB3EC46335DAEB404BB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_ConfigureAwait_m60DD864D9488EACBA6C087E87E448797C1C8B76B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_ConfigureAwait_mAB7D38722C432C9FB07D4BE72C9B964D5476810A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_GetAwaiter_m9C50610C6F05C1DA9BFA67201CB570F1DE040817_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_GetAwaiter_mACFDCEB6FCFDFCFADAD84AB06A6DC16BAE77948E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_GetResultCore_m7C02E4418D32F519D55AE8DF42759C02688B3953_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_GetResultCore_m8EBE0B8753DCE615F51B03FDC34AF2A84635DD32_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_GetResultCore_mD5A626240E7764CDCE20ECA29E4AD60C72956A96_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_InnerInvoke_m08CF8E48F076997870E45BC7AA065A65AF7FE8BF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_InnerInvoke_m555C0E2791E25E4AD24D7486CB08C1C6C7B2C95B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_InnerInvoke_m5642BBCE224B9FA860D2741A00E0C582057B7A67_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetCanceled_m14A73C54A1A5FDFB9C9A6E5E8E7AFB2166E629A8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetCanceled_m1B45215C2A32476781C0D2F7C5A50ED7EC8A4B33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetCanceled_m734D6894721B115F2DB33F0343824A622226014A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetCanceled_mD749E76D7E6FA3AB266A4EA52A42D86494D4A237_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetCanceled_mDB8ECFE83613228B10AC4F3BC9FE73A8686F85CC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetCanceled_mEE19AE4EEF9946C551126531BEEB24385A75336E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetException_m251DD9D833C7000B3F41D2F4708CA419C64FED94_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetException_m7707A1E606F28CF340B48150E98D0D7EDD44EB69_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetException_mF98ADB3D7D0CA8874536F59F62D2DAE11093AD45_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetResult_m38F5C35F41BC393435AC1CF161290BA66B27D3F6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetResult_m4FE4E07EBB0BA224341A4946FE2C4A813BD8AF64_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_TrySetResult_mFC68BAD2AD67B63EF8E248E06F6C1819EF13A10E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__cctor_m2403A9EF37EF932D4F21DF2D79590ECFEE1BC9F9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__cctor_m2FA7F8AA88B303EAA88BEA4456B41782D1AF6D94_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__cctor_mB6C10F48526D783AC04DA5A0138366BE1074BD03_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m0A3A6225A5B5378BB8B6CB10C248F7904FA91BF4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m0C8160A512539A2BA41821CFD126F247FEDAE7FD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m204E1CC1F2D6FFDB95821FF3E91C102C6CFACB4F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m294345A83D9CAC9B7198CA662BA64B776B5A8B23_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m296739F870489EEFB5452CB0CA922094E914BE89_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m3418D05E6E80990C18478A5EC60290D71B493EB3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m3533BD867272C008F003BC8B763A0803A4C77C47_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m3A414F98FA833365D5DFA9DBBFD275B886CDFEAD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m547E9FC9104980C9A31340A40C5DBD6ED0EF9662_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m6DAC1732E56024E32076DEE1A3863F17635A8944_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m7891CB01EB20826147070EA4906F804ACF5402E0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m853EDDB7B8743654CF53E235439CD8E404BF9DF7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m87E6AE95DBC2E864EC279359D3918B3B51ED8D37_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_m99E038A55993AA4AEB326D8DF036B42506038010_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1__ctor_mB7D5AA53007C0310ED213C0008D89E1942E5F629_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_DebuggerDisplayMethodDescription_m383B1D03069496E6DAD88DC7C13EA8F3307BB144_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_DebuggerDisplayMethodDescription_m6A350CE8815D0723DDFC7D94AAA0FE49074D47F3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_DebuggerDisplayMethodDescription_m80AC347CA4971A596AE432B94DFF5860665A9FAA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_DebuggerDisplayResultDescription_m30CC009921E9D0DFBBA0B29183170DAACB6B3A76_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_DebuggerDisplayResultDescription_m99D5522BDAF99C53DDFE796ED685C58B61A20BD0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_DebuggerDisplayResultDescription_mFFA5DCF72FAEB415244ACCDF76B8E552DC72E233_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_ResultOnSuccess_m3419E1D24207ACE1FF958CBC46316229F42F10E3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_ResultOnSuccess_m843D91F8565061877BE801921DFB8C39112B1FBE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_ResultOnSuccess_mA573D5AD0C0B331815A82D31C4D4928DED52C575_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_Result_m45FAB4C705F7450AA70A3D1AC57F5FE7587D87AE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_Result_m653E95E70604B69D29BC9679AA4588ED82AD01D7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_get_AsyncState_mEE6996D21AD9F92E34A30FA73A7D31A5BCE42657Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_mEC26269ABD71D03847D81120160D2106C2B3D581Generics33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CGetEnumeratorU3Ed__1_MoveNext_m23D3773DBF4D81ABBC236E9DDA007553DC56A04F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CGetEnumeratorU3Ed__1_System_Collections_Generic_IEnumeratorU3CTElementU3E_get_Current_m98DEA03BA71A147ED84ECA2263938A496D057E96_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_m7D5F72F53326D41EF185078584418D121C372D28_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_get_Current_m0597A01A32A7AD6E2F392811D14CF721CFCCCF1D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CGetEnumeratorU3Ed__1_System_IDisposable_Dispose_m01544C5EBD94E647D9097CED71885C0B2569DDCB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CGetEnumeratorU3Ed__1__ctor_mA7BF0B53308C5EAD3A3E8484E4CC12E0226751BE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__64_0_m772E3C0036762E0FE901B45A1BE3F005355C0D0C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__64_0_m933EE40969AAD17F3625204FB1ECF2105BFA3DC3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__64_0_mB4EA2EFED31C2B44F2439B6CC9D956DABE18C579_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__64_0_mBDCCDBE549EA6CA48D2D1F3EB018791C6391166B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_m50CFD009EBEE56D078E9600E0A0706D18977484A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_m560F0C908B4C534050E4AEDF477E06F305ABC000_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_m6505B87C516A190EC07E4861911C3123119AD05A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_mD10BEC9FAFD3552DDB9FF483CCFD7F6699C36D20_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__ctor_m0EB02C13EE46DC6FCC797FA3876DA8AB2FB5FA93_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__ctor_m38624AEE489E484C88102D32E2757B630841CF24_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__ctor_mA23DBC22818F0D9EBFC6BF1DADB358EDA82414B9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__ctor_mB1669AAE5AD5631E68DAA10DB87C9B340EDF2DE5_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 DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; struct GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671; struct GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B; struct SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691; struct SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A; struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; struct Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object struct Il2CppArrayBounds; // System.Array // System.Collections.Generic.Comparer`1<System.Int32> struct Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 : public RuntimeObject { public: public: }; struct Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2_StaticFields, ___defaultComparer_0)); } inline Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.Object> struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 : public RuntimeObject { public: public: }; struct Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7_StaticFields, ___defaultComparer_0)); } inline Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Comparer`1<System.UInt32> struct Comparer_1_t48A8EFAD34AFDD91B93724203AAF84B00763020E : public RuntimeObject { public: public: }; struct Comparer_1_t48A8EFAD34AFDD91B93724203AAF84B00763020E_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_t48A8EFAD34AFDD91B93724203AAF84B00763020E * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t48A8EFAD34AFDD91B93724203AAF84B00763020E_StaticFields, ___defaultComparer_0)); } inline Comparer_1_t48A8EFAD34AFDD91B93724203AAF84B00763020E * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_t48A8EFAD34AFDD91B93724203AAF84B00763020E ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_t48A8EFAD34AFDD91B93724203AAF84B00763020E * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // 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((void**)(&___defaultComparer_0), (void*)value); } }; // 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((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<UnityEngine.Polybrush.RndVec3> struct EqualityComparer_1_t2582F078E4ACE6DD1049AE28AE13402799B77055 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t2582F078E4ACE6DD1049AE28AE13402799B77055_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t2582F078E4ACE6DD1049AE28AE13402799B77055 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t2582F078E4ACE6DD1049AE28AE13402799B77055_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t2582F078E4ACE6DD1049AE28AE13402799B77055 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t2582F078E4ACE6DD1049AE28AE13402799B77055 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t2582F078E4ACE6DD1049AE28AE13402799B77055 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.EmptyArray`1<System.Object> struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26 : public RuntimeObject { public: public: }; struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields { public: // T[] System.EmptyArray`1::Value ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields, ___Value_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_Value_0() const { return ___Value_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.GC struct GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D : public RuntimeObject { public: public: }; struct GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields { public: // System.Object System.GC::EPHEMERON_TOMBSTONE RuntimeObject * ___EPHEMERON_TOMBSTONE_0; public: inline static int32_t get_offset_of_EPHEMERON_TOMBSTONE_0() { return static_cast<int32_t>(offsetof(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields, ___EPHEMERON_TOMBSTONE_0)); } inline RuntimeObject * get_EPHEMERON_TOMBSTONE_0() const { return ___EPHEMERON_TOMBSTONE_0; } inline RuntimeObject ** get_address_of_EPHEMERON_TOMBSTONE_0() { return &___EPHEMERON_TOMBSTONE_0; } inline void set_EPHEMERON_TOMBSTONE_0(RuntimeObject * value) { ___EPHEMERON_TOMBSTONE_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___EPHEMERON_TOMBSTONE_0), (void*)value); } }; // System.Lazy`1<System.Object> struct Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 : public RuntimeObject { public: // System.Object System.Lazy`1::m_boxed RuntimeObject * ___m_boxed_1; // System.Func`1<T> System.Lazy`1::m_valueFactory Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___m_valueFactory_2; // System.Object System.Lazy`1::m_threadSafeObj RuntimeObject * ___m_threadSafeObj_3; public: inline static int32_t get_offset_of_m_boxed_1() { return static_cast<int32_t>(offsetof(Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7, ___m_boxed_1)); } inline RuntimeObject * get_m_boxed_1() const { return ___m_boxed_1; } inline RuntimeObject ** get_address_of_m_boxed_1() { return &___m_boxed_1; } inline void set_m_boxed_1(RuntimeObject * value) { ___m_boxed_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_boxed_1), (void*)value); } inline static int32_t get_offset_of_m_valueFactory_2() { return static_cast<int32_t>(offsetof(Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7, ___m_valueFactory_2)); } inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * get_m_valueFactory_2() const { return ___m_valueFactory_2; } inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 ** get_address_of_m_valueFactory_2() { return &___m_valueFactory_2; } inline void set_m_valueFactory_2(Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * value) { ___m_valueFactory_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_valueFactory_2), (void*)value); } inline static int32_t get_offset_of_m_threadSafeObj_3() { return static_cast<int32_t>(offsetof(Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7, ___m_threadSafeObj_3)); } inline RuntimeObject * get_m_threadSafeObj_3() const { return ___m_threadSafeObj_3; } inline RuntimeObject ** get_address_of_m_threadSafeObj_3() { return &___m_threadSafeObj_3; } inline void set_m_threadSafeObj_3(RuntimeObject * value) { ___m_threadSafeObj_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_threadSafeObj_3), (void*)value); } }; struct Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7_StaticFields { public: // System.Func`1<T> System.Lazy`1::ALREADY_INVOKED_SENTINEL Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * ___ALREADY_INVOKED_SENTINEL_0; public: inline static int32_t get_offset_of_ALREADY_INVOKED_SENTINEL_0() { return static_cast<int32_t>(offsetof(Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7_StaticFields, ___ALREADY_INVOKED_SENTINEL_0)); } inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * get_ALREADY_INVOKED_SENTINEL_0() const { return ___ALREADY_INVOKED_SENTINEL_0; } inline Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 ** get_address_of_ALREADY_INVOKED_SENTINEL_0() { return &___ALREADY_INVOKED_SENTINEL_0; } inline void set_ALREADY_INVOKED_SENTINEL_0(Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * value) { ___ALREADY_INVOKED_SENTINEL_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ALREADY_INVOKED_SENTINEL_0), (void*)value); } }; // System.Linq.EnumerableSorter`1<System.Object> struct EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD : public RuntimeObject { public: public: }; // System.Linq.Lookup`2_<GetEnumerator>d__12<System.Object,System.Object> struct U3CGetEnumeratorU3Ed__12_t57DA3BE58CD06B6576C9EA915CBD67054F68F010 : public RuntimeObject { public: // System.Int32 System.Linq.Lookup`2_<GetEnumerator>d__12::<>1__state int32_t ___U3CU3E1__state_0; // System.Linq.IGrouping`2<TKey,TElement> System.Linq.Lookup`2_<GetEnumerator>d__12::<>2__current RuntimeObject* ___U3CU3E2__current_1; // System.Linq.Lookup`2<TKey,TElement> System.Linq.Lookup`2_<GetEnumerator>d__12::<>4__this Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 * ___U3CU3E4__this_2; // System.Linq.Lookup`2_Grouping<TKey,TElement> System.Linq.Lookup`2_<GetEnumerator>d__12::<g>5__1 Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * ___U3CgU3E5__1_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__12_t57DA3BE58CD06B6576C9EA915CBD67054F68F010, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__12_t57DA3BE58CD06B6576C9EA915CBD67054F68F010, ___U3CU3E2__current_1)); } inline RuntimeObject* get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject* value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__12_t57DA3BE58CD06B6576C9EA915CBD67054F68F010, ___U3CU3E4__this_2)); } inline Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CgU3E5__1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__12_t57DA3BE58CD06B6576C9EA915CBD67054F68F010, ___U3CgU3E5__1_3)); } inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * get_U3CgU3E5__1_3() const { return ___U3CgU3E5__1_3; } inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 ** get_address_of_U3CgU3E5__1_3() { return &___U3CgU3E5__1_3; } inline void set_U3CgU3E5__1_3(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * value) { ___U3CgU3E5__1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CgU3E5__1_3), (void*)value); } }; // System.Linq.Lookup`2_<GetEnumerator>d__12<UnityEngine.Polybrush.RndVec3,System.Int32> struct U3CGetEnumeratorU3Ed__12_tDCB8CC17846167F85FB0C4258EC690ACAB4447B9 : public RuntimeObject { public: // System.Int32 System.Linq.Lookup`2_<GetEnumerator>d__12::<>1__state int32_t ___U3CU3E1__state_0; // System.Linq.IGrouping`2<TKey,TElement> System.Linq.Lookup`2_<GetEnumerator>d__12::<>2__current RuntimeObject* ___U3CU3E2__current_1; // System.Linq.Lookup`2<TKey,TElement> System.Linq.Lookup`2_<GetEnumerator>d__12::<>4__this Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D * ___U3CU3E4__this_2; // System.Linq.Lookup`2_Grouping<TKey,TElement> System.Linq.Lookup`2_<GetEnumerator>d__12::<g>5__1 Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * ___U3CgU3E5__1_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__12_tDCB8CC17846167F85FB0C4258EC690ACAB4447B9, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__12_tDCB8CC17846167F85FB0C4258EC690ACAB4447B9, ___U3CU3E2__current_1)); } inline RuntimeObject* get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject* value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__12_tDCB8CC17846167F85FB0C4258EC690ACAB4447B9, ___U3CU3E4__this_2)); } inline Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CgU3E5__1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__12_tDCB8CC17846167F85FB0C4258EC690ACAB4447B9, ___U3CgU3E5__1_3)); } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * get_U3CgU3E5__1_3() const { return ___U3CgU3E5__1_3; } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC ** get_address_of_U3CgU3E5__1_3() { return &___U3CgU3E5__1_3; } inline void set_U3CgU3E5__1_3(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * value) { ___U3CgU3E5__1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CgU3E5__1_3), (void*)value); } }; // System.Linq.Lookup`2_Grouping_<GetEnumerator>d__7<UnityEngine.Polybrush.RndVec3,System.Int32> struct U3CGetEnumeratorU3Ed__7_t059771C667682D37D3B98CFBC00C27AB09D7070E : public RuntimeObject { public: // System.Int32 System.Linq.Lookup`2_Grouping_<GetEnumerator>d__7::<>1__state int32_t ___U3CU3E1__state_0; // TElement System.Linq.Lookup`2_Grouping_<GetEnumerator>d__7::<>2__current int32_t ___U3CU3E2__current_1; // System.Linq.Lookup`2_Grouping<TKey,TElement> System.Linq.Lookup`2_Grouping_<GetEnumerator>d__7::<>4__this Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * ___U3CU3E4__this_2; // System.Int32 System.Linq.Lookup`2_Grouping_<GetEnumerator>d__7::<i>5__1 int32_t ___U3CiU3E5__1_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__7_t059771C667682D37D3B98CFBC00C27AB09D7070E, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__7_t059771C667682D37D3B98CFBC00C27AB09D7070E, ___U3CU3E2__current_1)); } inline int32_t get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline int32_t* get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(int32_t value) { ___U3CU3E2__current_1 = value; } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__7_t059771C667682D37D3B98CFBC00C27AB09D7070E, ___U3CU3E4__this_2)); } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CiU3E5__1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__7_t059771C667682D37D3B98CFBC00C27AB09D7070E, ___U3CiU3E5__1_3)); } inline int32_t get_U3CiU3E5__1_3() const { return ___U3CiU3E5__1_3; } inline int32_t* get_address_of_U3CiU3E5__1_3() { return &___U3CiU3E5__1_3; } inline void set_U3CiU3E5__1_3(int32_t value) { ___U3CiU3E5__1_3 = value; } }; // System.Linq.Lookup`2_Grouping<System.Object,System.Object> struct Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 : public RuntimeObject { public: // TKey System.Linq.Lookup`2_Grouping::key RuntimeObject * ___key_0; // System.Int32 System.Linq.Lookup`2_Grouping::hashCode int32_t ___hashCode_1; // TElement[] System.Linq.Lookup`2_Grouping::elements ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___elements_2; // System.Int32 System.Linq.Lookup`2_Grouping::count int32_t ___count_3; // System.Linq.Lookup`2_Grouping<TKey,TElement> System.Linq.Lookup`2_Grouping::hashNext Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * ___hashNext_4; // System.Linq.Lookup`2_Grouping<TKey,TElement> System.Linq.Lookup`2_Grouping::next Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * ___next_5; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63, ___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((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_hashCode_1() { return static_cast<int32_t>(offsetof(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63, ___hashCode_1)); } inline int32_t get_hashCode_1() const { return ___hashCode_1; } inline int32_t* get_address_of_hashCode_1() { return &___hashCode_1; } inline void set_hashCode_1(int32_t value) { ___hashCode_1 = value; } inline static int32_t get_offset_of_elements_2() { return static_cast<int32_t>(offsetof(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63, ___elements_2)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_elements_2() const { return ___elements_2; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_elements_2() { return &___elements_2; } inline void set_elements_2(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___elements_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___elements_2), (void*)value); } inline static int32_t get_offset_of_count_3() { return static_cast<int32_t>(offsetof(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63, ___count_3)); } inline int32_t get_count_3() const { return ___count_3; } inline int32_t* get_address_of_count_3() { return &___count_3; } inline void set_count_3(int32_t value) { ___count_3 = value; } inline static int32_t get_offset_of_hashNext_4() { return static_cast<int32_t>(offsetof(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63, ___hashNext_4)); } inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * get_hashNext_4() const { return ___hashNext_4; } inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 ** get_address_of_hashNext_4() { return &___hashNext_4; } inline void set_hashNext_4(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * value) { ___hashNext_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashNext_4), (void*)value); } inline static int32_t get_offset_of_next_5() { return static_cast<int32_t>(offsetof(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63, ___next_5)); } inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * get_next_5() const { return ___next_5; } inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 ** get_address_of_next_5() { return &___next_5; } inline void set_next_5(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * value) { ___next_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_5), (void*)value); } }; // System.Linq.Lookup`2<System.Object,System.Object> struct Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 : public RuntimeObject { public: // System.Collections.Generic.IEqualityComparer`1<TKey> System.Linq.Lookup`2::comparer RuntimeObject* ___comparer_0; // System.Linq.Lookup`2_Grouping<TKey,TElement>[] System.Linq.Lookup`2::groupings GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* ___groupings_1; // System.Linq.Lookup`2_Grouping<TKey,TElement> System.Linq.Lookup`2::lastGrouping Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * ___lastGrouping_2; // System.Int32 System.Linq.Lookup`2::count int32_t ___count_3; public: inline static int32_t get_offset_of_comparer_0() { return static_cast<int32_t>(offsetof(Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4, ___comparer_0)); } inline RuntimeObject* get_comparer_0() const { return ___comparer_0; } inline RuntimeObject** get_address_of_comparer_0() { return &___comparer_0; } inline void set_comparer_0(RuntimeObject* value) { ___comparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_0), (void*)value); } inline static int32_t get_offset_of_groupings_1() { return static_cast<int32_t>(offsetof(Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4, ___groupings_1)); } inline GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* get_groupings_1() const { return ___groupings_1; } inline GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671** get_address_of_groupings_1() { return &___groupings_1; } inline void set_groupings_1(GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* value) { ___groupings_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___groupings_1), (void*)value); } inline static int32_t get_offset_of_lastGrouping_2() { return static_cast<int32_t>(offsetof(Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4, ___lastGrouping_2)); } inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * get_lastGrouping_2() const { return ___lastGrouping_2; } inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 ** get_address_of_lastGrouping_2() { return &___lastGrouping_2; } inline void set_lastGrouping_2(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * value) { ___lastGrouping_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastGrouping_2), (void*)value); } inline static int32_t get_offset_of_count_3() { return static_cast<int32_t>(offsetof(Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4, ___count_3)); } inline int32_t get_count_3() const { return ___count_3; } inline int32_t* get_address_of_count_3() { return &___count_3; } inline void set_count_3(int32_t value) { ___count_3 = value; } }; // System.Linq.Lookup`2<UnityEngine.Polybrush.RndVec3,System.Int32> struct Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D : public RuntimeObject { public: // System.Collections.Generic.IEqualityComparer`1<TKey> System.Linq.Lookup`2::comparer RuntimeObject* ___comparer_0; // System.Linq.Lookup`2_Grouping<TKey,TElement>[] System.Linq.Lookup`2::groupings GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* ___groupings_1; // System.Linq.Lookup`2_Grouping<TKey,TElement> System.Linq.Lookup`2::lastGrouping Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * ___lastGrouping_2; // System.Int32 System.Linq.Lookup`2::count int32_t ___count_3; public: inline static int32_t get_offset_of_comparer_0() { return static_cast<int32_t>(offsetof(Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D, ___comparer_0)); } inline RuntimeObject* get_comparer_0() const { return ___comparer_0; } inline RuntimeObject** get_address_of_comparer_0() { return &___comparer_0; } inline void set_comparer_0(RuntimeObject* value) { ___comparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_0), (void*)value); } inline static int32_t get_offset_of_groupings_1() { return static_cast<int32_t>(offsetof(Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D, ___groupings_1)); } inline GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* get_groupings_1() const { return ___groupings_1; } inline GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B** get_address_of_groupings_1() { return &___groupings_1; } inline void set_groupings_1(GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* value) { ___groupings_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___groupings_1), (void*)value); } inline static int32_t get_offset_of_lastGrouping_2() { return static_cast<int32_t>(offsetof(Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D, ___lastGrouping_2)); } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * get_lastGrouping_2() const { return ___lastGrouping_2; } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC ** get_address_of_lastGrouping_2() { return &___lastGrouping_2; } inline void set_lastGrouping_2(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * value) { ___lastGrouping_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastGrouping_2), (void*)value); } inline static int32_t get_offset_of_count_3() { return static_cast<int32_t>(offsetof(Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D, ___count_3)); } inline int32_t get_count_3() const { return ___count_3; } inline int32_t* get_address_of_count_3() { return &___count_3; } inline void set_count_3(int32_t value) { ___count_3 = value; } }; // System.Linq.OrderedEnumerable`1<System.Object> struct OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D : public RuntimeObject { public: // System.Collections.Generic.IEnumerable`1<TElement> System.Linq.OrderedEnumerable`1::source RuntimeObject* ___source_0; public: inline static int32_t get_offset_of_source_0() { return static_cast<int32_t>(offsetof(OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D, ___source_0)); } inline RuntimeObject* get_source_0() const { return ___source_0; } inline RuntimeObject** get_address_of_source_0() { return &___source_0; } inline void set_source_0(RuntimeObject* value) { ___source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___source_0), (void*)value); } }; // System.Linq.Set`1<System.Int32> struct Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 : public RuntimeObject { public: // System.Int32[] System.Linq.Set`1::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Linq.Set`1_Slot<TElement>[] System.Linq.Set`1::slots SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* ___slots_1; // System.Int32 System.Linq.Set`1::count int32_t ___count_2; // System.Int32 System.Linq.Set`1::freeList int32_t ___freeList_3; // System.Collections.Generic.IEqualityComparer`1<TElement> System.Linq.Set`1::comparer RuntimeObject* ___comparer_4; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_slots_1() { return static_cast<int32_t>(offsetof(Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382, ___slots_1)); } inline SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* get_slots_1() const { return ___slots_1; } inline SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691** get_address_of_slots_1() { return &___slots_1; } inline void set_slots_1(SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* value) { ___slots_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___slots_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382, ___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_freeList_3() { return static_cast<int32_t>(offsetof(Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382, ___freeList_3)); } inline int32_t get_freeList_3() const { return ___freeList_3; } inline int32_t* get_address_of_freeList_3() { return &___freeList_3; } inline void set_freeList_3(int32_t value) { ___freeList_3 = value; } inline static int32_t get_offset_of_comparer_4() { return static_cast<int32_t>(offsetof(Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382, ___comparer_4)); } inline RuntimeObject* get_comparer_4() const { return ___comparer_4; } inline RuntimeObject** get_address_of_comparer_4() { return &___comparer_4; } inline void set_comparer_4(RuntimeObject* value) { ___comparer_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_4), (void*)value); } }; // System.Linq.Set`1<System.Object> struct Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 : public RuntimeObject { public: // System.Int32[] System.Linq.Set`1::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Linq.Set`1_Slot<TElement>[] System.Linq.Set`1::slots SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* ___slots_1; // System.Int32 System.Linq.Set`1::count int32_t ___count_2; // System.Int32 System.Linq.Set`1::freeList int32_t ___freeList_3; // System.Collections.Generic.IEqualityComparer`1<TElement> System.Linq.Set`1::comparer RuntimeObject* ___comparer_4; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_slots_1() { return static_cast<int32_t>(offsetof(Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409, ___slots_1)); } inline SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* get_slots_1() const { return ___slots_1; } inline SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A** get_address_of_slots_1() { return &___slots_1; } inline void set_slots_1(SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* value) { ___slots_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___slots_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409, ___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_freeList_3() { return static_cast<int32_t>(offsetof(Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409, ___freeList_3)); } inline int32_t get_freeList_3() const { return ___freeList_3; } inline int32_t* get_address_of_freeList_3() { return &___freeList_3; } inline void set_freeList_3(int32_t value) { ___freeList_3 = value; } inline static int32_t get_offset_of_comparer_4() { return static_cast<int32_t>(offsetof(Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409, ___comparer_4)); } inline RuntimeObject* get_comparer_4() const { return ___comparer_4; } inline RuntimeObject** get_address_of_comparer_4() { return &___comparer_4; } inline void set_comparer_4(RuntimeObject* value) { ___comparer_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_4), (void*)value); } }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // 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((void**)(&___TrueTask_0), (void*)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((void**)(&___FalseTask_1), (void*)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((void**)(&___Int32Tasks_2), (void*)value); } }; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object> struct ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 : public RuntimeObject { public: // System.Runtime.CompilerServices.Ephemeron[] System.Runtime.CompilerServices.ConditionalWeakTable`2::data EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* ___data_0; // System.Object System.Runtime.CompilerServices.ConditionalWeakTable`2::_lock RuntimeObject * ____lock_1; // System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable`2::size int32_t ___size_2; public: inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3, ___data_0)); } inline EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* get_data_0() const { return ___data_0; } inline EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10** get_address_of_data_0() { return &___data_0; } inline void set_data_0(EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* value) { ___data_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_0), (void*)value); } inline static int32_t get_offset_of__lock_1() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3, ____lock_1)); } inline RuntimeObject * get__lock_1() const { return ____lock_1; } inline RuntimeObject ** get_address_of__lock_1() { return &____lock_1; } inline void set__lock_1(RuntimeObject * value) { ____lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____lock_1), (void*)value); } inline static int32_t get_offset_of_size_2() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3, ___size_2)); } inline int32_t get_size_2() const { return ___size_2; } inline int32_t* get_address_of_size_2() { return &___size_2; } inline void set_size_2(int32_t value) { ___size_2 = value; } }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.System_LazyDebugView`1<System.Object> struct System_LazyDebugView_1_t90CC9A5347F59FD5AC8F840F4052F6D2FCEFC4D5 : public RuntimeObject { public: // System.Lazy`1<T> System.System_LazyDebugView`1::m_lazy Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 * ___m_lazy_0; public: inline static int32_t get_offset_of_m_lazy_0() { return static_cast<int32_t>(offsetof(System_LazyDebugView_1_t90CC9A5347F59FD5AC8F840F4052F6D2FCEFC4D5, ___m_lazy_0)); } inline Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 * get_m_lazy_0() const { return ___m_lazy_0; } inline Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 ** get_address_of_m_lazy_0() { return &___m_lazy_0; } inline void set_m_lazy_0(Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 * value) { ___m_lazy_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_lazy_0), (void*)value); } }; // System.Threading.AsyncLocal`1<System.Object> struct AsyncLocal_1_tB3967B9BB037A3D4C437E7F0773AFF68802723D9 : public RuntimeObject { public: // System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<T>> System.Threading.AsyncLocal`1::m_valueChangedHandler Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 * ___m_valueChangedHandler_0; public: inline static int32_t get_offset_of_m_valueChangedHandler_0() { return static_cast<int32_t>(offsetof(AsyncLocal_1_tB3967B9BB037A3D4C437E7F0773AFF68802723D9, ___m_valueChangedHandler_0)); } inline Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 * get_m_valueChangedHandler_0() const { return ___m_valueChangedHandler_0; } inline Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 ** get_address_of_m_valueChangedHandler_0() { return &___m_valueChangedHandler_0; } inline void set_m_valueChangedHandler_0(Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 * value) { ___m_valueChangedHandler_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_valueChangedHandler_0), (void*)value); } }; // System.Threading.SparselyPopulatedArray`1<System.Object> struct SparselyPopulatedArray_1_t93BFED0AE376D58EC4ECF029A2E97C5D7CA80395 : public RuntimeObject { public: // System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArray`1::m_tail SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * ___m_tail_0; public: inline static int32_t get_offset_of_m_tail_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArray_1_t93BFED0AE376D58EC4ECF029A2E97C5D7CA80395, ___m_tail_0)); } inline SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * get_m_tail_0() const { return ___m_tail_0; } inline SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 ** get_address_of_m_tail_0() { return &___m_tail_0; } inline void set_m_tail_0(SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * value) { ___m_tail_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_tail_0), (void*)value); } }; // System.Threading.Tasks.Shared`1<System.Object> struct Shared_1_t3C840CE94736A1E7956649E5C170991F41D4066A : public RuntimeObject { public: // T System.Threading.Tasks.Shared`1::Value RuntimeObject * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Shared_1_t3C840CE94736A1E7956649E5C170991F41D4066A, ___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((void**)(&___Value_0), (void*)value); } }; // System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object> struct SystemThreadingTasks_FutureDebugView_1_tACDCA09E414A7545E866CBB23AAFD88303AFC295 : public RuntimeObject { public: // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1::m_task Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(SystemThreadingTasks_FutureDebugView_1_tACDCA09E414A7545E866CBB23AAFD88303AFC295, ___m_task_0)); } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Threading.Tasks.Task`1_<>c<System.Boolean> struct U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5 : public RuntimeObject { public: public: }; struct U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5_StaticFields { public: // System.Threading.Tasks.Task`1_<>c<TResult> System.Threading.Tasks.Task`1_<>c::<>9 U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5 * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.Threading.Tasks.Task`1_<>c<System.Int32> struct U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5 : public RuntimeObject { public: public: }; struct U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5_StaticFields { public: // System.Threading.Tasks.Task`1_<>c<TResult> System.Threading.Tasks.Task`1_<>c::<>9 U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5 * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.Threading.Tasks.Task`1_<>c<System.Object> struct U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4 : public RuntimeObject { public: public: }; struct U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4_StaticFields { public: // System.Threading.Tasks.Task`1_<>c<TResult> System.Threading.Tasks.Task`1_<>c::<>9 U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4 * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.Threading.Tasks.Task`1_<>c<System.Threading.Tasks.VoidTaskResult> struct U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893 : public RuntimeObject { public: public: }; struct U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893_StaticFields { public: // System.Threading.Tasks.Task`1_<>c<TResult> System.Threading.Tasks.Task`1_<>c::<>9 U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893 * ___U3CU3E9_0; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } }; // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; // Cinemachine.CameraState_CustomBlendable struct CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253 { public: // UnityEngine.Object Cinemachine.CameraState_CustomBlendable::m_Custom Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___m_Custom_0; // System.Single Cinemachine.CameraState_CustomBlendable::m_Weight float ___m_Weight_1; public: inline static int32_t get_offset_of_m_Custom_0() { return static_cast<int32_t>(offsetof(CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253, ___m_Custom_0)); } inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_m_Custom_0() const { return ___m_Custom_0; } inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_m_Custom_0() { return &___m_Custom_0; } inline void set_m_Custom_0(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value) { ___m_Custom_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Custom_0), (void*)value); } inline static int32_t get_offset_of_m_Weight_1() { return static_cast<int32_t>(offsetof(CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253, ___m_Weight_1)); } inline float get_m_Weight_1() const { return ___m_Weight_1; } inline float* get_address_of_m_Weight_1() { return &___m_Weight_1; } inline void set_m_Weight_1(float value) { ___m_Weight_1 = value; } }; // Cinemachine.CinemachineClearShot_Pair struct Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC { public: // System.Int32 Cinemachine.CinemachineClearShot_Pair::a int32_t ___a_0; // System.Single Cinemachine.CinemachineClearShot_Pair::b float ___b_1; public: inline static int32_t get_offset_of_a_0() { return static_cast<int32_t>(offsetof(Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC, ___a_0)); } inline int32_t get_a_0() const { return ___a_0; } inline int32_t* get_address_of_a_0() { return &___a_0; } inline void set_a_0(int32_t value) { ___a_0 = value; } inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC, ___b_1)); } inline float get_b_1() const { return ___b_1; } inline float* get_address_of_b_1() { return &___b_1; } inline void set_b_1(float value) { ___b_1 = value; } }; // Cinemachine.CinemachineStateDrivenCamera_HashPair struct HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F { public: // System.Int32 Cinemachine.CinemachineStateDrivenCamera_HashPair::parentHash int32_t ___parentHash_0; // System.Int32 Cinemachine.CinemachineStateDrivenCamera_HashPair::hash int32_t ___hash_1; public: inline static int32_t get_offset_of_parentHash_0() { return static_cast<int32_t>(offsetof(HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F, ___parentHash_0)); } inline int32_t get_parentHash_0() const { return ___parentHash_0; } inline int32_t* get_address_of_parentHash_0() { return &___parentHash_0; } inline void set_parentHash_0(int32_t value) { ___parentHash_0 = value; } inline static int32_t get_offset_of_hash_1() { return static_cast<int32_t>(offsetof(HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F, ___hash_1)); } inline int32_t get_hash_1() const { return ___hash_1; } inline int32_t* get_address_of_hash_1() { return &___hash_1; } inline void set_hash_1(int32_t value) { ___hash_1 = value; } }; // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Char struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.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((void**)(&___DaysToMonth365_29), (void*)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((void**)(&___DaysToMonth366_30), (void*)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; } }; // System.Decimal struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value); } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearPositiveZero_13 = value; } }; // System.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; } }; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; // System.Int16 struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Linq.Buffer`1<System.Object> struct Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C { public: // TElement[] System.Linq.Buffer`1::items ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items_0; // System.Int32 System.Linq.Buffer`1::count int32_t ___count_1; public: inline static int32_t get_offset_of_items_0() { return static_cast<int32_t>(offsetof(Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C, ___items_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_items_0() const { return ___items_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_items_0() { return &___items_0; } inline void set_items_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___items_0), (void*)value); } inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C, ___count_1)); } inline int32_t get_count_1() const { return ___count_1; } inline int32_t* get_address_of_count_1() { return &___count_1; } inline void set_count_1(int32_t value) { ___count_1 = value; } }; // System.Linq.EnumerableSorter`2<System.Object,System.Int32> struct EnumerableSorter_2_t56609821E158442D191275EA8CF7C841B1779643 : public EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD { public: // System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ___keySelector_0; // System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer RuntimeObject* ___comparer_1; // System.Boolean System.Linq.EnumerableSorter`2::descending bool ___descending_2; // System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * ___next_3; // TKey[] System.Linq.EnumerableSorter`2::keys Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___keys_4; public: inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t56609821E158442D191275EA8CF7C841B1779643, ___keySelector_0)); } inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get_keySelector_0() const { return ___keySelector_0; } inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of_keySelector_0() { return &___keySelector_0; } inline void set_keySelector_0(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value) { ___keySelector_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value); } inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t56609821E158442D191275EA8CF7C841B1779643, ___comparer_1)); } inline RuntimeObject* get_comparer_1() const { return ___comparer_1; } inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; } inline void set_comparer_1(RuntimeObject* value) { ___comparer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value); } inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t56609821E158442D191275EA8CF7C841B1779643, ___descending_2)); } inline bool get_descending_2() const { return ___descending_2; } inline bool* get_address_of_descending_2() { return &___descending_2; } inline void set_descending_2(bool value) { ___descending_2 = value; } inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t56609821E158442D191275EA8CF7C841B1779643, ___next_3)); } inline EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * get_next_3() const { return ___next_3; } inline EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD ** get_address_of_next_3() { return &___next_3; } inline void set_next_3(EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * value) { ___next_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value); } inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t56609821E158442D191275EA8CF7C841B1779643, ___keys_4)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_keys_4() const { return ___keys_4; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_keys_4() { return &___keys_4; } inline void set_keys_4(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___keys_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value); } }; // System.Linq.EnumerableSorter`2<System.Object,System.Object> struct EnumerableSorter_2_t19205173CCB93530513BCCBE85B39471E531BB13 : public EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD { public: // System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ___keySelector_0; // System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer RuntimeObject* ___comparer_1; // System.Boolean System.Linq.EnumerableSorter`2::descending bool ___descending_2; // System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * ___next_3; // TKey[] System.Linq.EnumerableSorter`2::keys ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys_4; public: inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t19205173CCB93530513BCCBE85B39471E531BB13, ___keySelector_0)); } inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * get_keySelector_0() const { return ___keySelector_0; } inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 ** get_address_of_keySelector_0() { return &___keySelector_0; } inline void set_keySelector_0(Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * value) { ___keySelector_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value); } inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t19205173CCB93530513BCCBE85B39471E531BB13, ___comparer_1)); } inline RuntimeObject* get_comparer_1() const { return ___comparer_1; } inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; } inline void set_comparer_1(RuntimeObject* value) { ___comparer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value); } inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t19205173CCB93530513BCCBE85B39471E531BB13, ___descending_2)); } inline bool get_descending_2() const { return ___descending_2; } inline bool* get_address_of_descending_2() { return &___descending_2; } inline void set_descending_2(bool value) { ___descending_2 = value; } inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t19205173CCB93530513BCCBE85B39471E531BB13, ___next_3)); } inline EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * get_next_3() const { return ___next_3; } inline EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD ** get_address_of_next_3() { return &___next_3; } inline void set_next_3(EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * value) { ___next_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value); } inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t19205173CCB93530513BCCBE85B39471E531BB13, ___keys_4)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_keys_4() const { return ___keys_4; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_keys_4() { return &___keys_4; } inline void set_keys_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___keys_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value); } }; // System.Linq.EnumerableSorter`2<System.Object,System.UInt32> struct EnumerableSorter_2_tA25F536FE7E0D85BA572003C5F59EA94E409EF41 : public EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD { public: // System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * ___keySelector_0; // System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer RuntimeObject* ___comparer_1; // System.Boolean System.Linq.EnumerableSorter`2::descending bool ___descending_2; // System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * ___next_3; // TKey[] System.Linq.EnumerableSorter`2::keys UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___keys_4; public: inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tA25F536FE7E0D85BA572003C5F59EA94E409EF41, ___keySelector_0)); } inline Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * get_keySelector_0() const { return ___keySelector_0; } inline Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A ** get_address_of_keySelector_0() { return &___keySelector_0; } inline void set_keySelector_0(Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * value) { ___keySelector_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value); } inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tA25F536FE7E0D85BA572003C5F59EA94E409EF41, ___comparer_1)); } inline RuntimeObject* get_comparer_1() const { return ___comparer_1; } inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; } inline void set_comparer_1(RuntimeObject* value) { ___comparer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value); } inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tA25F536FE7E0D85BA572003C5F59EA94E409EF41, ___descending_2)); } inline bool get_descending_2() const { return ___descending_2; } inline bool* get_address_of_descending_2() { return &___descending_2; } inline void set_descending_2(bool value) { ___descending_2 = value; } inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tA25F536FE7E0D85BA572003C5F59EA94E409EF41, ___next_3)); } inline EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * get_next_3() const { return ___next_3; } inline EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD ** get_address_of_next_3() { return &___next_3; } inline void set_next_3(EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * value) { ___next_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value); } inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tA25F536FE7E0D85BA572003C5F59EA94E409EF41, ___keys_4)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_keys_4() const { return ___keys_4; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_keys_4() { return &___keys_4; } inline void set_keys_4(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___keys_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value); } }; // System.Linq.OrderedEnumerable`2<System.Object,System.Int32> struct OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A : public OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D { public: // System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`2::parent OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * ___parent_1; // System.Func`2<TElement,TKey> System.Linq.OrderedEnumerable`2::keySelector Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ___keySelector_2; // System.Collections.Generic.IComparer`1<TKey> System.Linq.OrderedEnumerable`2::comparer RuntimeObject* ___comparer_3; // System.Boolean System.Linq.OrderedEnumerable`2::descending bool ___descending_4; public: inline static int32_t get_offset_of_parent_1() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A, ___parent_1)); } inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * get_parent_1() const { return ___parent_1; } inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D ** get_address_of_parent_1() { return &___parent_1; } inline void set_parent_1(OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * value) { ___parent_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_1), (void*)value); } inline static int32_t get_offset_of_keySelector_2() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A, ___keySelector_2)); } inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get_keySelector_2() const { return ___keySelector_2; } inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of_keySelector_2() { return &___keySelector_2; } inline void set_keySelector_2(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value) { ___keySelector_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keySelector_2), (void*)value); } inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A, ___comparer_3)); } inline RuntimeObject* get_comparer_3() const { return ___comparer_3; } inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; } inline void set_comparer_3(RuntimeObject* value) { ___comparer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_3), (void*)value); } inline static int32_t get_offset_of_descending_4() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A, ___descending_4)); } inline bool get_descending_4() const { return ___descending_4; } inline bool* get_address_of_descending_4() { return &___descending_4; } inline void set_descending_4(bool value) { ___descending_4 = value; } }; // System.Linq.OrderedEnumerable`2<System.Object,System.Object> struct OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B : public OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D { public: // System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`2::parent OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * ___parent_1; // System.Func`2<TElement,TKey> System.Linq.OrderedEnumerable`2::keySelector Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ___keySelector_2; // System.Collections.Generic.IComparer`1<TKey> System.Linq.OrderedEnumerable`2::comparer RuntimeObject* ___comparer_3; // System.Boolean System.Linq.OrderedEnumerable`2::descending bool ___descending_4; public: inline static int32_t get_offset_of_parent_1() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B, ___parent_1)); } inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * get_parent_1() const { return ___parent_1; } inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D ** get_address_of_parent_1() { return &___parent_1; } inline void set_parent_1(OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * value) { ___parent_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_1), (void*)value); } inline static int32_t get_offset_of_keySelector_2() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B, ___keySelector_2)); } inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * get_keySelector_2() const { return ___keySelector_2; } inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 ** get_address_of_keySelector_2() { return &___keySelector_2; } inline void set_keySelector_2(Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * value) { ___keySelector_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keySelector_2), (void*)value); } inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B, ___comparer_3)); } inline RuntimeObject* get_comparer_3() const { return ___comparer_3; } inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; } inline void set_comparer_3(RuntimeObject* value) { ___comparer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_3), (void*)value); } inline static int32_t get_offset_of_descending_4() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B, ___descending_4)); } inline bool get_descending_4() const { return ___descending_4; } inline bool* get_address_of_descending_4() { return &___descending_4; } inline void set_descending_4(bool value) { ___descending_4 = value; } }; // System.Linq.OrderedEnumerable`2<System.Object,System.UInt32> struct OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 : public OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D { public: // System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`2::parent OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * ___parent_1; // System.Func`2<TElement,TKey> System.Linq.OrderedEnumerable`2::keySelector Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * ___keySelector_2; // System.Collections.Generic.IComparer`1<TKey> System.Linq.OrderedEnumerable`2::comparer RuntimeObject* ___comparer_3; // System.Boolean System.Linq.OrderedEnumerable`2::descending bool ___descending_4; public: inline static int32_t get_offset_of_parent_1() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5, ___parent_1)); } inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * get_parent_1() const { return ___parent_1; } inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D ** get_address_of_parent_1() { return &___parent_1; } inline void set_parent_1(OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * value) { ___parent_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_1), (void*)value); } inline static int32_t get_offset_of_keySelector_2() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5, ___keySelector_2)); } inline Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * get_keySelector_2() const { return ___keySelector_2; } inline Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A ** get_address_of_keySelector_2() { return &___keySelector_2; } inline void set_keySelector_2(Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * value) { ___keySelector_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keySelector_2), (void*)value); } inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5, ___comparer_3)); } inline RuntimeObject* get_comparer_3() const { return ___comparer_3; } inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; } inline void set_comparer_3(RuntimeObject* value) { ___comparer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_3), (void*)value); } inline static int32_t get_offset_of_descending_4() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5, ___descending_4)); } inline bool get_descending_4() const { return ___descending_4; } inline bool* get_address_of_descending_4() { return &___descending_4; } inline void set_descending_4(bool value) { ___descending_4 = value; } }; // System.Linq.Set`1_Slot<System.Int32> struct Slot_t00B862D6E9168F7117904379E1E17AA652CF3260 { public: // System.Int32 System.Linq.Set`1_Slot::hashCode int32_t ___hashCode_0; // TElement System.Linq.Set`1_Slot::value int32_t ___value_1; // System.Int32 System.Linq.Set`1_Slot::next int32_t ___next_2; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t00B862D6E9168F7117904379E1E17AA652CF3260, ___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_value_1() { return static_cast<int32_t>(offsetof(Slot_t00B862D6E9168F7117904379E1E17AA652CF3260, ___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; } inline static int32_t get_offset_of_next_2() { return static_cast<int32_t>(offsetof(Slot_t00B862D6E9168F7117904379E1E17AA652CF3260, ___next_2)); } inline int32_t get_next_2() const { return ___next_2; } inline int32_t* get_address_of_next_2() { return &___next_2; } inline void set_next_2(int32_t value) { ___next_2 = value; } }; // System.Linq.Set`1_Slot<System.Object> struct Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 { public: // System.Int32 System.Linq.Set`1_Slot::hashCode int32_t ___hashCode_0; // TElement System.Linq.Set`1_Slot::value RuntimeObject * ___value_1; // System.Int32 System.Linq.Set`1_Slot::next int32_t ___next_2; public: inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55, ___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_value_1() { return static_cast<int32_t>(offsetof(Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55, ___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((void**)(&___value_1), (void*)value); } inline static int32_t get_offset_of_next_2() { return static_cast<int32_t>(offsetof(Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55, ___next_2)); } inline int32_t get_next_2() const { return ___next_2; } inline int32_t* get_address_of_next_2() { return &___next_2; } inline void set_next_2(int32_t value) { ___next_2 = value; } }; // System.Nullable`1<System.Boolean> struct Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 { public: // T System.Nullable`1::value bool ___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_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___value_0)); } inline bool get_value_0() const { return ___value_0; } inline bool* get_address_of_value_0() { return &___value_0; } inline void set_value_0(bool value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Nullable`1<System.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; } }; // System.Nullable`1<System.Single> struct Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 { public: // T System.Nullable`1::value float ___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_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0, ___value_0)); } inline float get_value_0() const { return ___value_0; } inline float* get_address_of_value_0() { return &___value_0; } inline void set_value_0(float value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; // System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 { public: // System.Runtime.CompilerServices.IAsyncStateMachine System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_stateMachine RuntimeObject* ___m_stateMachine_0; // System.Action System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_defaultContextAction Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___m_defaultContextAction_1; public: inline static int32_t get_offset_of_m_stateMachine_0() { return static_cast<int32_t>(offsetof(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01, ___m_stateMachine_0)); } inline RuntimeObject* get_m_stateMachine_0() const { return ___m_stateMachine_0; } inline RuntimeObject** get_address_of_m_stateMachine_0() { return &___m_stateMachine_0; } inline void set_m_stateMachine_0(RuntimeObject* value) { ___m_stateMachine_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stateMachine_0), (void*)value); } inline static int32_t get_offset_of_m_defaultContextAction_1() { return static_cast<int32_t>(offsetof(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01, ___m_defaultContextAction_1)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_m_defaultContextAction_1() const { return ___m_defaultContextAction_1; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_m_defaultContextAction_1() { return &___m_defaultContextAction_1; } inline void set_m_defaultContextAction_1(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___m_defaultContextAction_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_defaultContextAction_1), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01_marshaled_pinvoke { RuntimeObject* ___m_stateMachine_0; Il2CppMethodPointer ___m_defaultContextAction_1; }; // Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore struct AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01_marshaled_com { RuntimeObject* ___m_stateMachine_0; Il2CppMethodPointer ___m_defaultContextAction_1; }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Boolean> struct ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_task Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065, ___m_task_0)); } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Int32> struct ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_task Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E, ___m_task_0)); } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Object> struct ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_task Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E, ___m_task_0)); } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult> struct ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_task Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___m_task_0; // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter::m_continueOnCapturedContext bool ___m_continueOnCapturedContext_1; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4, ___m_task_0)); } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4, ___m_continueOnCapturedContext_1)); } inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; } inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; } inline void set_m_continueOnCapturedContext_1(bool value) { ___m_continueOnCapturedContext_1 = value; } }; // 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((void**)(&___key_0), (void*)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((void**)(&___value_1), (void*)value); } }; // 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; }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean> struct TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090, ___m_task_0)); } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32> struct TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24, ___m_task_0)); } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Object> struct TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977, ___m_task_0)); } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_m_task_0() const { return ___m_task_0; } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult> struct TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.TaskAwaiter`1::m_task Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___m_task_0; public: inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE, ___m_task_0)); } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * get_m_task_0() const { return ___m_task_0; } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 ** get_address_of_m_task_0() { return &___m_task_0; } inline void set_m_task_0(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * value) { ___m_task_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_0), (void*)value); } }; // System.RuntimeType_ListBuilder`1<System.Object> struct ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 { public: // T[] System.RuntimeType_ListBuilder`1::_items ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_0; // T System.RuntimeType_ListBuilder`1::_item RuntimeObject * ____item_1; // System.Int32 System.RuntimeType_ListBuilder`1::_count int32_t ____count_2; // System.Int32 System.RuntimeType_ListBuilder`1::_capacity int32_t ____capacity_3; public: inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0, ____items_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_0() const { return ____items_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_0() { return &____items_0; } inline void set__items_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ____items_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value); } inline static int32_t get_offset_of__item_1() { return static_cast<int32_t>(offsetof(ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0, ____item_1)); } inline RuntimeObject * get__item_1() const { return ____item_1; } inline RuntimeObject ** get_address_of__item_1() { return &____item_1; } inline void set__item_1(RuntimeObject * value) { ____item_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____item_1), (void*)value); } inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0, ____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__capacity_3() { return static_cast<int32_t>(offsetof(ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0, ____capacity_3)); } inline int32_t get__capacity_3() const { return ____capacity_3; } inline int32_t* get_address_of__capacity_3() { return &____capacity_3; } inline void set__capacity_3(int32_t value) { ____capacity_3 = value; } }; // System.SByte struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF { public: // System.SByte System.SByte::m_value int8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); } inline int8_t get_m_value_0() const { return ___m_value_0; } inline int8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int8_t value) { ___m_value_0 = value; } }; // System.Single struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1 { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.Threading.AsyncLocalValueChangedArgs`1<System.Object> struct AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D { public: // T System.Threading.AsyncLocalValueChangedArgs`1::<PreviousValue>k__BackingField RuntimeObject * ___U3CPreviousValueU3Ek__BackingField_0; // T System.Threading.AsyncLocalValueChangedArgs`1::<CurrentValue>k__BackingField RuntimeObject * ___U3CCurrentValueU3Ek__BackingField_1; // System.Boolean System.Threading.AsyncLocalValueChangedArgs`1::<ThreadContextChanged>k__BackingField bool ___U3CThreadContextChangedU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CPreviousValueU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D, ___U3CPreviousValueU3Ek__BackingField_0)); } inline RuntimeObject * get_U3CPreviousValueU3Ek__BackingField_0() const { return ___U3CPreviousValueU3Ek__BackingField_0; } inline RuntimeObject ** get_address_of_U3CPreviousValueU3Ek__BackingField_0() { return &___U3CPreviousValueU3Ek__BackingField_0; } inline void set_U3CPreviousValueU3Ek__BackingField_0(RuntimeObject * value) { ___U3CPreviousValueU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CPreviousValueU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CCurrentValueU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D, ___U3CCurrentValueU3Ek__BackingField_1)); } inline RuntimeObject * get_U3CCurrentValueU3Ek__BackingField_1() const { return ___U3CCurrentValueU3Ek__BackingField_1; } inline RuntimeObject ** get_address_of_U3CCurrentValueU3Ek__BackingField_1() { return &___U3CCurrentValueU3Ek__BackingField_1; } inline void set_U3CCurrentValueU3Ek__BackingField_1(RuntimeObject * value) { ___U3CCurrentValueU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCurrentValueU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CThreadContextChangedU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D, ___U3CThreadContextChangedU3Ek__BackingField_2)); } inline bool get_U3CThreadContextChangedU3Ek__BackingField_2() const { return ___U3CThreadContextChangedU3Ek__BackingField_2; } inline bool* get_address_of_U3CThreadContextChangedU3Ek__BackingField_2() { return &___U3CThreadContextChangedU3Ek__BackingField_2; } inline void set_U3CThreadContextChangedU3Ek__BackingField_2(bool value) { ___U3CThreadContextChangedU3Ek__BackingField_2 = value; } }; // 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((void**)(&___m_source_0), (void*)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((void**)(&___s_ActionToActionObjShunt_1), (void*)value); } }; // 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; }; // System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object> struct SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B { public: // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * ___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_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B, ___m_source_0)); } inline SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * get_m_source_0() const { return ___m_source_0; } inline SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 ** get_address_of_m_source_0() { return &___m_source_0; } inline void set_m_source_0(SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * value) { ___m_source_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value); } inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B, ___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; } }; // 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((void**)(&___m_source_0), (void*)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; } }; // System.Threading.Tasks.VoidTaskResult struct VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 { public: union { struct { }; uint8_t VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40__padding[1]; }; public: }; // System.UInt16 struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // System.UIntPtr struct UIntPtr_t { public: // System.Void* System.UIntPtr::_pointer void* ____pointer_1; public: inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); } inline void* get__pointer_1() const { return ____pointer_1; } inline void** get_address_of__pointer_1() { return &____pointer_1; } inline void set__pointer_1(void* value) { ____pointer_1 = value; } }; struct UIntPtr_t_StaticFields { public: // System.UIntPtr System.UIntPtr::Zero uintptr_t ___Zero_0; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); } inline uintptr_t get_Zero_0() const { return ___Zero_0; } inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(uintptr_t value) { ___Zero_0 = value; } }; // System.ValueTuple`2<System.Int32,System.Object> struct ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 { public: // T1 System.ValueTuple`2::Item1 int32_t ___Item1_0; // T2 System.ValueTuple`2::Item2 RuntimeObject * ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82, ___Item1_0)); } inline int32_t get_Item1_0() const { return ___Item1_0; } inline int32_t* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(int32_t value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82, ___Item2_1)); } inline RuntimeObject * get_Item2_1() const { return ___Item2_1; } inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(RuntimeObject * value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value); } }; // System.ValueTuple`2<System.Object,System.Int32> struct ValueTuple_2_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 { public: // T1 System.ValueTuple`2::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`2::Item2 int32_t ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t49E1CF58944760BDF49EEF378C9DF1044ECC4793, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t49E1CF58944760BDF49EEF378C9DF1044ECC4793, ___Item2_1)); } inline int32_t get_Item2_1() const { return ___Item2_1; } inline int32_t* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(int32_t value) { ___Item2_1 = value; } }; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; // TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_SpriteFrame struct SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 { public: // System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_SpriteFrame::x float ___x_0; // System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_SpriteFrame::y float ___y_1; // System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_SpriteFrame::w float ___w_2; // System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_SpriteFrame::h float ___h_3; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_w_2() { return static_cast<int32_t>(offsetof(SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496, ___w_2)); } inline float get_w_2() const { return ___w_2; } inline float* get_address_of_w_2() { return &___w_2; } inline void set_w_2(float value) { ___w_2 = value; } inline static int32_t get_offset_of_h_3() { return static_cast<int32_t>(offsetof(SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496, ___h_3)); } inline float get_h_3() const { return ___h_3; } inline float* get_address_of_h_3() { return &___h_3; } inline void set_h_3(float value) { ___h_3 = value; } }; // TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_SpriteSize struct SpriteSize_t30BACB7B2D95781D65F3936CEB88450F00B3F277 { public: // System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_SpriteSize::w float ___w_0; // System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_SpriteSize::h float ___h_1; public: inline static int32_t get_offset_of_w_0() { return static_cast<int32_t>(offsetof(SpriteSize_t30BACB7B2D95781D65F3936CEB88450F00B3F277, ___w_0)); } inline float get_w_0() const { return ___w_0; } inline float* get_address_of_w_0() { return &___w_0; } inline void set_w_0(float value) { ___w_0 = value; } inline static int32_t get_offset_of_h_1() { return static_cast<int32_t>(offsetof(SpriteSize_t30BACB7B2D95781D65F3936CEB88450F00B3F277, ___h_1)); } inline float get_h_1() const { return ___h_1; } inline float* get_address_of_h_1() { return &___h_1; } inline void set_h_1(float value) { ___h_1 = value; } }; // UnityEngine.AnimatorClipInfo struct AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 { public: // System.Int32 UnityEngine.AnimatorClipInfo::m_ClipInstanceID int32_t ___m_ClipInstanceID_0; // System.Single UnityEngine.AnimatorClipInfo::m_Weight float ___m_Weight_1; public: inline static int32_t get_offset_of_m_ClipInstanceID_0() { return static_cast<int32_t>(offsetof(AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180, ___m_ClipInstanceID_0)); } inline int32_t get_m_ClipInstanceID_0() const { return ___m_ClipInstanceID_0; } inline int32_t* get_address_of_m_ClipInstanceID_0() { return &___m_ClipInstanceID_0; } inline void set_m_ClipInstanceID_0(int32_t value) { ___m_ClipInstanceID_0 = value; } inline static int32_t get_offset_of_m_Weight_1() { return static_cast<int32_t>(offsetof(AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180, ___m_Weight_1)); } inline float get_m_Weight_1() const { return ___m_Weight_1; } inline float* get_address_of_m_Weight_1() { return &___m_Weight_1; } inline void set_m_Weight_1(float value) { ___m_Weight_1 = value; } }; // 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((void**)(&___callback_1), (void*)value); } }; // 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; }; // UnityEngine.Color struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 { public: // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; public: inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___r_0)); } inline float get_r_0() const { return ___r_0; } inline float* get_address_of_r_0() { return &___r_0; } inline void set_r_0(float value) { ___r_0 = value; } inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___g_1)); } inline float get_g_1() const { return ___g_1; } inline float* get_address_of_g_1() { return &___g_1; } inline void set_g_1(float value) { ___g_1 = value; } inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___b_2)); } inline float get_b_2() const { return ___b_2; } inline float* get_address_of_b_2() { return &___b_2; } inline void set_b_2(float value) { ___b_2 = value; } inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___a_3)); } inline float get_a_3() const { return ___a_3; } inline float* get_address_of_a_3() { return &___a_3; } inline void set_a_3(float value) { ___a_3 = value; } }; // UnityEngine.Color32 struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 { public: union { #pragma pack(push, tp, 1) struct { // System.Int32 UnityEngine.Color32::rgba int32_t ___rgba_0; }; #pragma pack(pop, tp) struct { int32_t ___rgba_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Byte UnityEngine.Color32::r uint8_t ___r_1; }; #pragma pack(pop, tp) struct { uint8_t ___r_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___g_2_OffsetPadding[1]; // System.Byte UnityEngine.Color32::g uint8_t ___g_2; }; #pragma pack(pop, tp) struct { char ___g_2_OffsetPadding_forAlignmentOnly[1]; uint8_t ___g_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___b_3_OffsetPadding[2]; // System.Byte UnityEngine.Color32::b uint8_t ___b_3; }; #pragma pack(pop, tp) struct { char ___b_3_OffsetPadding_forAlignmentOnly[2]; uint8_t ___b_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___a_4_OffsetPadding[3]; // System.Byte UnityEngine.Color32::a uint8_t ___a_4; }; #pragma pack(pop, tp) struct { char ___a_4_OffsetPadding_forAlignmentOnly[3]; uint8_t ___a_4_forAlignmentOnly; }; }; public: inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___rgba_0)); } inline int32_t get_rgba_0() const { return ___rgba_0; } inline int32_t* get_address_of_rgba_0() { return &___rgba_0; } inline void set_rgba_0(int32_t value) { ___rgba_0 = value; } inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___r_1)); } inline uint8_t get_r_1() const { return ___r_1; } inline uint8_t* get_address_of_r_1() { return &___r_1; } inline void set_r_1(uint8_t value) { ___r_1 = value; } inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___g_2)); } inline uint8_t get_g_2() const { return ___g_2; } inline uint8_t* get_address_of_g_2() { return &___g_2; } inline void set_g_2(uint8_t value) { ___g_2 = value; } inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___b_3)); } inline uint8_t get_b_3() const { return ___b_3; } inline uint8_t* get_address_of_b_3() { return &___b_3; } inline void set_b_3(uint8_t value) { ___b_3 = value; } inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___a_4)); } inline uint8_t get_a_4() const { return ___a_4; } inline uint8_t* get_address_of_a_4() { return &___a_4; } inline void set_a_4(uint8_t value) { ___a_4 = value; } }; // UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3 struct Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D { public: // System.Single UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3::X float ___X_1; // System.Single UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3::Y float ___Y_2; // System.Single UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3::Z float ___Z_3; public: inline static int32_t get_offset_of_X_1() { return static_cast<int32_t>(offsetof(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D, ___X_1)); } inline float get_X_1() const { return ___X_1; } inline float* get_address_of_X_1() { return &___X_1; } inline void set_X_1(float value) { ___X_1 = value; } inline static int32_t get_offset_of_Y_2() { return static_cast<int32_t>(offsetof(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D, ___Y_2)); } inline float get_Y_2() const { return ___Y_2; } inline float* get_address_of_Y_2() { return &___Y_2; } inline void set_Y_2(float value) { ___Y_2 = value; } inline static int32_t get_offset_of_Z_3() { return static_cast<int32_t>(offsetof(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D, ___Z_3)); } inline float get_Z_3() const { return ___Z_3; } inline float* get_address_of_Z_3() { return &___Z_3; } inline void set_Z_3(float value) { ___Z_3 = value; } }; struct Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D_StaticFields { public: // UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3 UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3::Zero Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D ___Zero_0; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D_StaticFields, ___Zero_0)); } inline Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D get_Zero_0() const { return ___Zero_0; } inline Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D value) { ___Zero_0 = value; } }; // UnityEngine.GradientAlphaKey struct GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 { public: // System.Single UnityEngine.GradientAlphaKey::alpha float ___alpha_0; // System.Single UnityEngine.GradientAlphaKey::time float ___time_1; public: inline static int32_t get_offset_of_alpha_0() { return static_cast<int32_t>(offsetof(GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82, ___alpha_0)); } inline float get_alpha_0() const { return ___alpha_0; } inline float* get_address_of_alpha_0() { return &___alpha_0; } inline void set_alpha_0(float value) { ___alpha_0 = value; } inline static int32_t get_offset_of_time_1() { return static_cast<int32_t>(offsetof(GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82, ___time_1)); } inline float get_time_1() const { return ___time_1; } inline float* get_address_of_time_1() { return &___time_1; } inline void set_time_1(float value) { ___time_1 = value; } }; // UnityEngine.Polybrush.PolyEdge struct PolyEdge_t349F3835ED426193A29214740854732ADB209A35 { public: // System.Int32 UnityEngine.Polybrush.PolyEdge::x int32_t ___x_0; // System.Int32 UnityEngine.Polybrush.PolyEdge::y int32_t ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(PolyEdge_t349F3835ED426193A29214740854732ADB209A35, ___x_0)); } inline int32_t get_x_0() const { return ___x_0; } inline int32_t* get_address_of_x_0() { return &___x_0; } inline void set_x_0(int32_t value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(PolyEdge_t349F3835ED426193A29214740854732ADB209A35, ___y_1)); } inline int32_t get_y_1() const { return ___y_1; } inline int32_t* get_address_of_y_1() { return &___y_1; } inline void set_y_1(int32_t value) { ___y_1 = value; } }; // UnityEngine.Polybrush.RndVec3 struct RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 { public: // System.Single UnityEngine.Polybrush.RndVec3::x float ___x_0; // System.Single UnityEngine.Polybrush.RndVec3::y float ___y_1; // System.Single UnityEngine.Polybrush.RndVec3::z float ___z_2; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } }; // UnityEngine.Quaternion struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value) { ___identityQuaternion_4 = value; } }; // UnityEngine.Rendering.DepthState struct DepthState_t8C699747E66773A90F87252A8E978924050C7F12 { public: // System.Byte UnityEngine.Rendering.DepthState::m_WriteEnabled uint8_t ___m_WriteEnabled_0; // System.SByte UnityEngine.Rendering.DepthState::m_CompareFunction int8_t ___m_CompareFunction_1; public: inline static int32_t get_offset_of_m_WriteEnabled_0() { return static_cast<int32_t>(offsetof(DepthState_t8C699747E66773A90F87252A8E978924050C7F12, ___m_WriteEnabled_0)); } inline uint8_t get_m_WriteEnabled_0() const { return ___m_WriteEnabled_0; } inline uint8_t* get_address_of_m_WriteEnabled_0() { return &___m_WriteEnabled_0; } inline void set_m_WriteEnabled_0(uint8_t value) { ___m_WriteEnabled_0 = value; } inline static int32_t get_offset_of_m_CompareFunction_1() { return static_cast<int32_t>(offsetof(DepthState_t8C699747E66773A90F87252A8E978924050C7F12, ___m_CompareFunction_1)); } inline int8_t get_m_CompareFunction_1() const { return ___m_CompareFunction_1; } inline int8_t* get_address_of_m_CompareFunction_1() { return &___m_CompareFunction_1; } inline void set_m_CompareFunction_1(int8_t value) { ___m_CompareFunction_1 = value; } }; // UnityEngine.Rendering.RenderQueueRange struct RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A { public: // System.Int32 UnityEngine.Rendering.RenderQueueRange::m_LowerBound int32_t ___m_LowerBound_0; // System.Int32 UnityEngine.Rendering.RenderQueueRange::m_UpperBound int32_t ___m_UpperBound_1; public: inline static int32_t get_offset_of_m_LowerBound_0() { return static_cast<int32_t>(offsetof(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A, ___m_LowerBound_0)); } inline int32_t get_m_LowerBound_0() const { return ___m_LowerBound_0; } inline int32_t* get_address_of_m_LowerBound_0() { return &___m_LowerBound_0; } inline void set_m_LowerBound_0(int32_t value) { ___m_LowerBound_0 = value; } inline static int32_t get_offset_of_m_UpperBound_1() { return static_cast<int32_t>(offsetof(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A, ___m_UpperBound_1)); } inline int32_t get_m_UpperBound_1() const { return ___m_UpperBound_1; } inline int32_t* get_address_of_m_UpperBound_1() { return &___m_UpperBound_1; } inline void set_m_UpperBound_1(int32_t value) { ___m_UpperBound_1 = value; } }; struct RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A_StaticFields { public: // System.Int32 UnityEngine.Rendering.RenderQueueRange::minimumBound int32_t ___minimumBound_3; // System.Int32 UnityEngine.Rendering.RenderQueueRange::maximumBound int32_t ___maximumBound_5; public: inline static int32_t get_offset_of_minimumBound_3() { return static_cast<int32_t>(offsetof(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A_StaticFields, ___minimumBound_3)); } inline int32_t get_minimumBound_3() const { return ___minimumBound_3; } inline int32_t* get_address_of_minimumBound_3() { return &___minimumBound_3; } inline void set_minimumBound_3(int32_t value) { ___minimumBound_3 = value; } inline static int32_t get_offset_of_maximumBound_5() { return static_cast<int32_t>(offsetof(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A_StaticFields, ___maximumBound_5)); } inline int32_t get_maximumBound_5() const { return ___maximumBound_5; } inline int32_t* get_address_of_maximumBound_5() { return &___maximumBound_5; } inline void set_maximumBound_5(int32_t value) { ___maximumBound_5 = value; } }; // UnityEngine.Rendering.RenderTargetBlendState struct RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE { public: // System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_WriteMask uint8_t ___m_WriteMask_0; // System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_SourceColorBlendMode uint8_t ___m_SourceColorBlendMode_1; // System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_DestinationColorBlendMode uint8_t ___m_DestinationColorBlendMode_2; // System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_SourceAlphaBlendMode uint8_t ___m_SourceAlphaBlendMode_3; // System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_DestinationAlphaBlendMode uint8_t ___m_DestinationAlphaBlendMode_4; // System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_ColorBlendOperation uint8_t ___m_ColorBlendOperation_5; // System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_AlphaBlendOperation uint8_t ___m_AlphaBlendOperation_6; // System.Byte UnityEngine.Rendering.RenderTargetBlendState::m_Padding uint8_t ___m_Padding_7; public: inline static int32_t get_offset_of_m_WriteMask_0() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_WriteMask_0)); } inline uint8_t get_m_WriteMask_0() const { return ___m_WriteMask_0; } inline uint8_t* get_address_of_m_WriteMask_0() { return &___m_WriteMask_0; } inline void set_m_WriteMask_0(uint8_t value) { ___m_WriteMask_0 = value; } inline static int32_t get_offset_of_m_SourceColorBlendMode_1() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_SourceColorBlendMode_1)); } inline uint8_t get_m_SourceColorBlendMode_1() const { return ___m_SourceColorBlendMode_1; } inline uint8_t* get_address_of_m_SourceColorBlendMode_1() { return &___m_SourceColorBlendMode_1; } inline void set_m_SourceColorBlendMode_1(uint8_t value) { ___m_SourceColorBlendMode_1 = value; } inline static int32_t get_offset_of_m_DestinationColorBlendMode_2() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_DestinationColorBlendMode_2)); } inline uint8_t get_m_DestinationColorBlendMode_2() const { return ___m_DestinationColorBlendMode_2; } inline uint8_t* get_address_of_m_DestinationColorBlendMode_2() { return &___m_DestinationColorBlendMode_2; } inline void set_m_DestinationColorBlendMode_2(uint8_t value) { ___m_DestinationColorBlendMode_2 = value; } inline static int32_t get_offset_of_m_SourceAlphaBlendMode_3() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_SourceAlphaBlendMode_3)); } inline uint8_t get_m_SourceAlphaBlendMode_3() const { return ___m_SourceAlphaBlendMode_3; } inline uint8_t* get_address_of_m_SourceAlphaBlendMode_3() { return &___m_SourceAlphaBlendMode_3; } inline void set_m_SourceAlphaBlendMode_3(uint8_t value) { ___m_SourceAlphaBlendMode_3 = value; } inline static int32_t get_offset_of_m_DestinationAlphaBlendMode_4() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_DestinationAlphaBlendMode_4)); } inline uint8_t get_m_DestinationAlphaBlendMode_4() const { return ___m_DestinationAlphaBlendMode_4; } inline uint8_t* get_address_of_m_DestinationAlphaBlendMode_4() { return &___m_DestinationAlphaBlendMode_4; } inline void set_m_DestinationAlphaBlendMode_4(uint8_t value) { ___m_DestinationAlphaBlendMode_4 = value; } inline static int32_t get_offset_of_m_ColorBlendOperation_5() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_ColorBlendOperation_5)); } inline uint8_t get_m_ColorBlendOperation_5() const { return ___m_ColorBlendOperation_5; } inline uint8_t* get_address_of_m_ColorBlendOperation_5() { return &___m_ColorBlendOperation_5; } inline void set_m_ColorBlendOperation_5(uint8_t value) { ___m_ColorBlendOperation_5 = value; } inline static int32_t get_offset_of_m_AlphaBlendOperation_6() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_AlphaBlendOperation_6)); } inline uint8_t get_m_AlphaBlendOperation_6() const { return ___m_AlphaBlendOperation_6; } inline uint8_t* get_address_of_m_AlphaBlendOperation_6() { return &___m_AlphaBlendOperation_6; } inline void set_m_AlphaBlendOperation_6(uint8_t value) { ___m_AlphaBlendOperation_6 = value; } inline static int32_t get_offset_of_m_Padding_7() { return static_cast<int32_t>(offsetof(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE, ___m_Padding_7)); } inline uint8_t get_m_Padding_7() const { return ___m_Padding_7; } inline uint8_t* get_address_of_m_Padding_7() { return &___m_Padding_7; } inline void set_m_Padding_7(uint8_t value) { ___m_Padding_7 = value; } }; // UnityEngine.Rendering.ShaderTagId struct ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 { public: // System.Int32 UnityEngine.Rendering.ShaderTagId::m_Id int32_t ___m_Id_1; public: inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940, ___m_Id_1)); } inline int32_t get_m_Id_1() const { return ___m_Id_1; } inline int32_t* get_address_of_m_Id_1() { return &___m_Id_1; } inline void set_m_Id_1(int32_t value) { ___m_Id_1 = value; } }; struct ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_StaticFields { public: // UnityEngine.Rendering.ShaderTagId UnityEngine.Rendering.ShaderTagId::none ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 ___none_0; public: inline static int32_t get_offset_of_none_0() { return static_cast<int32_t>(offsetof(ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_StaticFields, ___none_0)); } inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 get_none_0() const { return ___none_0; } inline ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 * get_address_of_none_0() { return &___none_0; } inline void set_none_0(ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 value) { ___none_0 = value; } }; // UnityEngine.Rendering.StencilState struct StencilState_t46E35B038A8E436BD616755432326977CB3E5E78 { public: // System.Byte UnityEngine.Rendering.StencilState::m_Enabled uint8_t ___m_Enabled_0; // System.Byte UnityEngine.Rendering.StencilState::m_ReadMask uint8_t ___m_ReadMask_1; // System.Byte UnityEngine.Rendering.StencilState::m_WriteMask uint8_t ___m_WriteMask_2; // System.Byte UnityEngine.Rendering.StencilState::m_Padding uint8_t ___m_Padding_3; // System.Byte UnityEngine.Rendering.StencilState::m_CompareFunctionFront uint8_t ___m_CompareFunctionFront_4; // System.Byte UnityEngine.Rendering.StencilState::m_PassOperationFront uint8_t ___m_PassOperationFront_5; // System.Byte UnityEngine.Rendering.StencilState::m_FailOperationFront uint8_t ___m_FailOperationFront_6; // System.Byte UnityEngine.Rendering.StencilState::m_ZFailOperationFront uint8_t ___m_ZFailOperationFront_7; // System.Byte UnityEngine.Rendering.StencilState::m_CompareFunctionBack uint8_t ___m_CompareFunctionBack_8; // System.Byte UnityEngine.Rendering.StencilState::m_PassOperationBack uint8_t ___m_PassOperationBack_9; // System.Byte UnityEngine.Rendering.StencilState::m_FailOperationBack uint8_t ___m_FailOperationBack_10; // System.Byte UnityEngine.Rendering.StencilState::m_ZFailOperationBack uint8_t ___m_ZFailOperationBack_11; public: inline static int32_t get_offset_of_m_Enabled_0() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_Enabled_0)); } inline uint8_t get_m_Enabled_0() const { return ___m_Enabled_0; } inline uint8_t* get_address_of_m_Enabled_0() { return &___m_Enabled_0; } inline void set_m_Enabled_0(uint8_t value) { ___m_Enabled_0 = value; } inline static int32_t get_offset_of_m_ReadMask_1() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_ReadMask_1)); } inline uint8_t get_m_ReadMask_1() const { return ___m_ReadMask_1; } inline uint8_t* get_address_of_m_ReadMask_1() { return &___m_ReadMask_1; } inline void set_m_ReadMask_1(uint8_t value) { ___m_ReadMask_1 = value; } inline static int32_t get_offset_of_m_WriteMask_2() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_WriteMask_2)); } inline uint8_t get_m_WriteMask_2() const { return ___m_WriteMask_2; } inline uint8_t* get_address_of_m_WriteMask_2() { return &___m_WriteMask_2; } inline void set_m_WriteMask_2(uint8_t value) { ___m_WriteMask_2 = value; } inline static int32_t get_offset_of_m_Padding_3() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_Padding_3)); } inline uint8_t get_m_Padding_3() const { return ___m_Padding_3; } inline uint8_t* get_address_of_m_Padding_3() { return &___m_Padding_3; } inline void set_m_Padding_3(uint8_t value) { ___m_Padding_3 = value; } inline static int32_t get_offset_of_m_CompareFunctionFront_4() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_CompareFunctionFront_4)); } inline uint8_t get_m_CompareFunctionFront_4() const { return ___m_CompareFunctionFront_4; } inline uint8_t* get_address_of_m_CompareFunctionFront_4() { return &___m_CompareFunctionFront_4; } inline void set_m_CompareFunctionFront_4(uint8_t value) { ___m_CompareFunctionFront_4 = value; } inline static int32_t get_offset_of_m_PassOperationFront_5() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_PassOperationFront_5)); } inline uint8_t get_m_PassOperationFront_5() const { return ___m_PassOperationFront_5; } inline uint8_t* get_address_of_m_PassOperationFront_5() { return &___m_PassOperationFront_5; } inline void set_m_PassOperationFront_5(uint8_t value) { ___m_PassOperationFront_5 = value; } inline static int32_t get_offset_of_m_FailOperationFront_6() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_FailOperationFront_6)); } inline uint8_t get_m_FailOperationFront_6() const { return ___m_FailOperationFront_6; } inline uint8_t* get_address_of_m_FailOperationFront_6() { return &___m_FailOperationFront_6; } inline void set_m_FailOperationFront_6(uint8_t value) { ___m_FailOperationFront_6 = value; } inline static int32_t get_offset_of_m_ZFailOperationFront_7() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_ZFailOperationFront_7)); } inline uint8_t get_m_ZFailOperationFront_7() const { return ___m_ZFailOperationFront_7; } inline uint8_t* get_address_of_m_ZFailOperationFront_7() { return &___m_ZFailOperationFront_7; } inline void set_m_ZFailOperationFront_7(uint8_t value) { ___m_ZFailOperationFront_7 = value; } inline static int32_t get_offset_of_m_CompareFunctionBack_8() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_CompareFunctionBack_8)); } inline uint8_t get_m_CompareFunctionBack_8() const { return ___m_CompareFunctionBack_8; } inline uint8_t* get_address_of_m_CompareFunctionBack_8() { return &___m_CompareFunctionBack_8; } inline void set_m_CompareFunctionBack_8(uint8_t value) { ___m_CompareFunctionBack_8 = value; } inline static int32_t get_offset_of_m_PassOperationBack_9() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_PassOperationBack_9)); } inline uint8_t get_m_PassOperationBack_9() const { return ___m_PassOperationBack_9; } inline uint8_t* get_address_of_m_PassOperationBack_9() { return &___m_PassOperationBack_9; } inline void set_m_PassOperationBack_9(uint8_t value) { ___m_PassOperationBack_9 = value; } inline static int32_t get_offset_of_m_FailOperationBack_10() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_FailOperationBack_10)); } inline uint8_t get_m_FailOperationBack_10() const { return ___m_FailOperationBack_10; } inline uint8_t* get_address_of_m_FailOperationBack_10() { return &___m_FailOperationBack_10; } inline void set_m_FailOperationBack_10(uint8_t value) { ___m_FailOperationBack_10 = value; } inline static int32_t get_offset_of_m_ZFailOperationBack_11() { return static_cast<int32_t>(offsetof(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78, ___m_ZFailOperationBack_11)); } inline uint8_t get_m_ZFailOperationBack_11() const { return ___m_ZFailOperationBack_11; } inline uint8_t* get_address_of_m_ZFailOperationBack_11() { return &___m_ZFailOperationBack_11; } inline void set_m_ZFailOperationBack_11(uint8_t value) { ___m_ZFailOperationBack_11 = value; } }; // UnityEngine.TextCore.GlyphRect struct GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C { public: // System.Int32 UnityEngine.TextCore.GlyphRect::m_X int32_t ___m_X_0; // System.Int32 UnityEngine.TextCore.GlyphRect::m_Y int32_t ___m_Y_1; // System.Int32 UnityEngine.TextCore.GlyphRect::m_Width int32_t ___m_Width_2; // System.Int32 UnityEngine.TextCore.GlyphRect::m_Height int32_t ___m_Height_3; public: inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_X_0)); } inline int32_t get_m_X_0() const { return ___m_X_0; } inline int32_t* get_address_of_m_X_0() { return &___m_X_0; } inline void set_m_X_0(int32_t value) { ___m_X_0 = value; } inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_Y_1)); } inline int32_t get_m_Y_1() const { return ___m_Y_1; } inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; } inline void set_m_Y_1(int32_t value) { ___m_Y_1 = value; } inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_Width_2)); } inline int32_t get_m_Width_2() const { return ___m_Width_2; } inline int32_t* get_address_of_m_Width_2() { return &___m_Width_2; } inline void set_m_Width_2(int32_t value) { ___m_Width_2 = value; } inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C, ___m_Height_3)); } inline int32_t get_m_Height_3() const { return ___m_Height_3; } inline int32_t* get_address_of_m_Height_3() { return &___m_Height_3; } inline void set_m_Height_3(int32_t value) { ___m_Height_3 = value; } }; struct GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_StaticFields { public: // UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.GlyphRect::s_ZeroGlyphRect GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___s_ZeroGlyphRect_4; public: inline static int32_t get_offset_of_s_ZeroGlyphRect_4() { return static_cast<int32_t>(offsetof(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_StaticFields, ___s_ZeroGlyphRect_4)); } inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C get_s_ZeroGlyphRect_4() const { return ___s_ZeroGlyphRect_4; } inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * get_address_of_s_ZeroGlyphRect_4() { return &___s_ZeroGlyphRect_4; } inline void set_s_ZeroGlyphRect_4(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value) { ___s_ZeroGlyphRect_4 = value; } }; // UnityEngine.Timeline.IntervalTreeNode struct IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF { public: // System.Int64 UnityEngine.Timeline.IntervalTreeNode::center int64_t ___center_0; // System.Int32 UnityEngine.Timeline.IntervalTreeNode::first int32_t ___first_1; // System.Int32 UnityEngine.Timeline.IntervalTreeNode::last int32_t ___last_2; // System.Int32 UnityEngine.Timeline.IntervalTreeNode::left int32_t ___left_3; // System.Int32 UnityEngine.Timeline.IntervalTreeNode::right int32_t ___right_4; public: inline static int32_t get_offset_of_center_0() { return static_cast<int32_t>(offsetof(IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF, ___center_0)); } inline int64_t get_center_0() const { return ___center_0; } inline int64_t* get_address_of_center_0() { return &___center_0; } inline void set_center_0(int64_t value) { ___center_0 = value; } inline static int32_t get_offset_of_first_1() { return static_cast<int32_t>(offsetof(IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF, ___first_1)); } inline int32_t get_first_1() const { return ___first_1; } inline int32_t* get_address_of_first_1() { return &___first_1; } inline void set_first_1(int32_t value) { ___first_1 = value; } inline static int32_t get_offset_of_last_2() { return static_cast<int32_t>(offsetof(IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF, ___last_2)); } inline int32_t get_last_2() const { return ___last_2; } inline int32_t* get_address_of_last_2() { return &___last_2; } inline void set_last_2(int32_t value) { ___last_2 = value; } inline static int32_t get_offset_of_left_3() { return static_cast<int32_t>(offsetof(IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF, ___left_3)); } inline int32_t get_left_3() const { return ___left_3; } inline int32_t* get_address_of_left_3() { return &___left_3; } inline void set_left_3(int32_t value) { ___left_3 = value; } inline static int32_t get_offset_of_right_4() { return static_cast<int32_t>(offsetof(IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF, ___right_4)); } inline int32_t get_right_4() const { return ___right_4; } inline int32_t* get_address_of_right_4() { return &___right_4; } inline void set_right_4(int32_t value) { ___right_4 = value; } }; // UnityEngine.Timeline.IntervalTree`1_Entry<System.Object> struct Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8 { public: // System.Int64 UnityEngine.Timeline.IntervalTree`1_Entry::intervalStart int64_t ___intervalStart_0; // System.Int64 UnityEngine.Timeline.IntervalTree`1_Entry::intervalEnd int64_t ___intervalEnd_1; // T UnityEngine.Timeline.IntervalTree`1_Entry::item RuntimeObject * ___item_2; public: inline static int32_t get_offset_of_intervalStart_0() { return static_cast<int32_t>(offsetof(Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8, ___intervalStart_0)); } inline int64_t get_intervalStart_0() const { return ___intervalStart_0; } inline int64_t* get_address_of_intervalStart_0() { return &___intervalStart_0; } inline void set_intervalStart_0(int64_t value) { ___intervalStart_0 = value; } inline static int32_t get_offset_of_intervalEnd_1() { return static_cast<int32_t>(offsetof(Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8, ___intervalEnd_1)); } inline int64_t get_intervalEnd_1() const { return ___intervalEnd_1; } inline int64_t* get_address_of_intervalEnd_1() { return &___intervalEnd_1; } inline void set_intervalEnd_1(int64_t value) { ___intervalEnd_1 = value; } inline static int32_t get_offset_of_item_2() { return static_cast<int32_t>(offsetof(Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8, ___item_2)); } inline RuntimeObject * get_item_2() const { return ___item_2; } inline RuntimeObject ** get_address_of_item_2() { return &___item_2; } inline void set_item_2(RuntimeObject * value) { ___item_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___item_2), (void*)value); } }; // UnityEngine.UIElements.FocusController_FocusedElement struct FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 { public: // UnityEngine.UIElements.VisualElement UnityEngine.UIElements.FocusController_FocusedElement::m_SubTreeRoot VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * ___m_SubTreeRoot_0; // UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController_FocusedElement::m_FocusedElement Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * ___m_FocusedElement_1; public: inline static int32_t get_offset_of_m_SubTreeRoot_0() { return static_cast<int32_t>(offsetof(FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070, ___m_SubTreeRoot_0)); } inline VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * get_m_SubTreeRoot_0() const { return ___m_SubTreeRoot_0; } inline VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 ** get_address_of_m_SubTreeRoot_0() { return &___m_SubTreeRoot_0; } inline void set_m_SubTreeRoot_0(VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * value) { ___m_SubTreeRoot_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SubTreeRoot_0), (void*)value); } inline static int32_t get_offset_of_m_FocusedElement_1() { return static_cast<int32_t>(offsetof(FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070, ___m_FocusedElement_1)); } inline Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * get_m_FocusedElement_1() const { return ___m_FocusedElement_1; } inline Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B ** get_address_of_m_FocusedElement_1() { return &___m_FocusedElement_1; } inline void set_m_FocusedElement_1(Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * value) { ___m_FocusedElement_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_FocusedElement_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UIElements.FocusController/FocusedElement struct FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_marshaled_pinvoke { VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * ___m_SubTreeRoot_0; Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * ___m_FocusedElement_1; }; // Native definition for COM marshalling of UnityEngine.UIElements.FocusController/FocusedElement struct FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_marshaled_com { VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * ___m_SubTreeRoot_0; Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * ___m_FocusedElement_1; }; // UnityEngine.UILineInfo struct UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 { public: // System.Int32 UnityEngine.UILineInfo::startCharIdx int32_t ___startCharIdx_0; // System.Int32 UnityEngine.UILineInfo::height int32_t ___height_1; // System.Single UnityEngine.UILineInfo::topY float ___topY_2; // System.Single UnityEngine.UILineInfo::leading float ___leading_3; public: inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___startCharIdx_0)); } inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; } inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; } inline void set_startCharIdx_0(int32_t value) { ___startCharIdx_0 = value; } inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___height_1)); } inline int32_t get_height_1() const { return ___height_1; } inline int32_t* get_address_of_height_1() { return &___height_1; } inline void set_height_1(int32_t value) { ___height_1 = value; } inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___topY_2)); } inline float get_topY_2() const { return ___topY_2; } inline float* get_address_of_topY_2() { return &___topY_2; } inline void set_topY_2(float value) { ___topY_2 = value; } inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___leading_3)); } inline float get_leading_3() const { return ___leading_3; } inline float* get_address_of_leading_3() { return &___leading_3; } inline void set_leading_3(float value) { ___leading_3 = value; } }; // 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((void**)(&___m_DelagateCallback_0), (void*)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((void**)(&___m_DelagateState_1), (void*)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((void**)(&___m_WaitHandle_2), (void*)value); } }; // 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; }; // UnityEngine.Vector2 struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D { public: // System.Single UnityEngine.Vector2::x float ___x_0; // System.Single UnityEngine.Vector2::y float ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } }; struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields { public: // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___zeroVector_2; // UnityEngine.Vector2 UnityEngine.Vector2::oneVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___oneVector_3; // UnityEngine.Vector2 UnityEngine.Vector2::upVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___upVector_4; // UnityEngine.Vector2 UnityEngine.Vector2::downVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___downVector_5; // UnityEngine.Vector2 UnityEngine.Vector2::leftVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___leftVector_6; // UnityEngine.Vector2 UnityEngine.Vector2::rightVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rightVector_7; // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___positiveInfinityVector_8; // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___negativeInfinityVector_9; public: inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___zeroVector_2)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_zeroVector_2() const { return ___zeroVector_2; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_zeroVector_2() { return &___zeroVector_2; } inline void set_zeroVector_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___zeroVector_2 = value; } inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___oneVector_3)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_oneVector_3() const { return ___oneVector_3; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_oneVector_3() { return &___oneVector_3; } inline void set_oneVector_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___oneVector_3 = value; } inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___upVector_4)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_upVector_4() const { return ___upVector_4; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_upVector_4() { return &___upVector_4; } inline void set_upVector_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___upVector_4 = value; } inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___downVector_5)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_downVector_5() const { return ___downVector_5; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_downVector_5() { return &___downVector_5; } inline void set_downVector_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___downVector_5 = value; } inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___leftVector_6)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_leftVector_6() const { return ___leftVector_6; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_leftVector_6() { return &___leftVector_6; } inline void set_leftVector_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___leftVector_6 = value; } inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___rightVector_7)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_rightVector_7() const { return ___rightVector_7; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_rightVector_7() { return &___rightVector_7; } inline void set_rightVector_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___rightVector_7 = value; } inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___positiveInfinityVector_8)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; } inline void set_positiveInfinityVector_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___positiveInfinityVector_8 = value; } inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___negativeInfinityVector_9)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; } inline void set_negativeInfinityVector_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___negativeInfinityVector_9 = value; } }; // UnityEngine.Vector3 struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 { public: // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; public: inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___x_2)); } inline float get_x_2() const { return ___x_2; } inline float* get_address_of_x_2() { return &___x_2; } inline void set_x_2(float value) { ___x_2 = value; } inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___y_3)); } inline float get_y_3() const { return ___y_3; } inline float* get_address_of_y_3() { return &___y_3; } inline void set_y_3(float value) { ___y_3 = value; } inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___z_4)); } inline float get_z_4() const { return ___z_4; } inline float* get_address_of_z_4() { return &___z_4; } inline void set_z_4(float value) { ___z_4 = value; } }; struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___zeroVector_5)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___oneVector_6)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_oneVector_6() const { return ___oneVector_6; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___upVector_7)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_upVector_7() const { return ___upVector_7; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___downVector_8)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_downVector_8() const { return ___downVector_8; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___leftVector_9)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_leftVector_9() const { return ___leftVector_9; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___rightVector_10)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_rightVector_10() const { return ___rightVector_10; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___forwardVector_11)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___backVector_12)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_backVector_12() const { return ___backVector_12; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___negativeInfinityVector_14 = value; } }; // UnityEngine.Vector4 struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E { public: // System.Single UnityEngine.Vector4::x float ___x_1; // System.Single UnityEngine.Vector4::y float ___y_2; // System.Single UnityEngine.Vector4::z float ___z_3; // System.Single UnityEngine.Vector4::w float ___w_4; public: inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___w_4)); } inline float get_w_4() const { return ___w_4; } inline float* get_address_of_w_4() { return &___w_4; } inline void set_w_4(float value) { ___w_4 = value; } }; struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields { public: // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___negativeInfinityVector_8; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___zeroVector_5)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___oneVector_6)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_oneVector_6() const { return ___oneVector_6; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___positiveInfinityVector_7)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; } inline void set_positiveInfinityVector_7(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___positiveInfinityVector_7 = value; } inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___negativeInfinityVector_8)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; } inline void set_negativeInfinityVector_8(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___negativeInfinityVector_8 = value; } }; // Cinemachine.TargetPositionCache_CacheCurve_Item struct Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE { public: // UnityEngine.Vector3 Cinemachine.TargetPositionCache_CacheCurve_Item::Pos Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___Pos_0; // UnityEngine.Quaternion Cinemachine.TargetPositionCache_CacheCurve_Item::Rot Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___Rot_1; public: inline static int32_t get_offset_of_Pos_0() { return static_cast<int32_t>(offsetof(Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE, ___Pos_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_Pos_0() const { return ___Pos_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_Pos_0() { return &___Pos_0; } inline void set_Pos_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___Pos_0 = value; } inline static int32_t get_offset_of_Rot_1() { return static_cast<int32_t>(offsetof(Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE, ___Rot_1)); } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_Rot_1() const { return ___Rot_1; } inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_Rot_1() { return &___Rot_1; } inline void set_Rot_1(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value) { ___Rot_1 = value; } }; // 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((void**)(&___value_1), (void*)value); } }; // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.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; } }; // System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32> struct Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC : public RuntimeObject { public: // TKey System.Linq.Lookup`2_Grouping::key RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 ___key_0; // System.Int32 System.Linq.Lookup`2_Grouping::hashCode int32_t ___hashCode_1; // TElement[] System.Linq.Lookup`2_Grouping::elements Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___elements_2; // System.Int32 System.Linq.Lookup`2_Grouping::count int32_t ___count_3; // System.Linq.Lookup`2_Grouping<TKey,TElement> System.Linq.Lookup`2_Grouping::hashNext Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * ___hashNext_4; // System.Linq.Lookup`2_Grouping<TKey,TElement> System.Linq.Lookup`2_Grouping::next Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * ___next_5; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC, ___key_0)); } inline RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 get_key_0() const { return ___key_0; } inline RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 * get_address_of_key_0() { return &___key_0; } inline void set_key_0(RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 value) { ___key_0 = value; } inline static int32_t get_offset_of_hashCode_1() { return static_cast<int32_t>(offsetof(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC, ___hashCode_1)); } inline int32_t get_hashCode_1() const { return ___hashCode_1; } inline int32_t* get_address_of_hashCode_1() { return &___hashCode_1; } inline void set_hashCode_1(int32_t value) { ___hashCode_1 = value; } inline static int32_t get_offset_of_elements_2() { return static_cast<int32_t>(offsetof(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC, ___elements_2)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_elements_2() const { return ___elements_2; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_elements_2() { return &___elements_2; } inline void set_elements_2(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___elements_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___elements_2), (void*)value); } inline static int32_t get_offset_of_count_3() { return static_cast<int32_t>(offsetof(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC, ___count_3)); } inline int32_t get_count_3() const { return ___count_3; } inline int32_t* get_address_of_count_3() { return &___count_3; } inline void set_count_3(int32_t value) { ___count_3 = value; } inline static int32_t get_offset_of_hashNext_4() { return static_cast<int32_t>(offsetof(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC, ___hashNext_4)); } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * get_hashNext_4() const { return ___hashNext_4; } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC ** get_address_of_hashNext_4() { return &___hashNext_4; } inline void set_hashNext_4(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * value) { ___hashNext_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashNext_4), (void*)value); } inline static int32_t get_offset_of_next_5() { return static_cast<int32_t>(offsetof(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC, ___next_5)); } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * get_next_5() const { return ___next_5; } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC ** get_address_of_next_5() { return &___next_5; } inline void set_next_5(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * value) { ___next_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_5), (void*)value); } }; // System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1<System.Object> struct U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF : public RuntimeObject { public: // System.Int32 System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1::<>1__state int32_t ___U3CU3E1__state_0; // TElement System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1::<>4__this OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * ___U3CU3E4__this_2; // System.Linq.Buffer`1<TElement> System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1::<buffer>5__1 Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C ___U3CbufferU3E5__1_3; // System.Int32[] System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1::<map>5__2 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___U3CmapU3E5__2_4; // System.Int32 System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1::<i>5__3 int32_t ___U3CiU3E5__3_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF, ___U3CU3E4__this_2)); } inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_U3CbufferU3E5__1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF, ___U3CbufferU3E5__1_3)); } inline Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C get_U3CbufferU3E5__1_3() const { return ___U3CbufferU3E5__1_3; } inline Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * get_address_of_U3CbufferU3E5__1_3() { return &___U3CbufferU3E5__1_3; } inline void set_U3CbufferU3E5__1_3(Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C value) { ___U3CbufferU3E5__1_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CbufferU3E5__1_3))->___items_0), (void*)NULL); } inline static int32_t get_offset_of_U3CmapU3E5__2_4() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF, ___U3CmapU3E5__2_4)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_U3CmapU3E5__2_4() const { return ___U3CmapU3E5__2_4; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_U3CmapU3E5__2_4() { return &___U3CmapU3E5__2_4; } inline void set_U3CmapU3E5__2_4(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___U3CmapU3E5__2_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CmapU3E5__2_4), (void*)value); } inline static int32_t get_offset_of_U3CiU3E5__3_5() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF, ___U3CiU3E5__3_5)); } inline int32_t get_U3CiU3E5__3_5() const { return ___U3CiU3E5__3_5; } inline int32_t* get_address_of_U3CiU3E5__3_5() { return &___U3CiU3E5__3_5; } inline void set_U3CiU3E5__3_5(int32_t value) { ___U3CiU3E5__3_5 = value; } }; // System.Nullable`1<UnityEngine.Color> struct Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB { public: // T System.Nullable`1::value Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___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_t62AE259BD59BB399114FE368074265E6CE6E36BB, ___value_0)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_value_0() const { return ___value_0; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_value_0() { return &___value_0; } inline void set_value_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Nullable`1<UnityEngine.Rendering.RenderQueueRange> struct Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 { public: // T System.Nullable`1::value RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A ___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_t2DFC28E4433268025A26E954F0249137067321B5, ___value_0)); } inline RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A get_value_0() const { return ___value_0; } inline RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A * get_address_of_value_0() { return &___value_0; } inline void set_value_0(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Nullable`1<UnityEngine.Vector3> struct Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE { public: // T System.Nullable`1::value Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___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_tCE53BD40AA999E709C1D2369B2A531373CDD89EE, ___value_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_value_0() const { return ___value_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_value_0() { return &___value_0; } inline void set_value_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { public: public: }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean> struct AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 ___m_coreState_1; // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE, ___m_task_2)); } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_m_task_2() const { return ___m_task_2; } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; struct AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE_StaticFields { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object> struct AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 ___m_coreState_1; // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663, ___m_task_2)); } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_m_task_2() const { return ___m_task_2; } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; struct AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663_StaticFields { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult> struct AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 { public: // System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 ___m_coreState_1; // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___m_task_2; public: inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9, ___m_coreState_1)); } inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 get_m_coreState_1() const { return ___m_coreState_1; } inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * get_address_of_m_coreState_1() { return &___m_coreState_1; } inline void set_m_coreState_1(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 value) { ___m_coreState_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_stateMachine_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_coreState_1))->___m_defaultContextAction_1), (void*)NULL); #endif } inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9, ___m_task_2)); } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * get_m_task_2() const { return ___m_task_2; } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 ** get_address_of_m_task_2() { return &___m_task_2; } inline void set_m_task_2(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * value) { ___m_task_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_2), (void*)value); } }; struct AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9_StaticFields { public: // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___s_defaultResultTask_0; public: inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9_StaticFields, ___s_defaultResultTask_0)); } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; } inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; } inline void set_s_defaultResultTask_0(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * value) { ___s_defaultResultTask_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_defaultResultTask_0), (void*)value); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean> struct ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32> struct ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object> struct ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult> struct ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 { public: // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 ___m_configuredTaskAwaiter_0; public: inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3, ___m_configuredTaskAwaiter_0)); } inline ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; } inline ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; } inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 value) { ___m_configuredTaskAwaiter_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_configuredTaskAwaiter_0))->___m_task_0), (void*)NULL); } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.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((void**)(&___m_callbackInfo_0), (void*)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; Il2CppCodeGenWriteBarrier((void**)&(((&___m_registrationInfo_1))->___m_source_0), (void*)NULL); } }; // 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; }; // System.Threading.LazyThreadSafetyMode struct LazyThreadSafetyMode_t27F7B5E5CE01EF053452A4EEBBB9D1EE220B145E { public: // System.Int32 System.Threading.LazyThreadSafetyMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LazyThreadSafetyMode_t27F7B5E5CE01EF053452A4EEBBB9D1EE220B145E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Threading.SparselyPopulatedArrayFragment`1<System.Object> struct SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 : public RuntimeObject { public: // T[] System.Threading.SparselyPopulatedArrayFragment`1::m_elements ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_elements_0; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_freeCount int32_t ___m_freeCount_1; // System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_next SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * ___m_next_2; // System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_prev SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * ___m_prev_3; public: inline static int32_t get_offset_of_m_elements_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364, ___m_elements_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_elements_0() const { return ___m_elements_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_elements_0() { return &___m_elements_0; } inline void set_m_elements_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___m_elements_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_elements_0), (void*)value); } inline static int32_t get_offset_of_m_freeCount_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364, ___m_freeCount_1)); } inline int32_t get_m_freeCount_1() const { return ___m_freeCount_1; } inline int32_t* get_address_of_m_freeCount_1() { return &___m_freeCount_1; } inline void set_m_freeCount_1(int32_t value) { ___m_freeCount_1 = value; } inline static int32_t get_offset_of_m_next_2() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364, ___m_next_2)); } inline SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * get_m_next_2() const { return ___m_next_2; } inline SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 ** get_address_of_m_next_2() { return &___m_next_2; } inline void set_m_next_2(SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * value) { ___m_next_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_next_2), (void*)value); } inline static int32_t get_offset_of_m_prev_3() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364, ___m_prev_3)); } inline SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * get_m_prev_3() const { return ___m_prev_3; } inline SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 ** get_address_of_m_prev_3() { return &___m_prev_3; } inline void set_m_prev_3(SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * value) { ___m_prev_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_prev_3), (void*)value); } }; // 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; } }; // System.Threading.Tasks.AsyncCausalityStatus struct AsyncCausalityStatus_t551C8435E137F3CE15E458A31D0FF0825FD5FA21 { public: // System.Int32 System.Threading.Tasks.AsyncCausalityStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AsyncCausalityStatus_t551C8435E137F3CE15E458A31D0FF0825FD5FA21, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Threading.Tasks.CausalityTraceLevel struct CausalityTraceLevel_t43E68E9AA92AD875A33C16851EFA189EA7D394EE { public: // System.Int32 System.Threading.Tasks.CausalityTraceLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CausalityTraceLevel_t43E68E9AA92AD875A33C16851EFA189EA7D394EE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.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; } }; // 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((void**)(&___m_action_5), (void*)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((void**)(&___m_stateObject_6), (void*)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((void**)(&___m_taskScheduler_7), (void*)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((void**)(&___m_parent_8), (void*)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((void**)(&___m_continuationObject_10), (void*)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((void**)(&___m_contingentProperties_15), (void*)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((void**)(&___s_factory_3), (void*)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((void**)(&___s_taskCompletionSentinel_11), (void*)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((void**)(&___s_currentActiveTasks_13), (void*)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((void**)(&___s_activeTasksLock_14), (void*)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((void**)(&___s_taskCancelCallback_16), (void*)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((void**)(&___s_createContingentProperties_17), (void*)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((void**)(&___s_completedTask_18), (void*)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((void**)(&___s_IsExceptionObservedByParentPredicate_19), (void*)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((void**)(&___s_ecCallback_20), (void*)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((void**)(&___s_IsTaskContinuationNullPredicate_21), (void*)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((void**)(&___t_currentTask_0), (void*)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((void**)(&___t_stackGuard_1), (void*)value); } }; // System.Threading.Tasks.Task_ContingentProperties struct ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 : public RuntimeObject { public: // System.Threading.ExecutionContext System.Threading.Tasks.Task_ContingentProperties::m_capturedContext ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_capturedContext_0; // System.Threading.ManualResetEventSlim modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task_ContingentProperties::m_completionEvent ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * ___m_completionEvent_1; // System.Threading.Tasks.TaskExceptionHolder modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task_ContingentProperties::m_exceptionsHolder TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * ___m_exceptionsHolder_2; // System.Threading.CancellationToken System.Threading.Tasks.Task_ContingentProperties::m_cancellationToken CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___m_cancellationToken_3; // System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration> System.Threading.Tasks.Task_ContingentProperties::m_cancellationRegistration Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 * ___m_cancellationRegistration_4; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task_ContingentProperties::m_internalCancellationRequested int32_t ___m_internalCancellationRequested_5; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task_ContingentProperties::m_completionCountdown int32_t ___m_completionCountdown_6; // System.Collections.Generic.List`1<System.Threading.Tasks.Task> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task_ContingentProperties::m_exceptionalChildren List_1_tC62C1E1B0AD84992F0A374A5A4679609955E117E * ___m_exceptionalChildren_7; public: inline static int32_t get_offset_of_m_capturedContext_0() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_capturedContext_0)); } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_m_capturedContext_0() const { return ___m_capturedContext_0; } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_m_capturedContext_0() { return &___m_capturedContext_0; } inline void set_m_capturedContext_0(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value) { ___m_capturedContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_capturedContext_0), (void*)value); } inline static int32_t get_offset_of_m_completionEvent_1() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_completionEvent_1)); } inline ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * get_m_completionEvent_1() const { return ___m_completionEvent_1; } inline ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 ** get_address_of_m_completionEvent_1() { return &___m_completionEvent_1; } inline void set_m_completionEvent_1(ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * value) { ___m_completionEvent_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_completionEvent_1), (void*)value); } inline static int32_t get_offset_of_m_exceptionsHolder_2() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_exceptionsHolder_2)); } inline TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * get_m_exceptionsHolder_2() const { return ___m_exceptionsHolder_2; } inline TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 ** get_address_of_m_exceptionsHolder_2() { return &___m_exceptionsHolder_2; } inline void set_m_exceptionsHolder_2(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * value) { ___m_exceptionsHolder_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_exceptionsHolder_2), (void*)value); } inline static int32_t get_offset_of_m_cancellationToken_3() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_cancellationToken_3)); } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_m_cancellationToken_3() const { return ___m_cancellationToken_3; } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_m_cancellationToken_3() { return &___m_cancellationToken_3; } inline void set_m_cancellationToken_3(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value) { ___m_cancellationToken_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_cancellationToken_3))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_m_cancellationRegistration_4() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_cancellationRegistration_4)); } inline Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 * get_m_cancellationRegistration_4() const { return ___m_cancellationRegistration_4; } inline Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 ** get_address_of_m_cancellationRegistration_4() { return &___m_cancellationRegistration_4; } inline void set_m_cancellationRegistration_4(Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 * value) { ___m_cancellationRegistration_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cancellationRegistration_4), (void*)value); } inline static int32_t get_offset_of_m_internalCancellationRequested_5() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_internalCancellationRequested_5)); } inline int32_t get_m_internalCancellationRequested_5() const { return ___m_internalCancellationRequested_5; } inline int32_t* get_address_of_m_internalCancellationRequested_5() { return &___m_internalCancellationRequested_5; } inline void set_m_internalCancellationRequested_5(int32_t value) { ___m_internalCancellationRequested_5 = value; } inline static int32_t get_offset_of_m_completionCountdown_6() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_completionCountdown_6)); } inline int32_t get_m_completionCountdown_6() const { return ___m_completionCountdown_6; } inline int32_t* get_address_of_m_completionCountdown_6() { return &___m_completionCountdown_6; } inline void set_m_completionCountdown_6(int32_t value) { ___m_completionCountdown_6 = value; } inline static int32_t get_offset_of_m_exceptionalChildren_7() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_exceptionalChildren_7)); } inline List_1_tC62C1E1B0AD84992F0A374A5A4679609955E117E * get_m_exceptionalChildren_7() const { return ___m_exceptionalChildren_7; } inline List_1_tC62C1E1B0AD84992F0A374A5A4679609955E117E ** get_address_of_m_exceptionalChildren_7() { return &___m_exceptionalChildren_7; } inline void set_m_exceptionalChildren_7(List_1_tC62C1E1B0AD84992F0A374A5A4679609955E117E * value) { ___m_exceptionalChildren_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_exceptionalChildren_7), (void*)value); } }; // 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; } }; // 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; } }; // 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((void**)(&___s_activeTaskSchedulers_0), (void*)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((void**)(&___s_defaultTaskScheduler_1), (void*)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((void**)(&____unobservedTaskException_4), (void*)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((void**)(&____unobservedTaskExceptionLockObject_5), (void*)value); } }; // System.Threading.Tasks.TaskStatus struct TaskStatus_t4DB45EB7777EB16CEB85E12E43C4F56EAFA59A99 { public: // System.Int32 System.Threading.Tasks.TaskStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskStatus_t4DB45EB7777EB16CEB85E12E43C4F56EAFA59A99, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>> struct ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891 { public: // T1 System.ValueTuple`2::Item1 RuntimeObject * ___Item1_0; // T2 System.ValueTuple`2::Item2 ValueTuple_2_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891, ___Item1_0)); } inline RuntimeObject * get_Item1_0() const { return ___Item1_0; } inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(RuntimeObject * value) { ___Item1_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value); } inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891, ___Item2_1)); } inline ValueTuple_2_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 get_Item2_1() const { return ___Item2_1; } inline ValueTuple_2_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 * get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(ValueTuple_2_t49E1CF58944760BDF49EEF378C9DF1044ECC4793 value) { ___Item2_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___Item2_1))->___Item1_0), (void*)NULL); } }; // TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame struct Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4 { public: // System.String TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame::filename String_t* ___filename_0; // TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame::frame SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 ___frame_1; // System.Boolean TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame::rotated bool ___rotated_2; // System.Boolean TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame::trimmed bool ___trimmed_3; // TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame::spriteSourceSize SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 ___spriteSourceSize_4; // TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_SpriteSize TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame::sourceSize SpriteSize_t30BACB7B2D95781D65F3936CEB88450F00B3F277 ___sourceSize_5; // UnityEngine.Vector2 TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame::pivot Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6; public: inline static int32_t get_offset_of_filename_0() { return static_cast<int32_t>(offsetof(Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4, ___filename_0)); } inline String_t* get_filename_0() const { return ___filename_0; } inline String_t** get_address_of_filename_0() { return &___filename_0; } inline void set_filename_0(String_t* value) { ___filename_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___filename_0), (void*)value); } inline static int32_t get_offset_of_frame_1() { return static_cast<int32_t>(offsetof(Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4, ___frame_1)); } inline SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 get_frame_1() const { return ___frame_1; } inline SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 * get_address_of_frame_1() { return &___frame_1; } inline void set_frame_1(SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 value) { ___frame_1 = value; } inline static int32_t get_offset_of_rotated_2() { return static_cast<int32_t>(offsetof(Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4, ___rotated_2)); } inline bool get_rotated_2() const { return ___rotated_2; } inline bool* get_address_of_rotated_2() { return &___rotated_2; } inline void set_rotated_2(bool value) { ___rotated_2 = value; } inline static int32_t get_offset_of_trimmed_3() { return static_cast<int32_t>(offsetof(Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4, ___trimmed_3)); } inline bool get_trimmed_3() const { return ___trimmed_3; } inline bool* get_address_of_trimmed_3() { return &___trimmed_3; } inline void set_trimmed_3(bool value) { ___trimmed_3 = value; } inline static int32_t get_offset_of_spriteSourceSize_4() { return static_cast<int32_t>(offsetof(Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4, ___spriteSourceSize_4)); } inline SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 get_spriteSourceSize_4() const { return ___spriteSourceSize_4; } inline SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 * get_address_of_spriteSourceSize_4() { return &___spriteSourceSize_4; } inline void set_spriteSourceSize_4(SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 value) { ___spriteSourceSize_4 = value; } inline static int32_t get_offset_of_sourceSize_5() { return static_cast<int32_t>(offsetof(Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4, ___sourceSize_5)); } inline SpriteSize_t30BACB7B2D95781D65F3936CEB88450F00B3F277 get_sourceSize_5() const { return ___sourceSize_5; } inline SpriteSize_t30BACB7B2D95781D65F3936CEB88450F00B3F277 * get_address_of_sourceSize_5() { return &___sourceSize_5; } inline void set_sourceSize_5(SpriteSize_t30BACB7B2D95781D65F3936CEB88450F00B3F277 value) { ___sourceSize_5 = value; } inline static int32_t get_offset_of_pivot_6() { return static_cast<int32_t>(offsetof(Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4, ___pivot_6)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_pivot_6() const { return ___pivot_6; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_pivot_6() { return &___pivot_6; } inline void set_pivot_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___pivot_6 = value; } }; // Native definition for P/Invoke marshalling of TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame struct Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4_marshaled_pinvoke { char* ___filename_0; SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 ___frame_1; int32_t ___rotated_2; int32_t ___trimmed_3; SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 ___spriteSourceSize_4; SpriteSize_t30BACB7B2D95781D65F3936CEB88450F00B3F277 ___sourceSize_5; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6; }; // Native definition for COM marshalling of TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame struct Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4_marshaled_com { Il2CppChar* ___filename_0; SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 ___frame_1; int32_t ___rotated_2; int32_t ___trimmed_3; SpriteFrame_t11FDA7D94920F02DFE8E059C1AA6494DC01A8496 ___spriteSourceSize_4; SpriteSize_t30BACB7B2D95781D65F3936CEB88450F00B3F277 ___sourceSize_5; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6; }; // UnityEngine.EventSystems.RaycastResult struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 { public: // UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0; // UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1; // System.Single UnityEngine.EventSystems.RaycastResult::distance float ___distance_2; // System.Single UnityEngine.EventSystems.RaycastResult::index float ___index_3; // System.Int32 UnityEngine.EventSystems.RaycastResult::depth int32_t ___depth_4; // System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer int32_t ___sortingLayer_5; // System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder int32_t ___sortingOrder_6; // UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7; // UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8; // UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9; // System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex int32_t ___displayIndex_10; public: inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___m_GameObject_0)); } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_GameObject_0() const { return ___m_GameObject_0; } inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; } inline void set_m_GameObject_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value) { ___m_GameObject_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value); } inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___module_1)); } inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * get_module_1() const { return ___module_1; } inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** get_address_of_module_1() { return &___module_1; } inline void set_module_1(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value) { ___module_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value); } inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___distance_2)); } inline float get_distance_2() const { return ___distance_2; } inline float* get_address_of_distance_2() { return &___distance_2; } inline void set_distance_2(float value) { ___distance_2 = value; } inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___index_3)); } inline float get_index_3() const { return ___index_3; } inline float* get_address_of_index_3() { return &___index_3; } inline void set_index_3(float value) { ___index_3 = value; } inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___depth_4)); } inline int32_t get_depth_4() const { return ___depth_4; } inline int32_t* get_address_of_depth_4() { return &___depth_4; } inline void set_depth_4(int32_t value) { ___depth_4 = value; } inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingLayer_5)); } inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; } inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; } inline void set_sortingLayer_5(int32_t value) { ___sortingLayer_5 = value; } inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingOrder_6)); } inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; } inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; } inline void set_sortingOrder_6(int32_t value) { ___sortingOrder_6 = value; } inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldPosition_7)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldPosition_7() const { return ___worldPosition_7; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldPosition_7() { return &___worldPosition_7; } inline void set_worldPosition_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___worldPosition_7 = value; } inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldNormal_8)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldNormal_8() const { return ___worldNormal_8; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldNormal_8() { return &___worldNormal_8; } inline void set_worldNormal_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___worldNormal_8 = value; } inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___screenPosition_9)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_screenPosition_9() const { return ___screenPosition_9; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_screenPosition_9() { return &___screenPosition_9; } inline void set_screenPosition_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___screenPosition_9 = value; } inline static int32_t get_offset_of_displayIndex_10() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___displayIndex_10)); } inline int32_t get_displayIndex_10() const { return ___displayIndex_10; } inline int32_t* get_address_of_displayIndex_10() { return &___displayIndex_10; } inline void set_displayIndex_10(int32_t value) { ___displayIndex_10 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke { GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0; BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1; float ___distance_2; float ___index_3; int32_t ___depth_4; int32_t ___sortingLayer_5; int32_t ___sortingOrder_6; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9; int32_t ___displayIndex_10; }; // Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_com { GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0; BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1; float ___distance_2; float ___index_3; int32_t ___depth_4; int32_t ___sortingLayer_5; int32_t ___sortingOrder_6; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8; Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9; int32_t ___displayIndex_10; }; // UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceType struct RenderGraphResourceType_t13ED07FF7DD43627D5D5D985895BA904612D6905 { public: // System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderGraphResourceType_t13ED07FF7DD43627D5D5D985895BA904612D6905, ___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; } }; // UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex struct ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE { public: // UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.Vec3 UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex::Position Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D ___Position_0; // System.Object UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex::Data RuntimeObject * ___Data_1; public: inline static int32_t get_offset_of_Position_0() { return static_cast<int32_t>(offsetof(ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE, ___Position_0)); } inline Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D get_Position_0() const { return ___Position_0; } inline Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D * get_address_of_Position_0() { return &___Position_0; } inline void set_Position_0(Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D value) { ___Position_0 = value; } inline static int32_t get_offset_of_Data_1() { return static_cast<int32_t>(offsetof(ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE, ___Data_1)); } inline RuntimeObject * get_Data_1() const { return ___Data_1; } inline RuntimeObject ** get_address_of_Data_1() { return &___Data_1; } inline void set_Data_1(RuntimeObject * value) { ___Data_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Data_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex struct ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_marshaled_pinvoke { Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D ___Position_0; Il2CppIUnknown* ___Data_1; }; // Native definition for COM marshalling of UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex struct ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_marshaled_com { Vec3_t2C5BD0FE9DB59A16844D310BA000CC3E203E784D ___Position_0; Il2CppIUnknown* ___Data_1; }; // UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge struct Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 { public: // System.Int32 UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge::vertexIndex0 int32_t ___vertexIndex0_0; // System.Int32 UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge::vertexIndex1 int32_t ___vertexIndex1_1; // UnityEngine.Vector4 UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge::tangent Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2; // System.Boolean UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge::compareReversed bool ___compareReversed_3; public: inline static int32_t get_offset_of_vertexIndex0_0() { return static_cast<int32_t>(offsetof(Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0, ___vertexIndex0_0)); } inline int32_t get_vertexIndex0_0() const { return ___vertexIndex0_0; } inline int32_t* get_address_of_vertexIndex0_0() { return &___vertexIndex0_0; } inline void set_vertexIndex0_0(int32_t value) { ___vertexIndex0_0 = value; } inline static int32_t get_offset_of_vertexIndex1_1() { return static_cast<int32_t>(offsetof(Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0, ___vertexIndex1_1)); } inline int32_t get_vertexIndex1_1() const { return ___vertexIndex1_1; } inline int32_t* get_address_of_vertexIndex1_1() { return &___vertexIndex1_1; } inline void set_vertexIndex1_1(int32_t value) { ___vertexIndex1_1 = value; } inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0, ___tangent_2)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_tangent_2() const { return ___tangent_2; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_tangent_2() { return &___tangent_2; } inline void set_tangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___tangent_2 = value; } inline static int32_t get_offset_of_compareReversed_3() { return static_cast<int32_t>(offsetof(Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0, ___compareReversed_3)); } inline bool get_compareReversed_3() const { return ___compareReversed_3; } inline bool* get_address_of_compareReversed_3() { return &___compareReversed_3; } inline void set_compareReversed_3(bool value) { ___compareReversed_3 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Experimental.Rendering.Universal.ShadowUtility/Edge struct Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_marshaled_pinvoke { int32_t ___vertexIndex0_0; int32_t ___vertexIndex1_1; Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2; int32_t ___compareReversed_3; }; // Native definition for COM marshalling of UnityEngine.Experimental.Rendering.Universal.ShadowUtility/Edge struct Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_marshaled_com { int32_t ___vertexIndex0_0; int32_t ___vertexIndex1_1; Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2; int32_t ___compareReversed_3; }; // UnityEngine.GradientColorKey struct GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E { public: // UnityEngine.Color UnityEngine.GradientColorKey::color Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_0; // System.Single UnityEngine.GradientColorKey::time float ___time_1; public: inline static int32_t get_offset_of_color_0() { return static_cast<int32_t>(offsetof(GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E, ___color_0)); } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_color_0() const { return ___color_0; } inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_color_0() { return &___color_0; } inline void set_color_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value) { ___color_0 = value; } inline static int32_t get_offset_of_time_1() { return static_cast<int32_t>(offsetof(GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E, ___time_1)); } inline float get_time_1() const { return ___time_1; } inline float* get_address_of_time_1() { return &___time_1; } inline void set_time_1(float value) { ___time_1 = value; } }; // UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com { intptr_t ___m_CachedPtr_0; }; // UnityEngine.Playables.PlayableHandle struct PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 { public: // System.IntPtr UnityEngine.Playables.PlayableHandle::m_Handle intptr_t ___m_Handle_0; // System.UInt32 UnityEngine.Playables.PlayableHandle::m_Version uint32_t ___m_Version_1; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182, ___m_Handle_0)); } inline intptr_t get_m_Handle_0() const { return ___m_Handle_0; } inline intptr_t* get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(intptr_t value) { ___m_Handle_0 = value; } inline static int32_t get_offset_of_m_Version_1() { return static_cast<int32_t>(offsetof(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182, ___m_Version_1)); } inline uint32_t get_m_Version_1() const { return ___m_Version_1; } inline uint32_t* get_address_of_m_Version_1() { return &___m_Version_1; } inline void set_m_Version_1(uint32_t value) { ___m_Version_1 = value; } }; struct PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182_StaticFields { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Playables.PlayableHandle::m_Null PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Null_2; public: inline static int32_t get_offset_of_m_Null_2() { return static_cast<int32_t>(offsetof(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182_StaticFields, ___m_Null_2)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Null_2() const { return ___m_Null_2; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Null_2() { return &___m_Null_2; } inline void set_m_Null_2(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Null_2 = value; } }; // UnityEngine.Polybrush.CommonEdge struct CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55 { public: // UnityEngine.Polybrush.PolyEdge UnityEngine.Polybrush.CommonEdge::edge PolyEdge_t349F3835ED426193A29214740854732ADB209A35 ___edge_0; // UnityEngine.Polybrush.PolyEdge UnityEngine.Polybrush.CommonEdge::common PolyEdge_t349F3835ED426193A29214740854732ADB209A35 ___common_1; public: inline static int32_t get_offset_of_edge_0() { return static_cast<int32_t>(offsetof(CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55, ___edge_0)); } inline PolyEdge_t349F3835ED426193A29214740854732ADB209A35 get_edge_0() const { return ___edge_0; } inline PolyEdge_t349F3835ED426193A29214740854732ADB209A35 * get_address_of_edge_0() { return &___edge_0; } inline void set_edge_0(PolyEdge_t349F3835ED426193A29214740854732ADB209A35 value) { ___edge_0 = value; } inline static int32_t get_offset_of_common_1() { return static_cast<int32_t>(offsetof(CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55, ___common_1)); } inline PolyEdge_t349F3835ED426193A29214740854732ADB209A35 get_common_1() const { return ___common_1; } inline PolyEdge_t349F3835ED426193A29214740854732ADB209A35 * get_address_of_common_1() { return &___common_1; } inline void set_common_1(PolyEdge_t349F3835ED426193A29214740854732ADB209A35 value) { ___common_1 = value; } }; // UnityEngine.RaycastHit2D struct RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE { public: // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Centroid_0; // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_1; // UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_2; // System.Single UnityEngine.RaycastHit2D::m_Distance float ___m_Distance_3; // System.Single UnityEngine.RaycastHit2D::m_Fraction float ___m_Fraction_4; // System.Int32 UnityEngine.RaycastHit2D::m_Collider int32_t ___m_Collider_5; public: inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Centroid_0)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Centroid_0() const { return ___m_Centroid_0; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Centroid_0() { return &___m_Centroid_0; } inline void set_m_Centroid_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_Centroid_0 = value; } inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Point_1)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_1() const { return ___m_Point_1; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_1() { return &___m_Point_1; } inline void set_m_Point_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_Point_1 = value; } inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Normal_2)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_2() const { return ___m_Normal_2; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_2() { return &___m_Normal_2; } inline void set_m_Normal_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___m_Normal_2 = value; } inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Distance_3)); } inline float get_m_Distance_3() const { return ___m_Distance_3; } inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; } inline void set_m_Distance_3(float value) { ___m_Distance_3 = value; } inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Fraction_4)); } inline float get_m_Fraction_4() const { return ___m_Fraction_4; } inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; } inline void set_m_Fraction_4(float value) { ___m_Fraction_4 = value; } inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Collider_5)); } inline int32_t get_m_Collider_5() const { return ___m_Collider_5; } inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; } inline void set_m_Collider_5(int32_t value) { ___m_Collider_5 = value; } }; // UnityEngine.Rendering.BlendState struct BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC { public: // UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState0 RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState0_0; // UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState1 RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState1_1; // UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState2 RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState2_2; // UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState3 RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState3_3; // UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState4 RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState4_4; // UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState5 RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState5_5; // UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState6 RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState6_6; // UnityEngine.Rendering.RenderTargetBlendState UnityEngine.Rendering.BlendState::m_BlendState7 RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE ___m_BlendState7_7; // System.Byte UnityEngine.Rendering.BlendState::m_SeparateMRTBlendStates uint8_t ___m_SeparateMRTBlendStates_8; // System.Byte UnityEngine.Rendering.BlendState::m_AlphaToMask uint8_t ___m_AlphaToMask_9; // System.Int16 UnityEngine.Rendering.BlendState::m_Padding int16_t ___m_Padding_10; public: inline static int32_t get_offset_of_m_BlendState0_0() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState0_0)); } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState0_0() const { return ___m_BlendState0_0; } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState0_0() { return &___m_BlendState0_0; } inline void set_m_BlendState0_0(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value) { ___m_BlendState0_0 = value; } inline static int32_t get_offset_of_m_BlendState1_1() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState1_1)); } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState1_1() const { return ___m_BlendState1_1; } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState1_1() { return &___m_BlendState1_1; } inline void set_m_BlendState1_1(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value) { ___m_BlendState1_1 = value; } inline static int32_t get_offset_of_m_BlendState2_2() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState2_2)); } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState2_2() const { return ___m_BlendState2_2; } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState2_2() { return &___m_BlendState2_2; } inline void set_m_BlendState2_2(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value) { ___m_BlendState2_2 = value; } inline static int32_t get_offset_of_m_BlendState3_3() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState3_3)); } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState3_3() const { return ___m_BlendState3_3; } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState3_3() { return &___m_BlendState3_3; } inline void set_m_BlendState3_3(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value) { ___m_BlendState3_3 = value; } inline static int32_t get_offset_of_m_BlendState4_4() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState4_4)); } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState4_4() const { return ___m_BlendState4_4; } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState4_4() { return &___m_BlendState4_4; } inline void set_m_BlendState4_4(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value) { ___m_BlendState4_4 = value; } inline static int32_t get_offset_of_m_BlendState5_5() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState5_5)); } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState5_5() const { return ___m_BlendState5_5; } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState5_5() { return &___m_BlendState5_5; } inline void set_m_BlendState5_5(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value) { ___m_BlendState5_5 = value; } inline static int32_t get_offset_of_m_BlendState6_6() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState6_6)); } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState6_6() const { return ___m_BlendState6_6; } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState6_6() { return &___m_BlendState6_6; } inline void set_m_BlendState6_6(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value) { ___m_BlendState6_6 = value; } inline static int32_t get_offset_of_m_BlendState7_7() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_BlendState7_7)); } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE get_m_BlendState7_7() const { return ___m_BlendState7_7; } inline RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE * get_address_of_m_BlendState7_7() { return &___m_BlendState7_7; } inline void set_m_BlendState7_7(RenderTargetBlendState_t30BE02B4016216E782F6593AEF023ED96E8C20AE value) { ___m_BlendState7_7 = value; } inline static int32_t get_offset_of_m_SeparateMRTBlendStates_8() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_SeparateMRTBlendStates_8)); } inline uint8_t get_m_SeparateMRTBlendStates_8() const { return ___m_SeparateMRTBlendStates_8; } inline uint8_t* get_address_of_m_SeparateMRTBlendStates_8() { return &___m_SeparateMRTBlendStates_8; } inline void set_m_SeparateMRTBlendStates_8(uint8_t value) { ___m_SeparateMRTBlendStates_8 = value; } inline static int32_t get_offset_of_m_AlphaToMask_9() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_AlphaToMask_9)); } inline uint8_t get_m_AlphaToMask_9() const { return ___m_AlphaToMask_9; } inline uint8_t* get_address_of_m_AlphaToMask_9() { return &___m_AlphaToMask_9; } inline void set_m_AlphaToMask_9(uint8_t value) { ___m_AlphaToMask_9 = value; } inline static int32_t get_offset_of_m_Padding_10() { return static_cast<int32_t>(offsetof(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC, ___m_Padding_10)); } inline int16_t get_m_Padding_10() const { return ___m_Padding_10; } inline int16_t* get_address_of_m_Padding_10() { return &___m_Padding_10; } inline void set_m_Padding_10(int16_t value) { ___m_Padding_10 = value; } }; // UnityEngine.Rendering.CullMode struct CullMode_tB2EE0A4E3037D9632C62070AFCF12B64B7CD7D31 { public: // System.Int32 UnityEngine.Rendering.CullMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CullMode_tB2EE0A4E3037D9632C62070AFCF12B64B7CD7D31, ___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; } }; // UnityEngine.Rendering.RenderStateMask struct RenderStateMask_tF27E38BE839F07C591AD1690F17A00F0953051B2 { public: // System.Int32 UnityEngine.Rendering.RenderStateMask::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderStateMask_tF27E38BE839F07C591AD1690F17A00F0953051B2, ___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; } }; // UnityEngine.Timeline.NotificationFlags struct NotificationFlags_tE37DE38ABE7392299C2DAB87BBBFDCF02D7E081A { public: // System.Int16 UnityEngine.Timeline.NotificationFlags::value__ int16_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NotificationFlags_tE37DE38ABE7392299C2DAB87BBBFDCF02D7E081A, ___value___2)); } inline int16_t get_value___2() const { return ___value___2; } inline int16_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int16_t value) { ___value___2 = value; } }; // UnityEngine.UICharInfo struct UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A { public: // UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___cursorPos_0; // System.Single UnityEngine.UICharInfo::charWidth float ___charWidth_1; public: inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___cursorPos_0)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_cursorPos_0() const { return ___cursorPos_0; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_cursorPos_0() { return &___cursorPos_0; } inline void set_cursorPos_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___cursorPos_0 = value; } inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___charWidth_1)); } inline float get_charWidth_1() const { return ___charWidth_1; } inline float* get_address_of_charWidth_1() { return &___charWidth_1; } inline void set_charWidth_1(float value) { ___charWidth_1 = value; } }; // UnityEngine.UIVertex struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 { public: // UnityEngine.Vector3 UnityEngine.UIVertex::position Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0; // UnityEngine.Vector3 UnityEngine.UIVertex::normal Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___normal_1; // UnityEngine.Vector4 UnityEngine.UIVertex::tangent Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2; // UnityEngine.Color32 UnityEngine.UIVertex::color Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_3; // UnityEngine.Vector2 UnityEngine.UIVertex::uv0 Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv0_4; // UnityEngine.Vector2 UnityEngine.UIVertex::uv1 Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv1_5; // UnityEngine.Vector2 UnityEngine.UIVertex::uv2 Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv2_6; // UnityEngine.Vector2 UnityEngine.UIVertex::uv3 Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv3_7; public: inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___position_0)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; } inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___position_0 = value; } inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___normal_1)); } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_normal_1() const { return ___normal_1; } inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_normal_1() { return &___normal_1; } inline void set_normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value) { ___normal_1 = value; } inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___tangent_2)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_tangent_2() const { return ___tangent_2; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_tangent_2() { return &___tangent_2; } inline void set_tangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___tangent_2 = value; } inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___color_3)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_3() const { return ___color_3; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_3() { return &___color_3; } inline void set_color_3(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___color_3 = value; } inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv0_4)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv0_4() const { return ___uv0_4; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv0_4() { return &___uv0_4; } inline void set_uv0_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___uv0_4 = value; } inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv1_5)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv1_5() const { return ___uv1_5; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv1_5() { return &___uv1_5; } inline void set_uv1_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___uv1_5 = value; } inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv2_6)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv2_6() const { return ___uv2_6; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv2_6() { return &___uv2_6; } inline void set_uv2_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___uv2_6 = value; } inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv3_7)); } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv3_7() const { return ___uv3_7; } inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv3_7() { return &___uv3_7; } inline void set_uv3_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value) { ___uv3_7 = value; } }; struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields { public: // UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___s_DefaultColor_8; // UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___s_DefaultTangent_9; // UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___simpleVert_10; public: inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultColor_8)); } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_s_DefaultColor_8() const { return ___s_DefaultColor_8; } inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; } inline void set_s_DefaultColor_8(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value) { ___s_DefaultColor_8 = value; } inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultTangent_9)); } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; } inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; } inline void set_s_DefaultTangent_9(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value) { ___s_DefaultTangent_9 = value; } inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___simpleVert_10)); } inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 get_simpleVert_10() const { return ___simpleVert_10; } inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * get_address_of_simpleVert_10() { return &___simpleVert_10; } inline void set_simpleVert_10(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value) { ___simpleVert_10 = value; } }; // Cinemachine.TargetPositionCache_CacheEntry_RecordingItem struct RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A { public: // System.Single Cinemachine.TargetPositionCache_CacheEntry_RecordingItem::Time float ___Time_0; // System.Boolean Cinemachine.TargetPositionCache_CacheEntry_RecordingItem::IsCut bool ___IsCut_1; // Cinemachine.TargetPositionCache_CacheCurve_Item Cinemachine.TargetPositionCache_CacheEntry_RecordingItem::Item Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE ___Item_2; public: inline static int32_t get_offset_of_Time_0() { return static_cast<int32_t>(offsetof(RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A, ___Time_0)); } inline float get_Time_0() const { return ___Time_0; } inline float* get_address_of_Time_0() { return &___Time_0; } inline void set_Time_0(float value) { ___Time_0 = value; } inline static int32_t get_offset_of_IsCut_1() { return static_cast<int32_t>(offsetof(RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A, ___IsCut_1)); } inline bool get_IsCut_1() const { return ___IsCut_1; } inline bool* get_address_of_IsCut_1() { return &___IsCut_1; } inline void set_IsCut_1(bool value) { ___IsCut_1 = value; } inline static int32_t get_offset_of_Item_2() { return static_cast<int32_t>(offsetof(RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A, ___Item_2)); } inline Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE get_Item_2() const { return ___Item_2; } inline Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE * get_address_of_Item_2() { return &___Item_2; } inline void set_Item_2(Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE value) { ___Item_2 = value; } }; // Native definition for P/Invoke marshalling of Cinemachine.TargetPositionCache/CacheEntry/RecordingItem struct RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A_marshaled_pinvoke { float ___Time_0; int32_t ___IsCut_1; Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE ___Item_2; }; // Native definition for COM marshalling of Cinemachine.TargetPositionCache/CacheEntry/RecordingItem struct RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A_marshaled_com { float ___Time_0; int32_t ___IsCut_1; Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE ___Item_2; }; // System.AggregateException struct AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E : public Exception_t { public: // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> System.AggregateException::m_innerExceptions ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * ___m_innerExceptions_17; public: inline static int32_t get_offset_of_m_innerExceptions_17() { return static_cast<int32_t>(offsetof(AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E, ___m_innerExceptions_17)); } inline ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * get_m_innerExceptions_17() const { return ___m_innerExceptions_17; } inline ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 ** get_address_of_m_innerExceptions_17() { return &___m_innerExceptions_17; } inline void set_m_innerExceptions_17(ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * value) { ___m_innerExceptions_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_innerExceptions_17), (void*)value); } }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // System.Nullable`1<System.Int32Enum> struct Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 { 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_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833, ___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_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t { public: public: }; // System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration> struct Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 : public RuntimeObject { public: // T System.Threading.Tasks.Shared`1::Value CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2, ___Value_0)); } inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 get_Value_0() const { return ___Value_0; } inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___Value_0))->___m_callbackInfo_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___Value_0))->___m_registrationInfo_1))->___m_source_0), (void*)NULL); #endif } }; // System.Threading.Tasks.TaskFactory`1<System.Boolean> struct TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 : 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_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17, ___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; Il2CppCodeGenWriteBarrier((void**)&(((&___m_defaultCancellationToken_0))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17, ___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((void**)(&___m_defaultScheduler_1), (void*)value); } inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17, ___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_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17, ___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; } }; // 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; Il2CppCodeGenWriteBarrier((void**)&(((&___m_defaultCancellationToken_0))->___m_source_0), (void*)NULL); } 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((void**)(&___m_defaultScheduler_1), (void*)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; } }; // 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; Il2CppCodeGenWriteBarrier((void**)&(((&___m_defaultCancellationToken_0))->___m_source_0), (void*)NULL); } 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((void**)(&___m_defaultScheduler_1), (void*)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; } }; // 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; Il2CppCodeGenWriteBarrier((void**)&(((&___m_defaultCancellationToken_0))->___m_source_0), (void*)NULL); } 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((void**)(&___m_defaultScheduler_1), (void*)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; } }; // 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((void**)(&___s_Factory_23), (void*)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((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // 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((void**)(&___s_Factory_23), (void*)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((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // 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((void**)(&___m_result_22), (void*)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((void**)(&___s_Factory_23), (void*)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((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Threading.Tasks.Task`1<System.Threading.Tasks.Task> struct Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 { public: // TResult System.Threading.Tasks.Task`1::m_result Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138, ___m_result_22)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_m_result_22() const { return ___m_result_22; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ___m_result_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_result_22), (void*)value); } }; struct Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t58FE324C5DC18B5ED9A0E49CA8543DEEA65B4462 * ___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_t9183BE7C6FB5EAED091785FC3E1D3D41DB3497F7 * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_t58FE324C5DC18B5ED9A0E49CA8543DEEA65B4462 * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_t58FE324C5DC18B5ED9A0E49CA8543DEEA65B4462 ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_t58FE324C5DC18B5ED9A0E49CA8543DEEA65B4462 * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t9183BE7C6FB5EAED091785FC3E1D3D41DB3497F7 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t9183BE7C6FB5EAED091785FC3E1D3D41DB3497F7 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t9183BE7C6FB5EAED091785FC3E1D3D41DB3497F7 * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // 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((void**)(&___s_Factory_23), (void*)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((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource struct RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 { public: // System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource::<handle>k__BackingField int32_t ___U3ChandleU3Ek__BackingField_0; // UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceType UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource::<type>k__BackingField int32_t ___U3CtypeU3Ek__BackingField_1; // System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource::<version>k__BackingField int32_t ___U3CversionU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3ChandleU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524, ___U3ChandleU3Ek__BackingField_0)); } inline int32_t get_U3ChandleU3Ek__BackingField_0() const { return ___U3ChandleU3Ek__BackingField_0; } inline int32_t* get_address_of_U3ChandleU3Ek__BackingField_0() { return &___U3ChandleU3Ek__BackingField_0; } inline void set_U3ChandleU3Ek__BackingField_0(int32_t value) { ___U3ChandleU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CtypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524, ___U3CtypeU3Ek__BackingField_1)); } inline int32_t get_U3CtypeU3Ek__BackingField_1() const { return ___U3CtypeU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CtypeU3Ek__BackingField_1() { return &___U3CtypeU3Ek__BackingField_1; } inline void set_U3CtypeU3Ek__BackingField_1(int32_t value) { ___U3CtypeU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CversionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524, ___U3CversionU3Ek__BackingField_2)); } inline int32_t get_U3CversionU3Ek__BackingField_2() const { return ___U3CversionU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CversionU3Ek__BackingField_2() { return &___U3CversionU3Ek__BackingField_2; } inline void set_U3CversionU3Ek__BackingField_2(int32_t value) { ___U3CversionU3Ek__BackingField_2 = value; } }; // UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource struct RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF { public: // System.Int32 UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource::<handle>k__BackingField int32_t ___U3ChandleU3Ek__BackingField_0; // UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResourceType UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource::<type>k__BackingField int32_t ___U3CtypeU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3ChandleU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF, ___U3ChandleU3Ek__BackingField_0)); } inline int32_t get_U3ChandleU3Ek__BackingField_0() const { return ___U3ChandleU3Ek__BackingField_0; } inline int32_t* get_address_of_U3ChandleU3Ek__BackingField_0() { return &___U3ChandleU3Ek__BackingField_0; } inline void set_U3ChandleU3Ek__BackingField_0(int32_t value) { ___U3ChandleU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CtypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF, ___U3CtypeU3Ek__BackingField_1)); } inline int32_t get_U3CtypeU3Ek__BackingField_1() const { return ___U3CtypeU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CtypeU3Ek__BackingField_1() { return &___U3CtypeU3Ek__BackingField_1; } inline void set_U3CtypeU3Ek__BackingField_1(int32_t value) { ___U3CtypeU3Ek__BackingField_1 = value; } }; // UnityEngine.Playables.Playable struct Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 { public: // UnityEngine.Playables.PlayableHandle UnityEngine.Playables.Playable::m_Handle PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0, ___m_Handle_0)); } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 get_m_Handle_0() const { return ___m_Handle_0; } inline PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 * get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(PlayableHandle_t9D3B4E540D4413CED81DDD6A24C5373BEFA1D182 value) { ___m_Handle_0 = value; } }; struct Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_StaticFields { public: // UnityEngine.Playables.Playable UnityEngine.Playables.Playable::m_NullPlayable Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 ___m_NullPlayable_1; public: inline static int32_t get_offset_of_m_NullPlayable_1() { return static_cast<int32_t>(offsetof(Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0_StaticFields, ___m_NullPlayable_1)); } inline Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 get_m_NullPlayable_1() const { return ___m_NullPlayable_1; } inline Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 * get_address_of_m_NullPlayable_1() { return &___m_NullPlayable_1; } inline void set_m_NullPlayable_1(Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 value) { ___m_NullPlayable_1 = value; } }; // 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((void**)(&___m_StreamName_0), (void*)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((void**)(&___m_SourceObject_1), (void*)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((void**)(&___m_SourceBindingType_2), (void*)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((void**)(&___m_CreateOutputMethod_3), (void*)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((void**)(&___None_4), (void*)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; } }; // 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; }; // UnityEngine.Rendering.RasterState struct RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E { public: // UnityEngine.Rendering.CullMode UnityEngine.Rendering.RasterState::m_CullingMode int32_t ___m_CullingMode_1; // System.Int32 UnityEngine.Rendering.RasterState::m_OffsetUnits int32_t ___m_OffsetUnits_2; // System.Single UnityEngine.Rendering.RasterState::m_OffsetFactor float ___m_OffsetFactor_3; // System.Byte UnityEngine.Rendering.RasterState::m_DepthClip uint8_t ___m_DepthClip_4; // System.Byte UnityEngine.Rendering.RasterState::m_Padding1 uint8_t ___m_Padding1_5; // System.Byte UnityEngine.Rendering.RasterState::m_Padding2 uint8_t ___m_Padding2_6; // System.Byte UnityEngine.Rendering.RasterState::m_Padding3 uint8_t ___m_Padding3_7; public: inline static int32_t get_offset_of_m_CullingMode_1() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_CullingMode_1)); } inline int32_t get_m_CullingMode_1() const { return ___m_CullingMode_1; } inline int32_t* get_address_of_m_CullingMode_1() { return &___m_CullingMode_1; } inline void set_m_CullingMode_1(int32_t value) { ___m_CullingMode_1 = value; } inline static int32_t get_offset_of_m_OffsetUnits_2() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_OffsetUnits_2)); } inline int32_t get_m_OffsetUnits_2() const { return ___m_OffsetUnits_2; } inline int32_t* get_address_of_m_OffsetUnits_2() { return &___m_OffsetUnits_2; } inline void set_m_OffsetUnits_2(int32_t value) { ___m_OffsetUnits_2 = value; } inline static int32_t get_offset_of_m_OffsetFactor_3() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_OffsetFactor_3)); } inline float get_m_OffsetFactor_3() const { return ___m_OffsetFactor_3; } inline float* get_address_of_m_OffsetFactor_3() { return &___m_OffsetFactor_3; } inline void set_m_OffsetFactor_3(float value) { ___m_OffsetFactor_3 = value; } inline static int32_t get_offset_of_m_DepthClip_4() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_DepthClip_4)); } inline uint8_t get_m_DepthClip_4() const { return ___m_DepthClip_4; } inline uint8_t* get_address_of_m_DepthClip_4() { return &___m_DepthClip_4; } inline void set_m_DepthClip_4(uint8_t value) { ___m_DepthClip_4 = value; } inline static int32_t get_offset_of_m_Padding1_5() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_Padding1_5)); } inline uint8_t get_m_Padding1_5() const { return ___m_Padding1_5; } inline uint8_t* get_address_of_m_Padding1_5() { return &___m_Padding1_5; } inline void set_m_Padding1_5(uint8_t value) { ___m_Padding1_5 = value; } inline static int32_t get_offset_of_m_Padding2_6() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_Padding2_6)); } inline uint8_t get_m_Padding2_6() const { return ___m_Padding2_6; } inline uint8_t* get_address_of_m_Padding2_6() { return &___m_Padding2_6; } inline void set_m_Padding2_6(uint8_t value) { ___m_Padding2_6 = value; } inline static int32_t get_offset_of_m_Padding3_7() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E, ___m_Padding3_7)); } inline uint8_t get_m_Padding3_7() const { return ___m_Padding3_7; } inline uint8_t* get_address_of_m_Padding3_7() { return &___m_Padding3_7; } inline void set_m_Padding3_7(uint8_t value) { ___m_Padding3_7 = value; } }; struct RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E_StaticFields { public: // UnityEngine.Rendering.RasterState UnityEngine.Rendering.RasterState::defaultValue RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E ___defaultValue_0; public: inline static int32_t get_offset_of_defaultValue_0() { return static_cast<int32_t>(offsetof(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E_StaticFields, ___defaultValue_0)); } inline RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E get_defaultValue_0() const { return ___defaultValue_0; } inline RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E * get_address_of_defaultValue_0() { return &___defaultValue_0; } inline void set_defaultValue_0(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E value) { ___defaultValue_0 = value; } }; // UnityEngine.Timeline.TimeNotificationBehaviour_NotificationEntry struct NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A { public: // System.Double UnityEngine.Timeline.TimeNotificationBehaviour_NotificationEntry::time double ___time_0; // UnityEngine.Playables.INotification UnityEngine.Timeline.TimeNotificationBehaviour_NotificationEntry::payload RuntimeObject* ___payload_1; // System.Boolean UnityEngine.Timeline.TimeNotificationBehaviour_NotificationEntry::notificationFired bool ___notificationFired_2; // UnityEngine.Timeline.NotificationFlags UnityEngine.Timeline.TimeNotificationBehaviour_NotificationEntry::flags int16_t ___flags_3; public: inline static int32_t get_offset_of_time_0() { return static_cast<int32_t>(offsetof(NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A, ___time_0)); } inline double get_time_0() const { return ___time_0; } inline double* get_address_of_time_0() { return &___time_0; } inline void set_time_0(double value) { ___time_0 = value; } inline static int32_t get_offset_of_payload_1() { return static_cast<int32_t>(offsetof(NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A, ___payload_1)); } inline RuntimeObject* get_payload_1() const { return ___payload_1; } inline RuntimeObject** get_address_of_payload_1() { return &___payload_1; } inline void set_payload_1(RuntimeObject* value) { ___payload_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___payload_1), (void*)value); } inline static int32_t get_offset_of_notificationFired_2() { return static_cast<int32_t>(offsetof(NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A, ___notificationFired_2)); } inline bool get_notificationFired_2() const { return ___notificationFired_2; } inline bool* get_address_of_notificationFired_2() { return &___notificationFired_2; } inline void set_notificationFired_2(bool value) { ___notificationFired_2 = value; } inline static int32_t get_offset_of_flags_3() { return static_cast<int32_t>(offsetof(NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A, ___flags_3)); } inline int16_t get_flags_3() const { return ___flags_3; } inline int16_t* get_address_of_flags_3() { return &___flags_3; } inline void set_flags_3(int16_t value) { ___flags_3 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Timeline.TimeNotificationBehaviour/NotificationEntry struct NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A_marshaled_pinvoke { double ___time_0; RuntimeObject* ___payload_1; int32_t ___notificationFired_2; int16_t ___flags_3; }; // Native definition for COM marshalling of UnityEngine.Timeline.TimeNotificationBehaviour/NotificationEntry struct NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A_marshaled_com { double ___time_0; RuntimeObject* ___payload_1; int32_t ___notificationFired_2; int16_t ___flags_3; }; // System.Action struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579 : public MulticastDelegate_t { public: public: }; // System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<System.Object>> struct Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 : public MulticastDelegate_t { public: public: }; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Boolean> struct Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Int32> struct Func_1_t30631A63BE46FE93700939B764202D360449FE30 : public MulticastDelegate_t { public: public: }; // System.Func`1<System.Object> struct Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.Boolean> struct Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.Int32> struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.Object> struct Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Object,System.UInt32> struct Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Boolean>> struct Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Int32>> struct Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Object>> struct Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD : public MulticastDelegate_t { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // 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; Il2CppCodeGenWriteBarrier((void**)&(((&____cancellationToken_17))->___m_source_0), (void*)NULL); } }; // System.Predicate`1<Cinemachine.CameraState_CustomBlendable> struct Predicate_1_t9521EB82ACE41AD71C0C8D6E3E7CB57CF8A90762 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<Cinemachine.CinemachineClearShot_Pair> struct Predicate_1_t4859C57AE169CFEAD7B0DDB3D8B85CEC17A01023 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<Cinemachine.CinemachineStateDrivenCamera_HashPair> struct Predicate_1_t3E119AAC3C020B4C3584C6CC40DDA35273C4AFD8 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<Cinemachine.TargetPositionCache_CacheCurve_Item> struct Predicate_1_tE679129F26B83506213AABAFDDB02E4E54394B60 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<Cinemachine.TargetPositionCache_CacheEntry_RecordingItem> struct Predicate_1_t7220680686D0F96C39750996F326CA0A6A23C7AF : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Byte> struct Predicate_1_tFDB7E349837C854DED22559777D0F1D11C83E875 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Char> struct Predicate_1_t72B0E826A53687129ED01DCB215AB69C8EF296DA : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct Predicate_1_t0CED81C3FC8E7102A1E55F8156E33915BDC8EB2C : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Diagnostics.Tracing.EventProvider_SessionInfo> struct Predicate_1_t5DF4D75C44806F4C5EE19F79D23B7DD693B92D83 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Int32> struct Predicate_1_t2E795623C97B4C5B38406E9201D0720C5C15895F : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Int32Enum> struct Predicate_1_t04D23B98D3C2827AAD9018CEB5C22E4F69AE649A : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Int64> struct Predicate_1_t480A858115E18AE09004B70F8D424B430CC2BB81 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Object> struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.Single> struct Predicate_1_t841FDBD98DB0D653BF54D71E3481608E51DD4F38 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.UInt32> struct Predicate_1_t3583426FF9E6498ABD95E96A9738B5B9E127CD81 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.UInt64> struct Predicate_1_t3E5A8BAE2A782FF0F14E0629B643CCEF02A7BE3F : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.ValueTuple`2<System.Int32,System.Object>> struct Predicate_1_t5668238D18203A0B9A2146A71BE08456395DCAFF : public MulticastDelegate_t { public: public: }; // System.Predicate`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>> struct Predicate_1_t43A0F43C51DC8DD6D24A9511A4624763BE778DE3 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame> struct Predicate_1_tB49E63EDA80D01F4A107737EB2622C74B64D1C46 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.AnimatorClipInfo> struct Predicate_1_t2654C282BB27C89BF1BB5D7FCC09DD6DD09C4D22 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.BeforeRenderHelper_OrderBlock> struct Predicate_1_t6021C753A4C8761482AE2125268A1F20CC5302F9 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Color32> struct Predicate_1_tA8093CB95EF5DA7B543ABA099527806A0FE5BD4E : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Color> struct Predicate_1_t61DDCCB390DE4D540A71E6908516D815FBC3F07E : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.EventSystems.RaycastResult> struct Predicate_1_t3BE7E6936879AAE7D83581BB6DBEB5AB7966797B : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource> struct Predicate_1_tE3D5694609E51215B4376F06DA6D8B0915659522 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource> struct Predicate_1_t8ED3DE1F08418BEC8373C50FC9DB31983FC263E4 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex> struct Predicate_1_t374DC9880DE0B98D67A6BA3B77648958F4D954E9 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge> struct Predicate_1_tE6258625C04FDEEA071A97A0914827AB3721815A : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.GradientAlphaKey> struct Predicate_1_t003940FBB1C3AE696D372DA7CA9A10DE87142B15 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.GradientColorKey> struct Predicate_1_tD19929B0FE35135B95CFA6F4D8EB2AB04E91B5ED : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Playables.PlayableBinding> struct Predicate_1_t9E83FE2FFFED37D642AF2B395BB7F966739ADAE1 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Polybrush.CommonEdge> struct Predicate_1_t0EBB009AADDF380967A2B91710A72829197329CD : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.RaycastHit2D> struct Predicate_1_t2E7328AF8D5171CD04F3ADE6309A349DEDFF4D96 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Rendering.ShaderTagId> struct Predicate_1_t210056A6DD5FD7834AEA5E40F08DD18A64A8CD50 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.TextCore.GlyphRect> struct Predicate_1_tB0A5EFEBC66C6A7540167D26FA783AFDCCB2DDD1 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Timeline.IntervalTreeNode> struct Predicate_1_tD5FCEA88DD45A302EB8551F25B4BE35F50F12F4D : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Timeline.IntervalTree`1_Entry<System.Object>> struct Predicate_1_t2E5ABCE04476F52E5984266F258E030035608C16 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Timeline.TimeNotificationBehaviour_NotificationEntry> struct Predicate_1_t9B364626E1833645CE9E40E210F351EEE2828A51 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.UICharInfo> struct Predicate_1_tBE52451BEC74D597DE894237BB32DFC9015F9697 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.UIElements.FocusController_FocusedElement> struct Predicate_1_t4D9C20A6A7FA5C2332CD5F5F884429C8E5253B50 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.UILineInfo> struct Predicate_1_t10822666A90A56FEFE6380CDD491BDEAC56F650D : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.UIVertex> struct Predicate_1_t39035309B4A9F1D72B4B123440525667819D4683 : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.UnitySynchronizationContext_WorkRequest> struct Predicate_1_tB36DEBDA8A92B190BF11D931895C0C099709AFFB : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Vector2> struct Predicate_1_tAFE9774406A8EEF2CB0FD007CE08B234C2D47ACA : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Vector3> struct Predicate_1_tE5F02AA525EA77379C5162F9A56CEFED1EBC3D4F : public MulticastDelegate_t { public: public: }; // System.Predicate`1<UnityEngine.Vector4> struct Predicate_1_tE53B3E1A17705A6185547CF352AD3E33938E2C94 : public MulticastDelegate_t { public: public: }; // System.Reflection.MonoProperty_Getter`2<System.Object,System.Object> struct Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C : public MulticastDelegate_t { public: public: }; // System.Reflection.MonoProperty_StaticGetter`1<System.Object> struct StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 : public MulticastDelegate_t { public: public: }; // System.Runtime.CompilerServices.ConditionalWeakTable`2_CreateValueCallback<System.Object,System.Object> struct CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F : public MulticastDelegate_t { public: public: }; // UnityEngine.Rendering.RenderStateBlock struct RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE { public: // UnityEngine.Rendering.BlendState UnityEngine.Rendering.RenderStateBlock::m_BlendState BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC ___m_BlendState_0; // UnityEngine.Rendering.RasterState UnityEngine.Rendering.RenderStateBlock::m_RasterState RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E ___m_RasterState_1; // UnityEngine.Rendering.DepthState UnityEngine.Rendering.RenderStateBlock::m_DepthState DepthState_t8C699747E66773A90F87252A8E978924050C7F12 ___m_DepthState_2; // UnityEngine.Rendering.StencilState UnityEngine.Rendering.RenderStateBlock::m_StencilState StencilState_t46E35B038A8E436BD616755432326977CB3E5E78 ___m_StencilState_3; // System.Int32 UnityEngine.Rendering.RenderStateBlock::m_StencilReference int32_t ___m_StencilReference_4; // UnityEngine.Rendering.RenderStateMask UnityEngine.Rendering.RenderStateBlock::m_Mask int32_t ___m_Mask_5; public: inline static int32_t get_offset_of_m_BlendState_0() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_BlendState_0)); } inline BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC get_m_BlendState_0() const { return ___m_BlendState_0; } inline BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC * get_address_of_m_BlendState_0() { return &___m_BlendState_0; } inline void set_m_BlendState_0(BlendState_t049C496B1ECB9090BE0082437BBC6BA2AA9ADCDC value) { ___m_BlendState_0 = value; } inline static int32_t get_offset_of_m_RasterState_1() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_RasterState_1)); } inline RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E get_m_RasterState_1() const { return ___m_RasterState_1; } inline RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E * get_address_of_m_RasterState_1() { return &___m_RasterState_1; } inline void set_m_RasterState_1(RasterState_t099D8A7FB9375690FBDD81774CAD5F7868EDBD3E value) { ___m_RasterState_1 = value; } inline static int32_t get_offset_of_m_DepthState_2() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_DepthState_2)); } inline DepthState_t8C699747E66773A90F87252A8E978924050C7F12 get_m_DepthState_2() const { return ___m_DepthState_2; } inline DepthState_t8C699747E66773A90F87252A8E978924050C7F12 * get_address_of_m_DepthState_2() { return &___m_DepthState_2; } inline void set_m_DepthState_2(DepthState_t8C699747E66773A90F87252A8E978924050C7F12 value) { ___m_DepthState_2 = value; } inline static int32_t get_offset_of_m_StencilState_3() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_StencilState_3)); } inline StencilState_t46E35B038A8E436BD616755432326977CB3E5E78 get_m_StencilState_3() const { return ___m_StencilState_3; } inline StencilState_t46E35B038A8E436BD616755432326977CB3E5E78 * get_address_of_m_StencilState_3() { return &___m_StencilState_3; } inline void set_m_StencilState_3(StencilState_t46E35B038A8E436BD616755432326977CB3E5E78 value) { ___m_StencilState_3 = value; } inline static int32_t get_offset_of_m_StencilReference_4() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_StencilReference_4)); } inline int32_t get_m_StencilReference_4() const { return ___m_StencilReference_4; } inline int32_t* get_address_of_m_StencilReference_4() { return &___m_StencilReference_4; } inline void set_m_StencilReference_4(int32_t value) { ___m_StencilReference_4 = value; } inline static int32_t get_offset_of_m_Mask_5() { return static_cast<int32_t>(offsetof(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE, ___m_Mask_5)); } inline int32_t get_m_Mask_5() const { return ___m_Mask_5; } inline int32_t* get_address_of_m_Mask_5() { return &___m_Mask_5; } inline void set_m_Mask_5(int32_t value) { ___m_Mask_5 = value; } }; // UnityEngine.Timeline.AnimationOutputWeightProcessor_WeightInfo struct WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE { public: // UnityEngine.Playables.Playable UnityEngine.Timeline.AnimationOutputWeightProcessor_WeightInfo::mixer Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 ___mixer_0; // UnityEngine.Playables.Playable UnityEngine.Timeline.AnimationOutputWeightProcessor_WeightInfo::parentMixer Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 ___parentMixer_1; // System.Int32 UnityEngine.Timeline.AnimationOutputWeightProcessor_WeightInfo::port int32_t ___port_2; public: inline static int32_t get_offset_of_mixer_0() { return static_cast<int32_t>(offsetof(WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE, ___mixer_0)); } inline Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 get_mixer_0() const { return ___mixer_0; } inline Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 * get_address_of_mixer_0() { return &___mixer_0; } inline void set_mixer_0(Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 value) { ___mixer_0 = value; } inline static int32_t get_offset_of_parentMixer_1() { return static_cast<int32_t>(offsetof(WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE, ___parentMixer_1)); } inline Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 get_parentMixer_1() const { return ___parentMixer_1; } inline Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 * get_address_of_parentMixer_1() { return &___parentMixer_1; } inline void set_parentMixer_1(Playable_t4ABB910C374FCAB6B926DA4D34A85857A59950D0 value) { ___parentMixer_1 = value; } inline static int32_t get_offset_of_port_2() { return static_cast<int32_t>(offsetof(WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE, ___port_2)); } inline int32_t get_port_2() const { return ___port_2; } inline int32_t* get_address_of_port_2() { return &___port_2; } inline void set_port_2(int32_t value) { ___port_2 = value; } }; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: public: }; // 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((void**)(&___m_actualValue_19), (void*)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((void**)(&____rangeMessage_18), (void*)value); } }; // System.Nullable`1<UnityEngine.Rendering.RenderStateBlock> struct Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F { public: // T System.Nullable`1::value RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE ___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_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F, ___value_0)); } inline RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE get_value_0() const { return ___value_0; } inline RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE * get_address_of_value_0() { return &___value_0; } inline void set_value_0(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Predicate`1<UnityEngine.Timeline.AnimationOutputWeightProcessor_WeightInfo> struct Predicate_1_tAFABF0537FD8D848F2539B4D4CDCA73A2C172EDB : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // 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.Linq.Lookup`2_Grouping<System.Object,System.Object>[] struct GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671 : public RuntimeArray { public: ALIGN_FIELD (8) Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * m_Items[1]; public: inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 ** 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, Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>[] struct GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B : public RuntimeArray { public: ALIGN_FIELD (8) Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * m_Items[1]; public: inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC ** 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, Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Linq.Set`1_Slot<System.Int32>[] struct SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691 : public RuntimeArray { public: ALIGN_FIELD (8) Slot_t00B862D6E9168F7117904379E1E17AA652CF3260 m_Items[1]; public: inline Slot_t00B862D6E9168F7117904379E1E17AA652CF3260 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Slot_t00B862D6E9168F7117904379E1E17AA652CF3260 * 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, Slot_t00B862D6E9168F7117904379E1E17AA652CF3260 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Slot_t00B862D6E9168F7117904379E1E17AA652CF3260 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Slot_t00B862D6E9168F7117904379E1E17AA652CF3260 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_t00B862D6E9168F7117904379E1E17AA652CF3260 value) { m_Items[index] = value; } }; // System.Linq.Set`1_Slot<System.Object>[] struct SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A : public RuntimeArray { public: ALIGN_FIELD (8) Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 m_Items[1]; public: inline Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 * 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, Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); } inline Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_tCF8D19DD47F11AC26C03BEF31B61AC3F3BFFAF55 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); } }; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray { public: ALIGN_FIELD (8) Delegate_t * m_Items[1]; public: inline Delegate_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Delegate_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, Delegate_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Threading.Tasks.Task`1<System.Int32>[] struct Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20 : public RuntimeArray { public: ALIGN_FIELD (8) Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * m_Items[1]; public: inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** 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, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)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; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); #endif } 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; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); #endif } }; // System.Void System.Linq.Buffer`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_1__ctor_mFC593D644243CEC302C442E4AA893955A7EA307C_gshared (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * __this, RuntimeObject* ___source0, const RuntimeMethod* method); // System.Void System.Nullable`1<System.Boolean>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Boolean>::get_HasValue() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_gshared_inline (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method); // T System.Nullable`1<System.Boolean>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_Value_m7C9CFCE6186F3CD55B4D63BB50E6D3D48A78583A_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Boolean>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m5675B6057A25CD775313F9B3B69932E06A7DCB04_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___other0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Boolean>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mCF874DB6A45A0E1794D966BC6CBD63218E2ABD11_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.Nullable`1<System.Boolean>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mB8F830CC7EDF8E3FA462E0D05B8242F388FA1F16_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method); // T System.Nullable`1<System.Boolean>::GetValueOrDefault() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_gshared_inline (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method); // System.String System.Nullable`1<System.Boolean>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_mA289110DA157CC0FC479D7424CA11F974D9D6655_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method); // System.Void System.Nullable`1<System.Int32>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, int32_t ___value0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Int32>::get_HasValue() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_gshared_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method); // T System.Nullable`1<System.Int32>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_get_Value_mA8BB683CA6A8C5BF448A737FB5A2AF63C730B3E5_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Int32>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mFFEE098834767D89CBF264F5B4FD3E3ACC7015E6_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___other0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Int32>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m5D590E2CB3FAB0FF32A3B16AC25813089A0523F0_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.Nullable`1<System.Int32>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_m56AC4B3DFFC7510EF5C98721FF2A2ACB898B0EF2_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method); // T System.Nullable`1<System.Int32>::GetValueOrDefault() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_gshared_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method); // System.String System.Nullable`1<System.Int32>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m8B3E28321CC3D391381CE384D61F16E59C8B1BBE_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method); // System.Void System.Nullable`1<System.Int32Enum>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Int32Enum>::get_HasValue() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method); // T System.Nullable`1<System.Int32Enum>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_get_Value_m32D4CD9D36108D7EE445A232AAB86E6DD0CB001B_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Int32Enum>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mC856AC1460EF4282C8E56291C412A0A916DD2712_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 ___other0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Int32Enum>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mDB884205D5954E6C2DBE345DFB806D3F1BAED080_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.Nullable`1<System.Int32Enum>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mF2DA27E4C81C52280695B8185A5B3F34A16BDB5B_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method); // T System.Nullable`1<System.Int32Enum>::GetValueOrDefault() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_gshared_inline (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method); // System.String System.Nullable`1<System.Int32Enum>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_mA342DAFAACE3FF6BD1F5F41A003BB56981B308C6_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method); // System.Void System.Nullable`1<System.Single>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m7684344C547C49122B242D657ED4F2CA1C5C6B9F_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, float ___value0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Single>::get_HasValue() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_gshared_inline (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method); // T System.Nullable`1<System.Single>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Single>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m4AF55EB69E27EA4B93F15251F604285D62426E33_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 ___other0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<System.Single>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m616873F8BAC7A9E73D0CE2D3EC9EC49F6167C0E0_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.Nullable`1<System.Single>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mC37D0B59BBA0C4499BDB8C0C768278EE8C450843_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method); // T System.Nullable`1<System.Single>::GetValueOrDefault() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_gshared_inline (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method); // System.String System.Nullable`1<System.Single>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_mC6D12173E52B269C4AF65B27671CB5E46BAADEFF_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method); // System.Void System.Nullable`1<UnityEngine.Color>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m04D6D6F6B0D572ED38D3E5CB80E2528C5E6360BD_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Color>::get_HasValue() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_gshared_inline (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method); // T System.Nullable`1<UnityEngine.Color>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Nullable_1_get_Value_m904F41E85B564BEA9E2D8BB5BA38173F99078A3E_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Color>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m5DEFB9CC500A1486BCEC1D5D691DFF1BEEAD9F81_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB ___other0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Color>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m40ADF33A723A68AB2B2FEB59AFECC69CD4F223AB_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.Nullable`1<UnityEngine.Color>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_m94232DE86EB0E6B35607A39DA9F513CF9754F2F9_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method); // T System.Nullable`1<UnityEngine.Color>::GetValueOrDefault() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_gshared_inline (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method); // System.String System.Nullable`1<UnityEngine.Color>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m363E0AD25D0DB0B6F8C916315B9F245B0029FA72_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method); // System.Void System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m2363E26BE9E8EE765BEA232058A47DF46945F616_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A ___value0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::get_HasValue() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_gshared_inline (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method); // T System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A Nullable_1_get_Value_m54AA814374E14F2513143A5032F9E4AAD3228226_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m27BA7C9660B3660D2EBE7395D74074C360B96E6D_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 ___other0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m867EB0D65ACB5204CFF11EFE7BC5B77D1FEDD846_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mA2A8D10C6803F789C01D884345427C207032E80A_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method); // T System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::GetValueOrDefault() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_gshared_inline (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method); // System.String System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m6862243F6976595439F489C10790596B13D113B3_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method); // System.Void System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mA8ED073A176FC38129CED874F576B6CC839EC5EA_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE ___value0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::get_HasValue() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_gshared_inline (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method); // T System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE Nullable_1_get_Value_m1F3DEA1D85DFE14F9D74A4DA014B0282D4BCEF1C_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mDD3F51FAFBD5B40CE0D778E2AE3303A40209F45E_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F ___other0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m12B7CCFE77645EF7BFFE6747B0DC0A743E3FAEDC_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_m75D5966FDDEC3F900C21CBFEE03A8BC087408E41_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method); // T System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::GetValueOrDefault() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_gshared_inline (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method); // System.String System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m7EA7DF40B01B84A39807813416C4C186B23C52C4_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method); // System.Void System.Nullable`1<UnityEngine.Vector3>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m49ABD148B7A7789CB005BA17CA29E1896EE35057_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Vector3>::get_HasValue() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_gshared_inline (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method); // T System.Nullable`1<UnityEngine.Vector3>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Nullable_1_get_Value_m902B83FE050783CC1CEF6CB970A5AAB926F77D9C_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Vector3>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m1FA9AE8F6E43B1AC7DA2EF0F387F081979467C25_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE ___other0, const RuntimeMethod* method); // System.Boolean System.Nullable`1<UnityEngine.Vector3>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mC4A197FA803FF5A473A45D9362E8DE3C3A0C9637_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 System.Nullable`1<UnityEngine.Vector3>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_m99637F7283FCCB08B4C2DB9BE61B44EB07C7ED1F_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method); // T System.Nullable`1<UnityEngine.Vector3>::GetValueOrDefault() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_gshared_inline (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method); // System.String System.Nullable`1<UnityEngine.Vector3>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m5CF657AB54EFB4B3E09840F5217CA707B9EC967A_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m6C16FFAECC8CE76F82289A87141A9524F5B09C60_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method); // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::get_Task() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * AsyncTaskMethodBuilder_1_get_Task_mE71F3C1D2587BE90812781280F0175E9CE14BA66_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, const RuntimeMethod* method); // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::GetTaskForResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * AsyncTaskMethodBuilder_1_GetTaskForResult_mBCC369A6A2330CE1DA71FF770CF128EF6C5CB7F1_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, bool ___result0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, bool ___result0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m18ACA0FEA9C22741AE3229F64EFCD66E2DE7ED16_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___completedTask0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, Exception_t * ___exception0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method); // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, const RuntimeMethod* method); // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::GetTaskForResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * AsyncTaskMethodBuilder_1_GetTaskForResult_m25C4063D490D0AD29E9EB9BFB2973A4DC15D9408_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, RuntimeObject * ___result0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, RuntimeObject * ___result0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mCCBBC85BA750240E46519BDDA6301130646CA4BB_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___completedTask0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, Exception_t * ___exception0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m69471716E68A2553BAA340A0A780CD6953E3ECD3_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method); // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::get_Task() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * AsyncTaskMethodBuilder_1_get_Task_mB90A654E7FBAE31DB64597AA0B3B5ED3712E2966_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, const RuntimeMethod* method); // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::GetTaskForResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * AsyncTaskMethodBuilder_1_GetTaskForResult_m5CF1A462822DB26CF310955638395584F9057E09_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___result0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___result0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mBD219CF220624C992AC67B976E3D8DCE381DF027_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___completedTask0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, Exception_t * ___exception0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mBC2C82388746A0B33A7CC359CB90AB34F4CB0F80_gshared (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m3106B5C67EF6270B9DB4B5E1C5C687BCAA446F24_gshared (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m52A95CEFA755CAAEE1E8755101ACA45A295A7A35_gshared (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_GetResult_mC2B7B126733CDE385D61F2036F9D0668B36F171B_gshared (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mFD356296FDD56905A728A7EF64E95DA08F0CDE26_gshared (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_gshared (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m51FAB5E9A9B65CADB2FC226EDDA77B18E003AD60_gshared (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_gshared (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mFE77210335876C9788ECDD3C5393C4636B39A00B_gshared (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586_gshared (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m4839332C5C05D22963CEA62A1FEE699C68109404_gshared (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E_gshared (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m0E48D705E5FED5CC83670FA7A2B32702BBE20840_gshared (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m1429B429A92D467192E16F1291BAA5761706EAB0_gshared (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_mA3AA09BD7CC25D9F838DF9BBBF200B41C65BBD57_gshared (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ConfiguredTaskAwaiter_GetResult_mE6DE53E996B30ABB828D43811259EC164DDC607B_gshared (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mFB57BDDFCD7717F4EFBA0C41312C99E8E24D31C7_gshared (ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::GetAwaiter() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_gshared_inline (ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m9038EF920A0F90A746627FF394F3A44ED51CFB21_gshared (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_gshared_inline (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mB82ADF237AE2CA3076F32A86D153EBD7B339E3B7_gshared (ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::GetAwaiter() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_gshared_inline (ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mAD28136B3EBB7A59923B02CD31DE0E0DB4B69FA7_gshared (ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method); // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_gshared_inline (ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_gshared_inline (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m682D0FAFEEB8268BB1EC46583C9F93A15999E743_gshared (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskAwaiter_1_GetResult_m77546DD82B46E6BAAAA79AB5F1BBCD2567E0F7F8_gshared (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_gshared_inline (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m8D75DA13F52ABD6D5ACD823594F6A5CD43BE2A3E_gshared (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_gshared (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_gshared_inline (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m4204CC2DE0200E2EFA43C485022F816D27298975_gshared (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskAwaiter_1_GetResult_m9E148849CD4747E1BDD831E4FB2D7ECFA13C11C8_gshared (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_gshared_inline (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_mCD78FE2109BECF3B49ABCC367C9A1304BD390A98_gshared (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 TaskAwaiter_1_GetResult_m9653F7144240DCB33FCDAC21DE6A89FD12F58BA5_gshared (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * __this, const RuntimeMethod* method); // System.Void System.RuntimeType/ListBuilder`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBuilder_1__ctor_m732FB66A81E20018611D91961EFC856084C6596E_gshared (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, int32_t ___capacity0, const RuntimeMethod* method); // T System.RuntimeType/ListBuilder`1<System.Object>::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ListBuilder_1_get_Item_m440ACBC3F6764B4992840EEEC1CCA9AFD3A5886D_gshared (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, int32_t ___index0, const RuntimeMethod* method); // T[] System.RuntimeType/ListBuilder`1<System.Object>::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ListBuilder_1_ToArray_m9DAACFD0ECFE92359885E585A3BE6EE34A43798E_gshared (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, const RuntimeMethod* method); // System.Void System.RuntimeType/ListBuilder`1<System.Object>::CopyTo(System.Object[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBuilder_1_CopyTo_m88C60144CC6606D734A5522D4EC6027CE1E01FAE_gshared (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method); // System.Int32 System.RuntimeType/ListBuilder`1<System.Object>::get_Count() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_gshared_inline (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, const RuntimeMethod* method); // System.Void System.RuntimeType/ListBuilder`1<System.Object>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBuilder_1_Add_m42B66384FC0CD58D994246D40CB4F473D3E639A4_gshared (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // T System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::get_PreviousValue() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_gshared_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, const RuntimeMethod* method); // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_PreviousValue(T) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_gshared_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // T System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::get_CurrentValue() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_gshared_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, const RuntimeMethod* method); // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_CurrentValue(T) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_gshared_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_ThreadContextChanged(System.Boolean) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_gshared_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, bool ___value0, const RuntimeMethod* method); // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::.ctor(T,T,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1__ctor_m35C870EB8F451D9D0916F75F48C8FD4B08AD1FF8_gshared (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, RuntimeObject * ___previousValue0, RuntimeObject * ___currentValue1, bool ___contextChanged2, const RuntimeMethod* method); // System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparselyPopulatedArrayAddInfo_1__ctor_m1A9D946CCFA8A499F78A0BF45E83C3E51E8AD481_gshared (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * __this, SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * ___source0, int32_t ___index1, const RuntimeMethod* method); // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_gshared_inline (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * __this, const RuntimeMethod* method); // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_gshared_inline (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * __this, const RuntimeMethod* method); // TResult System.Threading.Tasks.Task`1<System.Object>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Task_1_get_Result_m653E95E70604B69D29BC9679AA4588ED82AD01D7_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, const RuntimeMethod* method); // System.Exception System.Linq.Error::NotSupported() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_NotSupported_mD771E9977E8BE0B8298A582AB0BB74D1CF10900D (const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_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.Exception System.Linq.Error::ArgumentOutOfRange(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_ArgumentOutOfRange_mACFCB068F4E0C4EEF9E6EDDD59E798901C32C6C9 (String_t* ___s0, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.Linq.Buffer`1<System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>) inline void Buffer_1__ctor_mFC593D644243CEC302C442E4AA893955A7EA307C (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * __this, RuntimeObject* ___source0, const RuntimeMethod* method) { (( void (*) (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C *, RuntimeObject*, const RuntimeMethod*))Buffer_1__ctor_mFC593D644243CEC302C442E4AA893955A7EA307C_gshared)(__this, ___source0, method); } // System.Void System.NotSupportedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method); // System.Exception System.Linq.Error::ArgumentNull(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7 (String_t* ___s0, const RuntimeMethod* method); // System.Void System.Nullable`1<System.Boolean>::.ctor(T) inline void Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996 (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *, bool, const RuntimeMethod*))Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_gshared)(__this, ___value0, method); } // System.Boolean System.Nullable`1<System.Boolean>::get_HasValue() inline bool Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_inline (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *, const RuntimeMethod*))Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_gshared_inline)(__this, method); } // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method); // T System.Nullable`1<System.Boolean>::get_Value() inline bool Nullable_1_get_Value_m7C9CFCE6186F3CD55B4D63BB50E6D3D48A78583A (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *, const RuntimeMethod*))Nullable_1_get_Value_m7C9CFCE6186F3CD55B4D63BB50E6D3D48A78583A_gshared)(__this, method); } // System.Boolean System.Nullable`1<System.Boolean>::Equals(System.Nullable`1<T>) inline bool Nullable_1_Equals_m5675B6057A25CD775313F9B3B69932E06A7DCB04 (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 , const RuntimeMethod*))Nullable_1_Equals_m5675B6057A25CD775313F9B3B69932E06A7DCB04_gshared)(__this, ___other0, method); } // System.Boolean System.Nullable`1<System.Boolean>::Equals(System.Object) inline bool Nullable_1_Equals_mCF874DB6A45A0E1794D966BC6CBD63218E2ABD11 (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *, RuntimeObject *, const RuntimeMethod*))Nullable_1_Equals_mCF874DB6A45A0E1794D966BC6CBD63218E2ABD11_gshared)(__this, ___other0, method); } // System.Boolean System.Boolean::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 System.Boolean::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737 (bool* __this, const RuntimeMethod* method); // System.Int32 System.Nullable`1<System.Boolean>::GetHashCode() inline int32_t Nullable_1_GetHashCode_mB8F830CC7EDF8E3FA462E0D05B8242F388FA1F16 (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *, const RuntimeMethod*))Nullable_1_GetHashCode_mB8F830CC7EDF8E3FA462E0D05B8242F388FA1F16_gshared)(__this, method); } // T System.Nullable`1<System.Boolean>::GetValueOrDefault() inline bool Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_inline (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_gshared_inline)(__this, method); } // System.String System.Boolean::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301 (bool* __this, const RuntimeMethod* method); // System.String System.Nullable`1<System.Boolean>::ToString() inline String_t* Nullable_1_ToString_mA289110DA157CC0FC479D7424CA11F974D9D6655 (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { return (( String_t* (*) (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *, const RuntimeMethod*))Nullable_1_ToString_mA289110DA157CC0FC479D7424CA11F974D9D6655_gshared)(__this, method); } // System.Void System.Nullable`1<System.Int32>::.ctor(T) inline void Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2 (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, int32_t ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, int32_t, const RuntimeMethod*))Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_gshared)(__this, ___value0, method); } // System.Boolean System.Nullable`1<System.Int32>::get_HasValue() inline bool Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, const RuntimeMethod*))Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_gshared_inline)(__this, method); } // T System.Nullable`1<System.Int32>::get_Value() inline int32_t Nullable_1_get_Value_mA8BB683CA6A8C5BF448A737FB5A2AF63C730B3E5 (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, const RuntimeMethod*))Nullable_1_get_Value_mA8BB683CA6A8C5BF448A737FB5A2AF63C730B3E5_gshared)(__this, method); } // System.Boolean System.Nullable`1<System.Int32>::Equals(System.Nullable`1<T>) inline bool Nullable_1_Equals_mFFEE098834767D89CBF264F5B4FD3E3ACC7015E6 (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB , const RuntimeMethod*))Nullable_1_Equals_mFFEE098834767D89CBF264F5B4FD3E3ACC7015E6_gshared)(__this, ___other0, method); } // System.Boolean System.Nullable`1<System.Int32>::Equals(System.Object) inline bool Nullable_1_Equals_m5D590E2CB3FAB0FF32A3B16AC25813089A0523F0 (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, RuntimeObject *, const RuntimeMethod*))Nullable_1_Equals_m5D590E2CB3FAB0FF32A3B16AC25813089A0523F0_gshared)(__this, ___other0, method); } // System.Boolean System.Int32::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C (int32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 System.Int32::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A (int32_t* __this, const RuntimeMethod* method); // System.Int32 System.Nullable`1<System.Int32>::GetHashCode() inline int32_t Nullable_1_GetHashCode_m56AC4B3DFFC7510EF5C98721FF2A2ACB898B0EF2 (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, const RuntimeMethod*))Nullable_1_GetHashCode_m56AC4B3DFFC7510EF5C98721FF2A2ACB898B0EF2_gshared)(__this, method); } // T System.Nullable`1<System.Int32>::GetValueOrDefault() inline int32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_gshared_inline)(__this, method); } // System.String System.Int32::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02 (int32_t* __this, const RuntimeMethod* method); // System.String System.Nullable`1<System.Int32>::ToString() inline String_t* Nullable_1_ToString_m8B3E28321CC3D391381CE384D61F16E59C8B1BBE (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { return (( String_t* (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, const RuntimeMethod*))Nullable_1_ToString_m8B3E28321CC3D391381CE384D61F16E59C8B1BBE_gshared)(__this, method); } // System.Void System.Nullable`1<System.Int32Enum>::.ctor(T) inline void Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3 (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, int32_t ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *, int32_t, const RuntimeMethod*))Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_gshared)(__this, ___value0, method); } // System.Boolean System.Nullable`1<System.Int32Enum>::get_HasValue() inline bool Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_inline (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *, const RuntimeMethod*))Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline)(__this, method); } // T System.Nullable`1<System.Int32Enum>::get_Value() inline int32_t Nullable_1_get_Value_m32D4CD9D36108D7EE445A232AAB86E6DD0CB001B (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *, const RuntimeMethod*))Nullable_1_get_Value_m32D4CD9D36108D7EE445A232AAB86E6DD0CB001B_gshared)(__this, method); } // System.Boolean System.Nullable`1<System.Int32Enum>::Equals(System.Nullable`1<T>) inline bool Nullable_1_Equals_mC856AC1460EF4282C8E56291C412A0A916DD2712 (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *, Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 , const RuntimeMethod*))Nullable_1_Equals_mC856AC1460EF4282C8E56291C412A0A916DD2712_gshared)(__this, ___other0, method); } // System.Boolean System.Nullable`1<System.Int32Enum>::Equals(System.Object) inline bool Nullable_1_Equals_mDB884205D5954E6C2DBE345DFB806D3F1BAED080 (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *, RuntimeObject *, const RuntimeMethod*))Nullable_1_Equals_mDB884205D5954E6C2DBE345DFB806D3F1BAED080_gshared)(__this, ___other0, method); } // System.Int32 System.Nullable`1<System.Int32Enum>::GetHashCode() inline int32_t Nullable_1_GetHashCode_mF2DA27E4C81C52280695B8185A5B3F34A16BDB5B (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *, const RuntimeMethod*))Nullable_1_GetHashCode_mF2DA27E4C81C52280695B8185A5B3F34A16BDB5B_gshared)(__this, method); } // T System.Nullable`1<System.Int32Enum>::GetValueOrDefault() inline int32_t Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_inline (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_gshared_inline)(__this, method); } // System.String System.Nullable`1<System.Int32Enum>::ToString() inline String_t* Nullable_1_ToString_mA342DAFAACE3FF6BD1F5F41A003BB56981B308C6 (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { return (( String_t* (*) (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *, const RuntimeMethod*))Nullable_1_ToString_mA342DAFAACE3FF6BD1F5F41A003BB56981B308C6_gshared)(__this, method); } // System.Void System.Nullable`1<System.Single>::.ctor(T) inline void Nullable_1__ctor_m7684344C547C49122B242D657ED4F2CA1C5C6B9F (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, float ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *, float, const RuntimeMethod*))Nullable_1__ctor_m7684344C547C49122B242D657ED4F2CA1C5C6B9F_gshared)(__this, ___value0, method); } // System.Boolean System.Nullable`1<System.Single>::get_HasValue() inline bool Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_inline (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *, const RuntimeMethod*))Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_gshared_inline)(__this, method); } // T System.Nullable`1<System.Single>::get_Value() inline float Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2 (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { return (( float (*) (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *, const RuntimeMethod*))Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2_gshared)(__this, method); } // System.Boolean System.Nullable`1<System.Single>::Equals(System.Nullable`1<T>) inline bool Nullable_1_Equals_m4AF55EB69E27EA4B93F15251F604285D62426E33 (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *, Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 , const RuntimeMethod*))Nullable_1_Equals_m4AF55EB69E27EA4B93F15251F604285D62426E33_gshared)(__this, ___other0, method); } // System.Boolean System.Nullable`1<System.Single>::Equals(System.Object) inline bool Nullable_1_Equals_m616873F8BAC7A9E73D0CE2D3EC9EC49F6167C0E0 (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *, RuntimeObject *, const RuntimeMethod*))Nullable_1_Equals_m616873F8BAC7A9E73D0CE2D3EC9EC49F6167C0E0_gshared)(__this, ___other0, method); } // System.Boolean System.Single::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_Equals_mF4C7AEA9D216B3C9CB735BF327D07BF50F101A16 (float* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 System.Single::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_GetHashCode_m1BC0733E0C3851ED9D1B6C9C0B243BB88BE77AD0 (float* __this, const RuntimeMethod* method); // System.Int32 System.Nullable`1<System.Single>::GetHashCode() inline int32_t Nullable_1_GetHashCode_mC37D0B59BBA0C4499BDB8C0C768278EE8C450843 (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *, const RuntimeMethod*))Nullable_1_GetHashCode_mC37D0B59BBA0C4499BDB8C0C768278EE8C450843_gshared)(__this, method); } // T System.Nullable`1<System.Single>::GetValueOrDefault() inline float Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_inline (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { return (( float (*) (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_gshared_inline)(__this, method); } // System.String System.Single::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_m2B1556CFBBD088D285A0B0EA280F82D3A4344DC3 (float* __this, const RuntimeMethod* method); // System.String System.Nullable`1<System.Single>::ToString() inline String_t* Nullable_1_ToString_mC6D12173E52B269C4AF65B27671CB5E46BAADEFF (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { return (( String_t* (*) (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *, const RuntimeMethod*))Nullable_1_ToString_mC6D12173E52B269C4AF65B27671CB5E46BAADEFF_gshared)(__this, method); } // System.Void System.Nullable`1<UnityEngine.Color>::.ctor(T) inline void Nullable_1__ctor_m04D6D6F6B0D572ED38D3E5CB80E2528C5E6360BD (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 , const RuntimeMethod*))Nullable_1__ctor_m04D6D6F6B0D572ED38D3E5CB80E2528C5E6360BD_gshared)(__this, ___value0, method); } // System.Boolean System.Nullable`1<UnityEngine.Color>::get_HasValue() inline bool Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_inline (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *, const RuntimeMethod*))Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_gshared_inline)(__this, method); } // T System.Nullable`1<UnityEngine.Color>::get_Value() inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Nullable_1_get_Value_m904F41E85B564BEA9E2D8BB5BA38173F99078A3E (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { return (( Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*) (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *, const RuntimeMethod*))Nullable_1_get_Value_m904F41E85B564BEA9E2D8BB5BA38173F99078A3E_gshared)(__this, method); } // System.Boolean System.Nullable`1<UnityEngine.Color>::Equals(System.Nullable`1<T>) inline bool Nullable_1_Equals_m5DEFB9CC500A1486BCEC1D5D691DFF1BEEAD9F81 (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *, Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB , const RuntimeMethod*))Nullable_1_Equals_m5DEFB9CC500A1486BCEC1D5D691DFF1BEEAD9F81_gshared)(__this, ___other0, method); } // System.Boolean System.Nullable`1<UnityEngine.Color>::Equals(System.Object) inline bool Nullable_1_Equals_m40ADF33A723A68AB2B2FEB59AFECC69CD4F223AB (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *, RuntimeObject *, const RuntimeMethod*))Nullable_1_Equals_m40ADF33A723A68AB2B2FEB59AFECC69CD4F223AB_gshared)(__this, ___other0, method); } // System.Boolean UnityEngine.Color::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Color_Equals_m63ECBA87A0F27CD7D09EEA36BCB697652E076F4E (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 UnityEngine.Color::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Color_GetHashCode_m88317C719D2DAA18E293B3F5CD17B9FB80E26CF1 (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * __this, const RuntimeMethod* method); // System.Int32 System.Nullable`1<UnityEngine.Color>::GetHashCode() inline int32_t Nullable_1_GetHashCode_m94232DE86EB0E6B35607A39DA9F513CF9754F2F9 (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *, const RuntimeMethod*))Nullable_1_GetHashCode_m94232DE86EB0E6B35607A39DA9F513CF9754F2F9_gshared)(__this, method); } // T System.Nullable`1<UnityEngine.Color>::GetValueOrDefault() inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_inline (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { return (( Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 (*) (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_gshared_inline)(__this, method); } // System.String UnityEngine.Color::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Color_ToString_m17A27E0CFB20D9946D130DAEDB5BDCACA5A4473F (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * __this, const RuntimeMethod* method); // System.String System.Nullable`1<UnityEngine.Color>::ToString() inline String_t* Nullable_1_ToString_m363E0AD25D0DB0B6F8C916315B9F245B0029FA72 (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { return (( String_t* (*) (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *, const RuntimeMethod*))Nullable_1_ToString_m363E0AD25D0DB0B6F8C916315B9F245B0029FA72_gshared)(__this, method); } // System.Void System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::.ctor(T) inline void Nullable_1__ctor_m2363E26BE9E8EE765BEA232058A47DF46945F616 (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *, RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A , const RuntimeMethod*))Nullable_1__ctor_m2363E26BE9E8EE765BEA232058A47DF46945F616_gshared)(__this, ___value0, method); } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::get_HasValue() inline bool Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_inline (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *, const RuntimeMethod*))Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_gshared_inline)(__this, method); } // T System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::get_Value() inline RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A Nullable_1_get_Value_m54AA814374E14F2513143A5032F9E4AAD3228226 (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { return (( RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A (*) (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *, const RuntimeMethod*))Nullable_1_get_Value_m54AA814374E14F2513143A5032F9E4AAD3228226_gshared)(__this, method); } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::Equals(System.Nullable`1<T>) inline bool Nullable_1_Equals_m27BA7C9660B3660D2EBE7395D74074C360B96E6D (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *, Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 , const RuntimeMethod*))Nullable_1_Equals_m27BA7C9660B3660D2EBE7395D74074C360B96E6D_gshared)(__this, ___other0, method); } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::Equals(System.Object) inline bool Nullable_1_Equals_m867EB0D65ACB5204CFF11EFE7BC5B77D1FEDD846 (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *, RuntimeObject *, const RuntimeMethod*))Nullable_1_Equals_m867EB0D65ACB5204CFF11EFE7BC5B77D1FEDD846_gshared)(__this, ___other0, method); } // System.Boolean UnityEngine.Rendering.RenderQueueRange::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RenderQueueRange_Equals_mBFB376C90D44224911F400ABBAC181A0AB5A1592 (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 UnityEngine.Rendering.RenderQueueRange::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RenderQueueRange_GetHashCode_m1DFED684DB51CE12FE84A5AB54050C8630E82274 (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A * __this, const RuntimeMethod* method); // System.Int32 System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::GetHashCode() inline int32_t Nullable_1_GetHashCode_mA2A8D10C6803F789C01D884345427C207032E80A (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *, const RuntimeMethod*))Nullable_1_GetHashCode_mA2A8D10C6803F789C01D884345427C207032E80A_gshared)(__this, method); } // T System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::GetValueOrDefault() inline RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_inline (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { return (( RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A (*) (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_gshared_inline)(__this, method); } // System.String System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::ToString() inline String_t* Nullable_1_ToString_m6862243F6976595439F489C10790596B13D113B3 (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { return (( String_t* (*) (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *, const RuntimeMethod*))Nullable_1_ToString_m6862243F6976595439F489C10790596B13D113B3_gshared)(__this, method); } // System.Void System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::.ctor(T) inline void Nullable_1__ctor_mA8ED073A176FC38129CED874F576B6CC839EC5EA (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *, RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE , const RuntimeMethod*))Nullable_1__ctor_mA8ED073A176FC38129CED874F576B6CC839EC5EA_gshared)(__this, ___value0, method); } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::get_HasValue() inline bool Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_inline (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *, const RuntimeMethod*))Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_gshared_inline)(__this, method); } // T System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::get_Value() inline RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE Nullable_1_get_Value_m1F3DEA1D85DFE14F9D74A4DA014B0282D4BCEF1C (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { return (( RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE (*) (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *, const RuntimeMethod*))Nullable_1_get_Value_m1F3DEA1D85DFE14F9D74A4DA014B0282D4BCEF1C_gshared)(__this, method); } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::Equals(System.Nullable`1<T>) inline bool Nullable_1_Equals_mDD3F51FAFBD5B40CE0D778E2AE3303A40209F45E (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *, Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F , const RuntimeMethod*))Nullable_1_Equals_mDD3F51FAFBD5B40CE0D778E2AE3303A40209F45E_gshared)(__this, ___other0, method); } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::Equals(System.Object) inline bool Nullable_1_Equals_m12B7CCFE77645EF7BFFE6747B0DC0A743E3FAEDC (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *, RuntimeObject *, const RuntimeMethod*))Nullable_1_Equals_m12B7CCFE77645EF7BFFE6747B0DC0A743E3FAEDC_gshared)(__this, ___other0, method); } // System.Boolean UnityEngine.Rendering.RenderStateBlock::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RenderStateBlock_Equals_m0E8A2D2F56D621408EF5962FAA5BE280DE8C0BD4 (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 UnityEngine.Rendering.RenderStateBlock::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RenderStateBlock_GetHashCode_m1F7F40E3B1CF65CC83FC569C413F06BCEFF5C71C (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE * __this, const RuntimeMethod* method); // System.Int32 System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::GetHashCode() inline int32_t Nullable_1_GetHashCode_m75D5966FDDEC3F900C21CBFEE03A8BC087408E41 (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *, const RuntimeMethod*))Nullable_1_GetHashCode_m75D5966FDDEC3F900C21CBFEE03A8BC087408E41_gshared)(__this, method); } // T System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::GetValueOrDefault() inline RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_inline (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { return (( RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE (*) (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_gshared_inline)(__this, method); } // System.String System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::ToString() inline String_t* Nullable_1_ToString_m7EA7DF40B01B84A39807813416C4C186B23C52C4 (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { return (( String_t* (*) (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *, const RuntimeMethod*))Nullable_1_ToString_m7EA7DF40B01B84A39807813416C4C186B23C52C4_gshared)(__this, method); } // System.Void System.Nullable`1<UnityEngine.Vector3>::.ctor(T) inline void Nullable_1__ctor_m49ABD148B7A7789CB005BA17CA29E1896EE35057 (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*))Nullable_1__ctor_m49ABD148B7A7789CB005BA17CA29E1896EE35057_gshared)(__this, ___value0, method); } // System.Boolean System.Nullable`1<UnityEngine.Vector3>::get_HasValue() inline bool Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_inline (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *, const RuntimeMethod*))Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_gshared_inline)(__this, method); } // T System.Nullable`1<UnityEngine.Vector3>::get_Value() inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Nullable_1_get_Value_m902B83FE050783CC1CEF6CB970A5AAB926F77D9C (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { return (( Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*) (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *, const RuntimeMethod*))Nullable_1_get_Value_m902B83FE050783CC1CEF6CB970A5AAB926F77D9C_gshared)(__this, method); } // System.Boolean System.Nullable`1<UnityEngine.Vector3>::Equals(System.Nullable`1<T>) inline bool Nullable_1_Equals_m1FA9AE8F6E43B1AC7DA2EF0F387F081979467C25 (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *, Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE , const RuntimeMethod*))Nullable_1_Equals_m1FA9AE8F6E43B1AC7DA2EF0F387F081979467C25_gshared)(__this, ___other0, method); } // System.Boolean System.Nullable`1<UnityEngine.Vector3>::Equals(System.Object) inline bool Nullable_1_Equals_mC4A197FA803FF5A473A45D9362E8DE3C3A0C9637 (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *, RuntimeObject *, const RuntimeMethod*))Nullable_1_Equals_mC4A197FA803FF5A473A45D9362E8DE3C3A0C9637_gshared)(__this, ___other0, method); } // System.Boolean UnityEngine.Vector3::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector3_Equals_m1F74B1FB7EE51589FFFA61D894F616B8F258C056 (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * __this, RuntimeObject * ___other0, const RuntimeMethod* method); // System.Int32 UnityEngine.Vector3::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Vector3_GetHashCode_m6C42B4F413A489535D180E8A99BE0298AD078B0B (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * __this, const RuntimeMethod* method); // System.Int32 System.Nullable`1<UnityEngine.Vector3>::GetHashCode() inline int32_t Nullable_1_GetHashCode_m99637F7283FCCB08B4C2DB9BE61B44EB07C7ED1F (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *, const RuntimeMethod*))Nullable_1_GetHashCode_m99637F7283FCCB08B4C2DB9BE61B44EB07C7ED1F_gshared)(__this, method); } // T System.Nullable`1<UnityEngine.Vector3>::GetValueOrDefault() inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_inline (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { return (( Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 (*) (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_gshared_inline)(__this, method); } // System.String UnityEngine.Vector3::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector3_ToString_m2682D27AB50CD1CE4677C38D0720A302D582348D (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * __this, const RuntimeMethod* method); // System.String System.Nullable`1<UnityEngine.Vector3>::ToString() inline String_t* Nullable_1_ToString_m5CF657AB54EFB4B3E09840F5217CA707B9EC967A (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { return (( String_t* (*) (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *, const RuntimeMethod*))Nullable_1_ToString_m5CF657AB54EFB4B3E09840F5217CA707B9EC967A_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.AsyncMethodBuilderCore::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncMethodBuilderCore_SetStateMachine_m92D9A4AB24A2502F03512F543EA5F7C39A5336B6 (AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) inline void AsyncTaskMethodBuilder_1_SetStateMachine_m6C16FFAECC8CE76F82289A87141A9524F5B09C60 (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m6C16FFAECC8CE76F82289A87141A9524F5B09C60_gshared)(__this, ___stateMachine0, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::get_Task() inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * AsyncTaskMethodBuilder_1_get_Task_mE71F3C1D2587BE90812781280F0175E9CE14BA66 (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, const RuntimeMethod* method) { return (( Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * (*) (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_mE71F3C1D2587BE90812781280F0175E9CE14BA66_gshared)(__this, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::GetTaskForResult(TResult) inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * AsyncTaskMethodBuilder_1_GetTaskForResult_mBCC369A6A2330CE1DA71FF770CF128EF6C5CB7F1 (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, bool ___result0, const RuntimeMethod* method) { return (( Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * (*) (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *, bool, const RuntimeMethod*))AsyncTaskMethodBuilder_1_GetTaskForResult_mBCC369A6A2330CE1DA71FF770CF128EF6C5CB7F1_gshared)(__this, ___result0, method); } // System.Boolean System.Threading.Tasks.AsyncCausalityTracer::get_LoggingOn() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AsyncCausalityTracer_get_LoggingOn_m1A633E7FCD4DF7D870FFF917FDCDBEDAF24725B7 (const RuntimeMethod* method); // System.Int32 System.Threading.Tasks.Task::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.AsyncCausalityTracer::TraceOperationCompletion(System.Threading.Tasks.CausalityTraceLevel,System.Int32,System.Threading.Tasks.AsyncCausalityStatus) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void AsyncCausalityTracer_TraceOperationCompletion_m63C07B707D3034D2F0F4B395636B410ACC9A78D6 (int32_t ___traceLevel0, int32_t ___taskId1, int32_t ___status2, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::RemoveFromActiveTasks(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_RemoveFromActiveTasks_mEDE131DB4C29D967D6D717CAB002C6C02583BDF5 (int32_t ___taskId0, const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(TResult) inline void AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, bool ___result0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *, bool, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F_gshared)(__this, ___result0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(System.Threading.Tasks.Task`1<TResult>) inline void AsyncTaskMethodBuilder_1_SetResult_m18ACA0FEA9C22741AE3229F64EFCD66E2DE7ED16 (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___completedTask0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m18ACA0FEA9C22741AE3229F64EFCD66E2DE7ED16_gshared)(__this, ___completedTask0, method); } // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Threading.CancellationToken System.OperationCanceledException::get_CancellationToken() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66_inline (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetException(System.Exception) inline void AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18 (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, Exception_t * ___exception0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18_gshared)(__this, ___exception0, method); } // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method); // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Boolean System.Decimal::op_Equality(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_Equality_mD69422DB0011607747F9D778C5409FBE732E4BDB (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___d10, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___d21, const RuntimeMethod* method); // System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method); // System.Boolean System.UIntPtr::op_Equality(System.UIntPtr,System.UIntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIntPtr_op_Equality_m69F127E2A7A8BA5676D14FB08B52F6A6E83794B1 (uintptr_t ___value10, uintptr_t ___value21, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) inline void AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C_gshared)(__this, ___stateMachine0, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task() inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, const RuntimeMethod* method) { return (( Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * (*) (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA_gshared)(__this, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::GetTaskForResult(TResult) inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * AsyncTaskMethodBuilder_1_GetTaskForResult_m25C4063D490D0AD29E9EB9BFB2973A4DC15D9408 (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { return (( Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * (*) (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *, RuntimeObject *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_GetTaskForResult_m25C4063D490D0AD29E9EB9BFB2973A4DC15D9408_gshared)(__this, ___result0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(TResult) inline void AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *, RuntimeObject *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB_gshared)(__this, ___result0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(System.Threading.Tasks.Task`1<TResult>) inline void AsyncTaskMethodBuilder_1_SetResult_mCCBBC85BA750240E46519BDDA6301130646CA4BB (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___completedTask0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_mCCBBC85BA750240E46519BDDA6301130646CA4BB_gshared)(__this, ___completedTask0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetException(System.Exception) inline void AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, Exception_t * ___exception0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_gshared)(__this, ___exception0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) inline void AsyncTaskMethodBuilder_1_SetStateMachine_m69471716E68A2553BAA340A0A780CD6953E3ECD3 (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m69471716E68A2553BAA340A0A780CD6953E3ECD3_gshared)(__this, ___stateMachine0, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::get_Task() inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * AsyncTaskMethodBuilder_1_get_Task_mB90A654E7FBAE31DB64597AA0B3B5ED3712E2966 (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, const RuntimeMethod* method) { return (( Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * (*) (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_mB90A654E7FBAE31DB64597AA0B3B5ED3712E2966_gshared)(__this, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::GetTaskForResult(TResult) inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * AsyncTaskMethodBuilder_1_GetTaskForResult_m5CF1A462822DB26CF310955638395584F9057E09 (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___result0, const RuntimeMethod* method) { return (( Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * (*) (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 , const RuntimeMethod*))AsyncTaskMethodBuilder_1_GetTaskForResult_m5CF1A462822DB26CF310955638395584F9057E09_gshared)(__this, ___result0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(TResult) inline void AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483 (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___result0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 , const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483_gshared)(__this, ___result0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(System.Threading.Tasks.Task`1<TResult>) inline void AsyncTaskMethodBuilder_1_SetResult_mBD219CF220624C992AC67B976E3D8DCE381DF027 (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___completedTask0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_mBD219CF220624C992AC67B976E3D8DCE381DF027_gshared)(__this, ___completedTask0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetException(System.Exception) inline void AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315 (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, Exception_t * ___exception0, const RuntimeMethod* method) { (( void (*) (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315_gshared)(__this, ___exception0, method); } // System.Void System.GC::register_ephemeron_array(System.Runtime.CompilerServices.Ephemeron[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_register_ephemeron_array_mF6745DC9E70671B69469D62488C2183A46C10729 (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* ___array0, const RuntimeMethod* method); // System.Void System.Object::Finalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380 (RuntimeObject * __this, const RuntimeMethod* method); // System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::GetHashCode(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_GetHashCode_mB357C67BC7D5C014F6F51FE93E200F140DF7A40B (RuntimeObject * ___o0, const RuntimeMethod* method); // System.Int32 System.Collections.HashHelpers::GetPrime(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297 (int32_t ___min0, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaiter__ctor_mBC2C82388746A0B33A7CC359CB90AB34F4CB0F80 (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 *, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_mBC2C82388746A0B33A7CC359CB90AB34F4CB0F80_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Boolean System.Threading.Tasks.Task::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::get_IsCompleted() inline bool ConfiguredTaskAwaiter_get_IsCompleted_m3106B5C67EF6270B9DB4B5E1C5C687BCAA446F24 (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, const RuntimeMethod* method) { return (( bool (*) (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m3106B5C67EF6270B9DB4B5E1C5C687BCAA446F24_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter::OnCompletedInternal(System.Threading.Tasks.Task,System.Action,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void TaskAwaiter_OnCompletedInternal_m2D91F596B0BF61EF0213B36C2F3EF520851783C3 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation1, bool ___continueOnCapturedContext2, bool ___flowExecutionContext3, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::UnsafeOnCompleted(System.Action) inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m52A95CEFA755CAAEE1E8755101ACA45A295A7A35 (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 *, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m52A95CEFA755CAAEE1E8755101ACA45A295A7A35_gshared)(__this, ___continuation0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter::ValidateEnd(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_ValidateEnd_mE371CFCA15DE9618E07CB6751C588335FCE62F6D (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, const RuntimeMethod* method); // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>::GetResult() inline bool ConfiguredTaskAwaiter_GetResult_mC2B7B126733CDE385D61F2036F9D0668B36F171B (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, const RuntimeMethod* method) { return (( bool (*) (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_mC2B7B126733CDE385D61F2036F9D0668B36F171B_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaiter__ctor_mFD356296FDD56905A728A7EF64E95DA08F0CDE26 (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_mFD356296FDD56905A728A7EF64E95DA08F0CDE26_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted() inline bool ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92 (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, const RuntimeMethod* method) { return (( bool (*) (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::UnsafeOnCompleted(System.Action) inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m51FAB5E9A9B65CADB2FC226EDDA77B18E003AD60 (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m51FAB5E9A9B65CADB2FC226EDDA77B18E003AD60_gshared)(__this, ___continuation0, method); } // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::GetResult() inline int32_t ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623 (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, const RuntimeMethod* method) { return (( int32_t (*) (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaiter__ctor_mFE77210335876C9788ECDD3C5393C4636B39A00B (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E *, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_mFE77210335876C9788ECDD3C5393C4636B39A00B_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::get_IsCompleted() inline bool ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586 (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, const RuntimeMethod* method) { return (( bool (*) (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::UnsafeOnCompleted(System.Action) inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m4839332C5C05D22963CEA62A1FEE699C68109404 (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E *, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m4839332C5C05D22963CEA62A1FEE699C68109404_gshared)(__this, ___continuation0, method); } // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::GetResult() inline RuntimeObject * ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaiter__ctor_m0E48D705E5FED5CC83670FA7A2B32702BBE20840 (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 *, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m0E48D705E5FED5CC83670FA7A2B32702BBE20840_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::get_IsCompleted() inline bool ConfiguredTaskAwaiter_get_IsCompleted_m1429B429A92D467192E16F1291BAA5761706EAB0 (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, const RuntimeMethod* method) { return (( bool (*) (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m1429B429A92D467192E16F1291BAA5761706EAB0_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_mA3AA09BD7CC25D9F838DF9BBBF200B41C65BBD57 (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 *, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_mA3AA09BD7CC25D9F838DF9BBBF200B41C65BBD57_gshared)(__this, ___continuation0, method); } // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::GetResult() inline VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ConfiguredTaskAwaiter_GetResult_mE6DE53E996B30ABB828D43811259EC164DDC607B (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, const RuntimeMethod* method) { return (( VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 (*) (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_mE6DE53E996B30ABB828D43811259EC164DDC607B_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_mFB57BDDFCD7717F4EFBA0C41312C99E8E24D31C7 (ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 *, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mFB57BDDFCD7717F4EFBA0C41312C99E8E24D31C7_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::GetAwaiter() inline ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_inline (ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 * __this, const RuntimeMethod* method) { return (( ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 (*) (ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_gshared_inline)(__this, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_m9038EF920A0F90A746627FF394F3A44ED51CFB21 (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A *, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m9038EF920A0F90A746627FF394F3A44ED51CFB21_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter() inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_inline (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A * __this, const RuntimeMethod* method) { return (( ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E (*) (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_gshared_inline)(__this, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_mB82ADF237AE2CA3076F32A86D153EBD7B339E3B7 (ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 *, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mB82ADF237AE2CA3076F32A86D153EBD7B339E3B7_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::GetAwaiter() inline ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_inline (ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 * __this, const RuntimeMethod* method) { return (( ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E (*) (ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_gshared_inline)(__this, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) inline void ConfiguredTaskAwaitable_1__ctor_mAD28136B3EBB7A59923B02CD31DE0E0DB4B69FA7 (ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { (( void (*) (ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 *, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mAD28136B3EBB7A59923B02CD31DE0E0DB4B69FA7_gshared)(__this, ___task0, ___continueOnCapturedContext1, method); } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter() inline ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_inline (ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 * __this, const RuntimeMethod* method) { return (( ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 (*) (ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_gshared_inline)(__this, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_inline (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 *, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, const RuntimeMethod*))TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::UnsafeOnCompleted(System.Action) inline void TaskAwaiter_1_UnsafeOnCompleted_m682D0FAFEEB8268BB1EC46583C9F93A15999E743 (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 *, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_m682D0FAFEEB8268BB1EC46583C9F93A15999E743_gshared)(__this, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::GetResult() inline bool TaskAwaiter_1_GetResult_m77546DD82B46E6BAAAA79AB5F1BBCD2567E0F7F8 (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * __this, const RuntimeMethod* method) { return (( bool (*) (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m77546DD82B46E6BAAAA79AB5F1BBCD2567E0F7F8_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_inline (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 *, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, const RuntimeMethod*))TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::UnsafeOnCompleted(System.Action) inline void TaskAwaiter_1_UnsafeOnCompleted_m8D75DA13F52ABD6D5ACD823594F6A5CD43BE2A3E (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 *, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_m8D75DA13F52ABD6D5ACD823594F6A5CD43BE2A3E_gshared)(__this, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult() inline int32_t TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9 (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, const RuntimeMethod* method) { return (( int32_t (*) (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_inline (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 *, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, const RuntimeMethod*))TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::UnsafeOnCompleted(System.Action) inline void TaskAwaiter_1_UnsafeOnCompleted_m4204CC2DE0200E2EFA43C485022F816D27298975 (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 *, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_m4204CC2DE0200E2EFA43C485022F816D27298975_gshared)(__this, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult() inline RuntimeObject * TaskAwaiter_1_GetResult_m9E148849CD4747E1BDD831E4FB2D7ECFA13C11C8 (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m9E148849CD4747E1BDD831E4FB2D7ECFA13C11C8_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>) inline void TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_inline (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE *, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, const RuntimeMethod*))TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_gshared_inline)(__this, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) inline void TaskAwaiter_1_UnsafeOnCompleted_mCD78FE2109BECF3B49ABCC367C9A1304BD390A98 (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { (( void (*) (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE *, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *, const RuntimeMethod*))TaskAwaiter_1_UnsafeOnCompleted_mCD78FE2109BECF3B49ABCC367C9A1304BD390A98_gshared)(__this, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::GetResult() inline VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 TaskAwaiter_1_GetResult_m9653F7144240DCB33FCDAC21DE6A89FD12F58BA5 (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * __this, const RuntimeMethod* method) { return (( VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 (*) (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE *, const RuntimeMethod*))TaskAwaiter_1_GetResult_m9653F7144240DCB33FCDAC21DE6A89FD12F58BA5_gshared)(__this, method); } // System.Void System.RuntimeType/ListBuilder`1<System.Object>::.ctor(System.Int32) inline void ListBuilder_1__ctor_m732FB66A81E20018611D91961EFC856084C6596E (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *, int32_t, const RuntimeMethod*))ListBuilder_1__ctor_m732FB66A81E20018611D91961EFC856084C6596E_gshared)(__this, ___capacity0, method); } // T System.RuntimeType/ListBuilder`1<System.Object>::get_Item(System.Int32) inline RuntimeObject * ListBuilder_1_get_Item_m440ACBC3F6764B4992840EEEC1CCA9AFD3A5886D (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( RuntimeObject * (*) (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *, int32_t, const RuntimeMethod*))ListBuilder_1_get_Item_m440ACBC3F6764B4992840EEEC1CCA9AFD3A5886D_gshared)(__this, ___index0, method); } // T[] System.RuntimeType/ListBuilder`1<System.Object>::ToArray() inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ListBuilder_1_ToArray_m9DAACFD0ECFE92359885E585A3BE6EE34A43798E (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, const RuntimeMethod* method) { return (( ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* (*) (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *, const RuntimeMethod*))ListBuilder_1_ToArray_m9DAACFD0ECFE92359885E585A3BE6EE34A43798E_gshared)(__this, method); } // System.Void System.RuntimeType/ListBuilder`1<System.Object>::CopyTo(System.Object[],System.Int32) inline void ListBuilder_1_CopyTo_m88C60144CC6606D734A5522D4EC6027CE1E01FAE (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method) { (( void (*) (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, const RuntimeMethod*))ListBuilder_1_CopyTo_m88C60144CC6606D734A5522D4EC6027CE1E01FAE_gshared)(__this, ___array0, ___index1, method); } // System.Int32 System.RuntimeType/ListBuilder`1<System.Object>::get_Count() inline int32_t ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_inline (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, const RuntimeMethod* method) { return (( int32_t (*) (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *, const RuntimeMethod*))ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_gshared_inline)(__this, method); } // System.Void System.RuntimeType/ListBuilder`1<System.Object>::Add(T) inline void ListBuilder_1_Add_m42B66384FC0CD58D994246D40CB4F473D3E639A4 (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { (( void (*) (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *, RuntimeObject *, const RuntimeMethod*))ListBuilder_1_Add_m42B66384FC0CD58D994246D40CB4F473D3E639A4_gshared)(__this, ___item0, method); } // T System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::get_PreviousValue() inline RuntimeObject * AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *, const RuntimeMethod*))AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_gshared_inline)(__this, method); } // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_PreviousValue(T) inline void AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { (( void (*) (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *, RuntimeObject *, const RuntimeMethod*))AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_gshared_inline)(__this, ___value0, method); } // T System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::get_CurrentValue() inline RuntimeObject * AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, const RuntimeMethod* method) { return (( RuntimeObject * (*) (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *, const RuntimeMethod*))AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_gshared_inline)(__this, method); } // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_CurrentValue(T) inline void AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { (( void (*) (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *, RuntimeObject *, const RuntimeMethod*))AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_gshared_inline)(__this, ___value0, method); } // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_ThreadContextChanged(System.Boolean) inline void AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, bool ___value0, const RuntimeMethod* method) { (( void (*) (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *, bool, const RuntimeMethod*))AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_gshared_inline)(__this, ___value0, method); } // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::.ctor(T,T,System.Boolean) inline void AsyncLocalValueChangedArgs_1__ctor_m35C870EB8F451D9D0916F75F48C8FD4B08AD1FF8 (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, RuntimeObject * ___previousValue0, RuntimeObject * ___currentValue1, bool ___contextChanged2, const RuntimeMethod* method) { (( void (*) (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *, RuntimeObject *, RuntimeObject *, bool, const RuntimeMethod*))AsyncLocalValueChangedArgs_1__ctor_m35C870EB8F451D9D0916F75F48C8FD4B08AD1FF8_gshared)(__this, ___previousValue0, ___currentValue1, ___contextChanged2, method); } // System.Object System.Threading.ExecutionContext::GetLocalValue(System.Threading.IAsyncLocal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ExecutionContext_GetLocalValue_m3763707975927902B9366A1126178DE56063F5E8 (RuntimeObject* ___local0, const RuntimeMethod* method); // System.Void System.Threading.ExecutionContext::SetLocalValue(System.Threading.IAsyncLocal,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionContext_SetLocalValue_mA568451E76B8EA7EBB6B7BD58D5CB91E50D89193 (RuntimeObject* ___local0, RuntimeObject * ___newValue1, bool ___needChangeNotifications2, const RuntimeMethod* method); // System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32) inline void SparselyPopulatedArrayAddInfo_1__ctor_m1A9D946CCFA8A499F78A0BF45E83C3E51E8AD481 (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * __this, SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * ___source0, int32_t ___index1, const RuntimeMethod* method) { (( void (*) (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B *, SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *, int32_t, const RuntimeMethod*))SparselyPopulatedArrayAddInfo_1__ctor_m1A9D946CCFA8A499F78A0BF45E83C3E51E8AD481_gshared)(__this, ___source0, ___index1, method); } // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source() inline SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_inline (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * __this, const RuntimeMethod* method) { return (( SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * (*) (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B *, const RuntimeMethod*))SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_gshared_inline)(__this, method); } // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index() inline int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_inline (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * __this, const RuntimeMethod* method) { return (( int32_t (*) (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B *, const RuntimeMethod*))SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_gshared_inline)(__this, method); } // System.Threading.Tasks.TaskStatus System.Threading.Tasks.Task::get_Status() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_get_Status_mE2F9041915F88BAD55956426FDCB259F29D468C1 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Object System.Threading.Tasks.Task::get_AsyncState() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Task_get_AsyncState_mEE6996D21AD9F92E34A30FA73A7D31A5BCE42657_inline (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.Task::get_CreationOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_get_CreationOptions_m1013CF6F9F645BFA03F13F89DFA749ADABA541C8 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.AggregateException System.Threading.Tasks.Task::get_Exception() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * Task_get_Exception_mA61AAD3E52CBEB631D1956217B521456E7960B95 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Threading.CancellationToken System.Threading.Tasks.Task::get_CancellationToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB Task_get_CancellationToken_m3E8D0E96EEC38EC70AEE5F876AF8A0517B463D75 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.CancellationToken::get_IsCancellationRequested() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskFactory::CheckMultiTaskContinuationOptions(System.Threading.Tasks.TaskContinuationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640 (int32_t ___continuationOptions0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskFactory::CheckCreationOptions(System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370 (int32_t ___creationOptions0, const RuntimeMethod* method); // TResult System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::get_Result() inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * Task_1_get_Result_m723545759DF19A9171742042E0610CAF7E9C3568 (Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * __this, const RuntimeMethod* method) { return (( Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * (*) (Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 *, const RuntimeMethod*))Task_1_get_Result_m653E95E70604B69D29BC9679AA4588ED82AD01D7_gshared)(__this, method); } // System.Void System.Threading.Tasks.Task::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task__ctor_m8E1D8C0B00CDBC75BE82736DC129396F79B7A84D (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::.ctor(System.Boolean,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task__ctor_m61EE08D52F4C76A4D8E44B826F02724920D3425B (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, bool ___canceled0, int32_t ___creationOptions1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___ct2, const RuntimeMethod* method); // System.Threading.Tasks.Task System.Threading.Tasks.Task::InternalCurrentIfAttached(System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * Task_InternalCurrentIfAttached_mA6A2C11F69612C4A960BC1FC6BD4E4D181D26A3B (int32_t ___creationOptions0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::PossiblyCaptureContext(System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_PossiblyCaptureContext_m0DB8D1ADD84B044BEBC0A692E45577D2B7ADFDA8 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, int32_t* ___stackMark0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task__ctor_m0769EBAC32FC56E43AA3EA4697369AD1C68508CC (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, Delegate_t * ___action0, RuntimeObject * ___state1, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___parent2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler6, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::get_IsRanToCompletion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_get_IsRanToCompletion_mCCFB04975336938D365F65C71C75A38CFE3721BC (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m798542DE19B3F02DC4F4B777BB2E73169F129DE1 (RuntimeObject * ___arg00, const RuntimeMethod* method); // System.Reflection.MethodInfo System.Delegate::get_Method() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Delegate_get_Method_m0AC85D2B0C4CA63C471BC37FFDC3A5EA1E8ED048 (Delegate_t * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::AtomicStateUpdate(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_AtomicStateUpdate_m8453A8B2D404F085626BC0BCFCB2593AA373F530 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, int32_t ___newBits0, int32_t ___illegalBits1, const RuntimeMethod* method); // System.Int32 System.Threading.Interlocked::Exchange(System.Int32&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Exchange_mD5CC61AF0F002355912FAAF84F26BE93639B5FD5 (int32_t* ___location10, int32_t ___value1, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task/ContingentProperties::SetCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContingentProperties_SetCompleted_m3CB1941CBE9F1D241A2AFA4E3F739C98B493E6DE (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::FinishStageThree() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_FinishStageThree_m543744E8C5DFC94B2F2898998663C85617999E32 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::get_IsWaitNotificationEnabledOrNotRanToCompletion() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_mEC26269ABD71D03847D81120160D2106C2B3D581_inline (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::InternalWait(System.Int32,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_InternalWait_m7F1436A365C066C8D9BDEB6740118206B0EFAD45 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, int32_t ___millisecondsTimeout0, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken1, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::NotifyDebuggerOfWaitCompletionIfNecessary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_NotifyDebuggerOfWaitCompletionIfNecessary_m71ACB838EB1988C1436F99C7EB0C819D9F025E2A (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::ThrowIfExceptional(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_ThrowIfExceptional_m57A30F74DDD3039C2EB41FA235A897626CE23A37 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, bool ___includeTaskCanceledExceptions0, const RuntimeMethod* method); // System.Threading.Tasks.Task/ContingentProperties System.Threading.Tasks.Task::EnsureContingentPropertiesInitialized(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * Task_EnsureContingentPropertiesInitialized_mFEF35F7CCA43B6FC6843167E62779F6C09100475 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, bool ___needsProtection0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::AddException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_AddException_m07648B13C5D6B6517EEC4C84D5C022965ED1AE54 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::Finish(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_Finish_m3CBED2C27D7A1E20A9D2A659D4DEA38FCC47DF8F (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, bool ___bUserDelegateExecuted0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::RecordInternalCancellationRequest(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_RecordInternalCancellationRequest_m013F01E4EAD86112C78A242191F3A3887F0A15BB (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::CancellationCleanupLogic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_CancellationCleanupLogic_m85636A9F2412CDC73F9CFC7CEB87A3C48ECF6BB2 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::Add(TElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Grouping_Add_m194E02D900DC5F2CAD7AB235F6421DA5E8A77ADB_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, int32_t ___element0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_Add_m194E02D900DC5F2CAD7AB235F6421DA5E8A77ADB_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_Add_m194E02D900DC5F2CAD7AB235F6421DA5E8A77ADB_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_elements_2(); NullCheck(L_0); int32_t L_1 = (int32_t)__this->get_count_3(); if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) == ((uint32_t)L_1)))) { goto IL_0023; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)__this->get_address_of_elements_2(); int32_t L_3 = (int32_t)__this->get_count_3(); if (((int64_t)L_3 * (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_3 * (int64_t)2 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Grouping_Add_m194E02D900DC5F2CAD7AB235F6421DA5E8A77ADB_RuntimeMethod_var); (( void (*) (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)L_2, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)2)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); } IL_0023: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_elements_2(); int32_t L_5 = (int32_t)__this->get_count_3(); int32_t L_6 = ___element0; NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)L_6); int32_t L_7 = (int32_t)__this->get_count_3(); __this->set_count_3(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); return; } } // System.Collections.Generic.IEnumerator`1<TElement> System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Grouping_GetEnumerator_m96584177D2096260F94B1669535099190D4DF1D9_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_GetEnumerator_m96584177D2096260F94B1669535099190D4DF1D9_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_GetEnumerator_m96584177D2096260F94B1669535099190D4DF1D9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { U3CGetEnumeratorU3Ed__7_t059771C667682D37D3B98CFBC00C27AB09D7070E * L_0 = (U3CGetEnumeratorU3Ed__7_t059771C667682D37D3B98CFBC00C27AB09D7070E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1)); (( void (*) (U3CGetEnumeratorU3Ed__7_t059771C667682D37D3B98CFBC00C27AB09D7070E *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); U3CGetEnumeratorU3Ed__7_t059771C667682D37D3B98CFBC00C27AB09D7070E * L_1 = (U3CGetEnumeratorU3Ed__7_t059771C667682D37D3B98CFBC00C27AB09D7070E *)L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); return (RuntimeObject*)L_1; } } // System.Collections.IEnumerator System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Grouping_System_Collections_IEnumerable_GetEnumerator_m5584E62BA305925AC5B936D24E02DCA4F4D972CE_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_IEnumerable_GetEnumerator_m5584E62BA305925AC5B936D24E02DCA4F4D972CE_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_IEnumerable_GetEnumerator_m5584E62BA305925AC5B936D24E02DCA4F4D972CE_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)__this); RuntimeObject* L_0 = (( RuntimeObject* (*) (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (RuntimeObject*)L_0; } } // System.Int32 System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.ICollection<TElement>.get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_get_Count_mDE563FB35990618F2AFEF9524108561BFDEC84FD_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_get_Count_mDE563FB35990618F2AFEF9524108561BFDEC84FD_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_get_Count_mDE563FB35990618F2AFEF9524108561BFDEC84FD_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_count_3(); return (int32_t)L_0; } } // System.Boolean System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.ICollection<TElement>.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_get_IsReadOnly_mAD044B15EEE0B64BB5A53F97D58D56681581E1D5_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_get_IsReadOnly_mAD044B15EEE0B64BB5A53F97D58D56681581E1D5_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_get_IsReadOnly_mAD044B15EEE0B64BB5A53F97D58D56681581E1D5_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { return (bool)1; } } // System.Void System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.ICollection<TElement>.Add(TElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Add_m996D08F1410BA896DFA7850499AA71879364C429_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Add_m996D08F1410BA896DFA7850499AA71879364C429_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Add_m996D08F1410BA896DFA7850499AA71879364C429_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Exception_t * L_0 = Error_NotSupported_mD771E9977E8BE0B8298A582AB0BB74D1CF10900D(/*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Add_m996D08F1410BA896DFA7850499AA71879364C429_RuntimeMethod_var); } } // System.Void System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.ICollection<TElement>.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Clear_mB32A5C3F1F6FDCD8DE2C57864E14BE49D300BED0_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Clear_mB32A5C3F1F6FDCD8DE2C57864E14BE49D300BED0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Clear_mB32A5C3F1F6FDCD8DE2C57864E14BE49D300BED0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Exception_t * L_0 = Error_NotSupported_mD771E9977E8BE0B8298A582AB0BB74D1CF10900D(/*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Clear_mB32A5C3F1F6FDCD8DE2C57864E14BE49D300BED0_RuntimeMethod_var); } } // System.Boolean System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.ICollection<TElement>.Contains(TElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Contains_m4552CB0F477C684FC0E6365F7CDD5A6113B19573_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Contains_m4552CB0F477C684FC0E6365F7CDD5A6113B19573_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Contains_m4552CB0F477C684FC0E6365F7CDD5A6113B19573_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_elements_2(); int32_t L_1 = ___item0; int32_t L_2 = (int32_t)__this->get_count_3(); int32_t L_3 = (( int32_t (*) (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_0, (int32_t)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return (bool)((((int32_t)((((int32_t)L_3) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Void System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.ICollection<TElement>.CopyTo(TElement[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_CopyTo_m4F16624888C915DABAA0F141A507F7C05B30CC80_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_CopyTo_m4F16624888C915DABAA0F141A507F7C05B30CC80_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_CopyTo_m4F16624888C915DABAA0F141A507F7C05B30CC80_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_elements_2(); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___array0; int32_t L_2 = ___arrayIndex1; int32_t L_3 = (int32_t)__this->get_count_3(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_0, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL); return; } } // System.Boolean System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.ICollection<TElement>.Remove(TElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Remove_m5C06BBCC6E844DEFDAECB0806F1FA080B3F90B20_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Remove_m5C06BBCC6E844DEFDAECB0806F1FA080B3F90B20_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Remove_m5C06BBCC6E844DEFDAECB0806F1FA080B3F90B20_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Exception_t * L_0 = Error_NotSupported_mD771E9977E8BE0B8298A582AB0BB74D1CF10900D(/*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Grouping_System_Collections_Generic_ICollectionU3CTElementU3E_Remove_m5C06BBCC6E844DEFDAECB0806F1FA080B3F90B20_RuntimeMethod_var); } } // System.Int32 System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.IList<TElement>.IndexOf(TElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Grouping_System_Collections_Generic_IListU3CTElementU3E_IndexOf_mFF7F9B14B00AC8DD59CDA480416AEB272C90CD27_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, int32_t ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_IListU3CTElementU3E_IndexOf_mFF7F9B14B00AC8DD59CDA480416AEB272C90CD27_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_IListU3CTElementU3E_IndexOf_mFF7F9B14B00AC8DD59CDA480416AEB272C90CD27_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_elements_2(); int32_t L_1 = ___item0; int32_t L_2 = (int32_t)__this->get_count_3(); int32_t L_3 = (( int32_t (*) (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*, int32_t, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_0, (int32_t)L_1, (int32_t)0, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); return (int32_t)L_3; } } // System.Void System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.IList<TElement>.Insert(System.Int32,TElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Grouping_System_Collections_Generic_IListU3CTElementU3E_Insert_m9CE5371725E3DF8203A5DDE67122DC1FCD6510A5_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, int32_t ___index0, int32_t ___item1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_IListU3CTElementU3E_Insert_m9CE5371725E3DF8203A5DDE67122DC1FCD6510A5_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_IListU3CTElementU3E_Insert_m9CE5371725E3DF8203A5DDE67122DC1FCD6510A5_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Exception_t * L_0 = Error_NotSupported_mD771E9977E8BE0B8298A582AB0BB74D1CF10900D(/*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Grouping_System_Collections_Generic_IListU3CTElementU3E_Insert_m9CE5371725E3DF8203A5DDE67122DC1FCD6510A5_RuntimeMethod_var); } } // System.Void System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.IList<TElement>.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Grouping_System_Collections_Generic_IListU3CTElementU3E_RemoveAt_mC74ED7D0A76A57C1FBF07D54A725D3EB190F9318_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_IListU3CTElementU3E_RemoveAt_mC74ED7D0A76A57C1FBF07D54A725D3EB190F9318_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_IListU3CTElementU3E_RemoveAt_mC74ED7D0A76A57C1FBF07D54A725D3EB190F9318_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Exception_t * L_0 = Error_NotSupported_mD771E9977E8BE0B8298A582AB0BB74D1CF10900D(/*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Grouping_System_Collections_Generic_IListU3CTElementU3E_RemoveAt_mC74ED7D0A76A57C1FBF07D54A725D3EB190F9318_RuntimeMethod_var); } } // TElement System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.IList<TElement>.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Grouping_System_Collections_Generic_IListU3CTElementU3E_get_Item_m3FF6913C426C1A1B558117683B9A073AEF486875_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_IListU3CTElementU3E_get_Item_m3FF6913C426C1A1B558117683B9A073AEF486875_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_IListU3CTElementU3E_get_Item_m3FF6913C426C1A1B558117683B9A073AEF486875_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = (int32_t)__this->get_count_3(); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0018; } } IL_000d: { Exception_t * L_3 = Error_ArgumentOutOfRange_mACFCB068F4E0C4EEF9E6EDDD59E798901C32C6C9((String_t*)_stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Grouping_System_Collections_Generic_IListU3CTElementU3E_get_Item_m3FF6913C426C1A1B558117683B9A073AEF486875_RuntimeMethod_var); } IL_0018: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_elements_2(); int32_t L_5 = ___index0; NullCheck(L_4); int32_t L_6 = L_5; int32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); return (int32_t)L_7; } } // System.Void System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.Generic.IList<TElement>.set_Item(System.Int32,TElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Grouping_System_Collections_Generic_IListU3CTElementU3E_set_Item_m5D93FAC6F689B1D1C5058132FA3BC3E794B0CEE2_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, int32_t ___index0, int32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping_System_Collections_Generic_IListU3CTElementU3E_set_Item_m5D93FAC6F689B1D1C5058132FA3BC3E794B0CEE2_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping_System_Collections_Generic_IListU3CTElementU3E_set_Item_m5D93FAC6F689B1D1C5058132FA3BC3E794B0CEE2_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Exception_t * L_0 = Error_NotSupported_mD771E9977E8BE0B8298A582AB0BB74D1CF10900D(/*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Grouping_System_Collections_Generic_IListU3CTElementU3E_set_Item_m5D93FAC6F689B1D1C5058132FA3BC3E794B0CEE2_RuntimeMethod_var); } } // System.Void System.Linq.Lookup`2_Grouping<UnityEngine.Polybrush.RndVec3,System.Int32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Grouping__ctor_m5ACCE08B5231968B89B3F01272EC97B6D9876258_gshared (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Grouping__ctor_m5ACCE08B5231968B89B3F01272EC97B6D9876258_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Grouping__ctor_m5ACCE08B5231968B89B3F01272EC97B6D9876258_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Linq.Lookup`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lookup_2__ctor_m9E47C07FD542171F547D6D08AE95E4BB85693B01_gshared (Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2__ctor_m9E47C07FD542171F547D6D08AE95E4BB85693B01_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2__ctor_m9E47C07FD542171F547D6D08AE95E4BB85693B01_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___comparer0; if (L_0) { goto IL_0010; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_1 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); ___comparer0 = (RuntimeObject*)L_1; } IL_0010: { RuntimeObject* L_2 = ___comparer0; __this->set_comparer_0(L_2); GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* L_3 = (GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671*)(GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (uint32_t)7); __this->set_groupings_1(L_3); return; } } // System.Collections.Generic.IEnumerator`1<System.Linq.IGrouping`2<TKey,TElement>> System.Linq.Lookup`2<System.Object,System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Lookup_2_GetEnumerator_mADDC51418F76E7024AAD9789AD0B804000D43874_gshared (Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2_GetEnumerator_mADDC51418F76E7024AAD9789AD0B804000D43874_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2_GetEnumerator_mADDC51418F76E7024AAD9789AD0B804000D43874_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { U3CGetEnumeratorU3Ed__12_t57DA3BE58CD06B6576C9EA915CBD67054F68F010 * L_0 = (U3CGetEnumeratorU3Ed__12_t57DA3BE58CD06B6576C9EA915CBD67054F68F010 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)); (( void (*) (U3CGetEnumeratorU3Ed__12_t57DA3BE58CD06B6576C9EA915CBD67054F68F010 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); U3CGetEnumeratorU3Ed__12_t57DA3BE58CD06B6576C9EA915CBD67054F68F010 * L_1 = (U3CGetEnumeratorU3Ed__12_t57DA3BE58CD06B6576C9EA915CBD67054F68F010 *)L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); return (RuntimeObject*)L_1; } } // System.Collections.IEnumerator System.Linq.Lookup`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Lookup_2_System_Collections_IEnumerable_GetEnumerator_m62B91FA391D704608B70F2BA1A54C8DDFF740356_gshared (Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2_System_Collections_IEnumerable_GetEnumerator_m62B91FA391D704608B70F2BA1A54C8DDFF740356_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2_System_Collections_IEnumerable_GetEnumerator_m62B91FA391D704608B70F2BA1A54C8DDFF740356_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 *)__this); RuntimeObject* L_0 = (( RuntimeObject* (*) (Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (RuntimeObject*)L_0; } } // System.Int32 System.Linq.Lookup`2<System.Object,System.Object>::InternalGetHashCode(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Lookup_2_InternalGetHashCode_mF4C4A0D768038B8B963FC546DF3967F9D4D5A878_gshared (Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2_InternalGetHashCode_mF4C4A0D768038B8B963FC546DF3967F9D4D5A878_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2_InternalGetHashCode_mF4C4A0D768038B8B963FC546DF3967F9D4D5A878_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___key0; if (!L_0) { goto IL_001b; } } { RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_0(); RuntimeObject * L_2 = ___key0; NullCheck((RuntimeObject*)L_1); int32_t L_3 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_1, (RuntimeObject *)L_2); return (int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)2147483647LL))); } IL_001b: { return (int32_t)0; } } // System.Linq.Lookup`2_Grouping<TKey,TElement> System.Linq.Lookup`2<System.Object,System.Object>::GetGrouping(TKey,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * Lookup_2_GetGrouping_m0753627BD1ADBF791B7093FD25C092906CC1455B_gshared (Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 * __this, RuntimeObject * ___key0, bool ___create1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2_GetGrouping_m0753627BD1ADBF791B7093FD25C092906CC1455B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * V_1 = NULL; int32_t V_2 = 0; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * V_3 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2_GetGrouping_m0753627BD1ADBF791B7093FD25C092906CC1455B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___key0; NullCheck((Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 *)__this); int32_t L_1 = (( int32_t (*) (Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); V_0 = (int32_t)L_1; GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* L_2 = (GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671*)__this->get_groupings_1(); int32_t L_3 = V_0; GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* L_4 = (GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671*)__this->get_groupings_1(); NullCheck(L_4); NullCheck(L_2); int32_t L_5 = ((int32_t)((int32_t)L_3%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_6 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_1 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_6; goto IL_0042; } IL_001c: { CHECK_PAUSE_POINT; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_7 = V_1; NullCheck(L_7); int32_t L_8 = (int32_t)L_7->get_hashCode_1(); int32_t L_9 = V_0; if ((!(((uint32_t)L_8) == ((uint32_t)L_9)))) { goto IL_003b; } } { RuntimeObject* L_10 = (RuntimeObject*)__this->get_comparer_0(); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_11 = V_1; NullCheck(L_11); RuntimeObject * L_12 = (RuntimeObject *)L_11->get_key_0(); RuntimeObject * L_13 = ___key0; NullCheck((RuntimeObject*)L_10); bool L_14 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_10, (RuntimeObject *)L_12, (RuntimeObject *)L_13); if (!L_14) { goto IL_003b; } } { Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_15 = V_1; return (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_15; } IL_003b: { Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_16 = V_1; NullCheck(L_16); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_17 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_16->get_hashNext_4(); V_1 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_17; } IL_0042: { Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_18 = V_1; if (L_18) { goto IL_001c; } } { bool L_19 = ___create1; if (!L_19) { goto IL_00e8; } } { int32_t L_20 = (int32_t)__this->get_count_3(); GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* L_21 = (GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671*)__this->get_groupings_1(); NullCheck(L_21); if ((!(((uint32_t)L_20) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))))))) { goto IL_0061; } } { NullCheck((Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 *)__this); (( void (*) (Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); } IL_0061: { int32_t L_22 = V_0; GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* L_23 = (GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671*)__this->get_groupings_1(); NullCheck(L_23); V_2 = (int32_t)((int32_t)((int32_t)L_22%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_24 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 14)); (( void (*) (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)(L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)); V_3 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_24; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_25 = V_3; RuntimeObject * L_26 = ___key0; NullCheck(L_25); L_25->set_key_0(L_26); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_27 = V_3; int32_t L_28 = V_0; NullCheck(L_27); L_27->set_hashCode_1(L_28); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_29 = V_3; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 16), (uint32_t)1); NullCheck(L_29); L_29->set_elements_2(L_30); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_31 = V_3; GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* L_32 = (GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671*)__this->get_groupings_1(); int32_t L_33 = V_2; NullCheck(L_32); int32_t L_34 = L_33; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_35 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)(L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34)); NullCheck(L_31); L_31->set_hashNext_4(L_35); GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* L_36 = (GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671*)__this->get_groupings_1(); int32_t L_37 = V_2; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_38 = V_3; NullCheck(L_36); ArrayElementTypeCheck (L_36, L_38); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_38); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_39 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)__this->get_lastGrouping_2(); if (L_39) { goto IL_00b4; } } { Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_40 = V_3; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_41 = V_3; NullCheck(L_40); L_40->set_next_5(L_41); goto IL_00d1; } IL_00b4: { Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_42 = V_3; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_43 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)__this->get_lastGrouping_2(); NullCheck(L_43); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_44 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_43->get_next_5(); NullCheck(L_42); L_42->set_next_5(L_44); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_45 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)__this->get_lastGrouping_2(); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_46 = V_3; NullCheck(L_45); L_45->set_next_5(L_46); } IL_00d1: { Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_47 = V_3; __this->set_lastGrouping_2(L_47); int32_t L_48 = (int32_t)__this->get_count_3(); __this->set_count_3(((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1))); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_49 = V_3; return (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_49; } IL_00e8: { return (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)NULL; } } // System.Void System.Linq.Lookup`2<System.Object,System.Object>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lookup_2_Resize_m55BCE05BB13ADF0ABEDF9B6767F0718E7B54FAC0_gshared (Lookup_2_tBC10A0E0C1157DB0775667109CB58765560FD9B4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2_Resize_m55BCE05BB13ADF0ABEDF9B6767F0718E7B54FAC0_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* V_1 = NULL; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * V_2 = NULL; int32_t V_3 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2_Resize_m55BCE05BB13ADF0ABEDF9B6767F0718E7B54FAC0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_count_3(); if (((int64_t)L_0 * (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_0 * (int64_t)2 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Lookup_2_Resize_m55BCE05BB13ADF0ABEDF9B6767F0718E7B54FAC0_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)) + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)) + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Lookup_2_Resize_m55BCE05BB13ADF0ABEDF9B6767F0718E7B54FAC0_RuntimeMethod_var); V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)), (int32_t)1)); int32_t L_1 = V_0; GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* L_2 = (GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671*)(GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (uint32_t)L_1); V_1 = (GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671*)L_2; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_3 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)__this->get_lastGrouping_2(); V_2 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_3; } IL_0019: { CHECK_PAUSE_POINT; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_4 = V_2; NullCheck(L_4); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_5 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_4->get_next_5(); V_2 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_5; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_6 = V_2; NullCheck(L_6); int32_t L_7 = (int32_t)L_6->get_hashCode_1(); int32_t L_8 = V_0; V_3 = (int32_t)((int32_t)((int32_t)L_7%(int32_t)L_8)); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_9 = V_2; GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* L_10 = V_1; int32_t L_11 = V_3; NullCheck(L_10); int32_t L_12 = L_11; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_13 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)(L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); NullCheck(L_9); L_9->set_hashNext_4(L_13); GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* L_14 = V_1; int32_t L_15 = V_3; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_16 = V_2; NullCheck(L_14); ArrayElementTypeCheck (L_14, L_16); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_16); Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_17 = V_2; Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 * L_18 = (Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)__this->get_lastGrouping_2(); if ((!(((RuntimeObject*)(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_17) == ((RuntimeObject*)(Grouping_tA862DC78BA5EA35749A31D9D4E7DF846DE2A7D63 *)L_18)))) { goto IL_0019; } } { GroupingU5BU5D_t94DF7CDC563B5BF4B6D680360032657B32743671* L_19 = V_1; __this->set_groupings_1(L_19); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Linq.Lookup`2<UnityEngine.Polybrush.RndVec3,System.Int32>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lookup_2__ctor_mD91B999C81536436BEAEDD089AFDD080CA6D72F8_gshared (Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2__ctor_mD91B999C81536436BEAEDD089AFDD080CA6D72F8_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2__ctor_mD91B999C81536436BEAEDD089AFDD080CA6D72F8_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___comparer0; if (L_0) { goto IL_0010; } } { EqualityComparer_1_t2582F078E4ACE6DD1049AE28AE13402799B77055 * L_1 = (( EqualityComparer_1_t2582F078E4ACE6DD1049AE28AE13402799B77055 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); ___comparer0 = (RuntimeObject*)L_1; } IL_0010: { RuntimeObject* L_2 = ___comparer0; __this->set_comparer_0(L_2); GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* L_3 = (GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B*)(GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (uint32_t)7); __this->set_groupings_1(L_3); return; } } // System.Collections.Generic.IEnumerator`1<System.Linq.IGrouping`2<TKey,TElement>> System.Linq.Lookup`2<UnityEngine.Polybrush.RndVec3,System.Int32>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Lookup_2_GetEnumerator_m8CDBAF288C8E1DDA2DA58F0D77E002ED6F093AFE_gshared (Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2_GetEnumerator_m8CDBAF288C8E1DDA2DA58F0D77E002ED6F093AFE_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2_GetEnumerator_m8CDBAF288C8E1DDA2DA58F0D77E002ED6F093AFE_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { U3CGetEnumeratorU3Ed__12_tDCB8CC17846167F85FB0C4258EC690ACAB4447B9 * L_0 = (U3CGetEnumeratorU3Ed__12_tDCB8CC17846167F85FB0C4258EC690ACAB4447B9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 7)); (( void (*) (U3CGetEnumeratorU3Ed__12_tDCB8CC17846167F85FB0C4258EC690ACAB4447B9 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 8)); U3CGetEnumeratorU3Ed__12_tDCB8CC17846167F85FB0C4258EC690ACAB4447B9 * L_1 = (U3CGetEnumeratorU3Ed__12_tDCB8CC17846167F85FB0C4258EC690ACAB4447B9 *)L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); return (RuntimeObject*)L_1; } } // System.Collections.IEnumerator System.Linq.Lookup`2<UnityEngine.Polybrush.RndVec3,System.Int32>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Lookup_2_System_Collections_IEnumerable_GetEnumerator_m8B158492070EC205313929BC54B4C7714A45EA60_gshared (Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2_System_Collections_IEnumerable_GetEnumerator_m8B158492070EC205313929BC54B4C7714A45EA60_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2_System_Collections_IEnumerable_GetEnumerator_m8B158492070EC205313929BC54B4C7714A45EA60_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D *)__this); RuntimeObject* L_0 = (( RuntimeObject* (*) (Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)->methodPointer)((Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (RuntimeObject*)L_0; } } // System.Int32 System.Linq.Lookup`2<UnityEngine.Polybrush.RndVec3,System.Int32>::InternalGetHashCode(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Lookup_2_InternalGetHashCode_mBDFF57050CFC9AB1931869A1211FACF1FF08C0C0_gshared (Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D * __this, RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2_InternalGetHashCode_mBDFF57050CFC9AB1931869A1211FACF1FF08C0C0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2_InternalGetHashCode_mBDFF57050CFC9AB1931869A1211FACF1FF08C0C0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { } { RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_0(); RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 L_2 = ___key0; NullCheck((RuntimeObject*)L_1); int32_t L_3 = InterfaceFuncInvoker1< int32_t, RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<UnityEngine.Polybrush.RndVec3>::GetHashCode(!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_1, (RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 )L_2); return (int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)2147483647LL))); } IL_001b: { return (int32_t)0; } } // System.Linq.Lookup`2_Grouping<TKey,TElement> System.Linq.Lookup`2<UnityEngine.Polybrush.RndVec3,System.Int32>::GetGrouping(TKey,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * Lookup_2_GetGrouping_m1C752DAAFBBD5C7AFF73C51662E1FFE0738CD618_gshared (Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D * __this, RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 ___key0, bool ___create1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2_GetGrouping_m1C752DAAFBBD5C7AFF73C51662E1FFE0738CD618_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * V_1 = NULL; int32_t V_2 = 0; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * V_3 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2_GetGrouping_m1C752DAAFBBD5C7AFF73C51662E1FFE0738CD618_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 L_0 = ___key0; NullCheck((Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D *)__this); int32_t L_1 = (( int32_t (*) (Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D *, RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)->methodPointer)((Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D *)__this, (RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 12)); V_0 = (int32_t)L_1; GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* L_2 = (GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B*)__this->get_groupings_1(); int32_t L_3 = V_0; GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* L_4 = (GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B*)__this->get_groupings_1(); NullCheck(L_4); NullCheck(L_2); int32_t L_5 = ((int32_t)((int32_t)L_3%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_6 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_1 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_6; goto IL_0042; } IL_001c: { CHECK_PAUSE_POINT; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_7 = V_1; NullCheck(L_7); int32_t L_8 = (int32_t)L_7->get_hashCode_1(); int32_t L_9 = V_0; if ((!(((uint32_t)L_8) == ((uint32_t)L_9)))) { goto IL_003b; } } { RuntimeObject* L_10 = (RuntimeObject*)__this->get_comparer_0(); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_11 = V_1; NullCheck(L_11); RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 L_12 = (RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 )L_11->get_key_0(); RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 L_13 = ___key0; NullCheck((RuntimeObject*)L_10); bool L_14 = InterfaceFuncInvoker2< bool, RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 , RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<UnityEngine.Polybrush.RndVec3>::Equals(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 11), (RuntimeObject*)L_10, (RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 )L_12, (RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 )L_13); if (!L_14) { goto IL_003b; } } { Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_15 = V_1; return (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_15; } IL_003b: { Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_16 = V_1; NullCheck(L_16); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_17 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_16->get_hashNext_4(); V_1 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_17; } IL_0042: { Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_18 = V_1; if (L_18) { goto IL_001c; } } { bool L_19 = ___create1; if (!L_19) { goto IL_00e8; } } { int32_t L_20 = (int32_t)__this->get_count_3(); GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* L_21 = (GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B*)__this->get_groupings_1(); NullCheck(L_21); if ((!(((uint32_t)L_20) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))))))) { goto IL_0061; } } { NullCheck((Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D *)__this); (( void (*) (Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)->methodPointer)((Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 13)); } IL_0061: { int32_t L_22 = V_0; GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* L_23 = (GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B*)__this->get_groupings_1(); NullCheck(L_23); V_2 = (int32_t)((int32_t)((int32_t)L_22%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_24 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 14)); (( void (*) (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)->methodPointer)(L_24, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 15)); V_3 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_24; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_25 = V_3; RndVec3_t3471BC6916C8ABAD36286F97BFE72CBD7937A530 L_26 = ___key0; NullCheck(L_25); L_25->set_key_0(L_26); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_27 = V_3; int32_t L_28 = V_0; NullCheck(L_27); L_27->set_hashCode_1(L_28); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_29 = V_3; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_30 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 16), (uint32_t)1); NullCheck(L_29); L_29->set_elements_2(L_30); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_31 = V_3; GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* L_32 = (GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B*)__this->get_groupings_1(); int32_t L_33 = V_2; NullCheck(L_32); int32_t L_34 = L_33; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_35 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)(L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34)); NullCheck(L_31); L_31->set_hashNext_4(L_35); GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* L_36 = (GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B*)__this->get_groupings_1(); int32_t L_37 = V_2; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_38 = V_3; NullCheck(L_36); ArrayElementTypeCheck (L_36, L_38); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_38); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_39 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)__this->get_lastGrouping_2(); if (L_39) { goto IL_00b4; } } { Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_40 = V_3; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_41 = V_3; NullCheck(L_40); L_40->set_next_5(L_41); goto IL_00d1; } IL_00b4: { Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_42 = V_3; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_43 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)__this->get_lastGrouping_2(); NullCheck(L_43); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_44 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_43->get_next_5(); NullCheck(L_42); L_42->set_next_5(L_44); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_45 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)__this->get_lastGrouping_2(); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_46 = V_3; NullCheck(L_45); L_45->set_next_5(L_46); } IL_00d1: { Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_47 = V_3; __this->set_lastGrouping_2(L_47); int32_t L_48 = (int32_t)__this->get_count_3(); __this->set_count_3(((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1))); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_49 = V_3; return (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_49; } IL_00e8: { return (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)NULL; } } // System.Void System.Linq.Lookup`2<UnityEngine.Polybrush.RndVec3,System.Int32>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lookup_2_Resize_m1BC513742EBB77CA5062322E6BC4A673137456F8_gshared (Lookup_2_t62101405CA760BDDE08CF342F36C7B0BE227708D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Lookup_2_Resize_m1BC513742EBB77CA5062322E6BC4A673137456F8_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* V_1 = NULL; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * V_2 = NULL; int32_t V_3 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Lookup_2_Resize_m1BC513742EBB77CA5062322E6BC4A673137456F8_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_count_3(); if (((int64_t)L_0 * (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_0 * (int64_t)2 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Lookup_2_Resize_m1BC513742EBB77CA5062322E6BC4A673137456F8_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)) + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)) + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Lookup_2_Resize_m1BC513742EBB77CA5062322E6BC4A673137456F8_RuntimeMethod_var); V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)), (int32_t)1)); int32_t L_1 = V_0; GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* L_2 = (GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B*)(GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6), (uint32_t)L_1); V_1 = (GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B*)L_2; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_3 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)__this->get_lastGrouping_2(); V_2 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_3; } IL_0019: { CHECK_PAUSE_POINT; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_4 = V_2; NullCheck(L_4); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_5 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_4->get_next_5(); V_2 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_5; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_6 = V_2; NullCheck(L_6); int32_t L_7 = (int32_t)L_6->get_hashCode_1(); int32_t L_8 = V_0; V_3 = (int32_t)((int32_t)((int32_t)L_7%(int32_t)L_8)); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_9 = V_2; GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* L_10 = V_1; int32_t L_11 = V_3; NullCheck(L_10); int32_t L_12 = L_11; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_13 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)(L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); NullCheck(L_9); L_9->set_hashNext_4(L_13); GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* L_14 = V_1; int32_t L_15 = V_3; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_16 = V_2; NullCheck(L_14); ArrayElementTypeCheck (L_14, L_16); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_16); Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_17 = V_2; Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC * L_18 = (Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)__this->get_lastGrouping_2(); if ((!(((RuntimeObject*)(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_17) == ((RuntimeObject*)(Grouping_t6F6CBED596E50144933987E057CFDA94A90393FC *)L_18)))) { goto IL_0019; } } { GroupingU5BU5D_t7DBF47164D7F7BD94125006D51972629DEB3521B* L_19 = V_1; __this->set_groupings_1(L_19); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__1__ctor_mA7BF0B53308C5EAD3A3E8484E4CC12E0226751BE_gshared (U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__1__ctor_mA7BF0B53308C5EAD3A3E8484E4CC12E0226751BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CGetEnumeratorU3Ed__1__ctor_mA7BF0B53308C5EAD3A3E8484E4CC12E0226751BE_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1<System.Object>::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__1_System_IDisposable_Dispose_m01544C5EBD94E647D9097CED71885C0B2569DDCB_gshared (U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__1_System_IDisposable_Dispose_m01544C5EBD94E647D9097CED71885C0B2569DDCB_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CGetEnumeratorU3Ed__1_System_IDisposable_Dispose_m01544C5EBD94E647D9097CED71885C0B2569DDCB_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { return; } } // System.Boolean System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1<System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CGetEnumeratorU3Ed__1_MoveNext_m23D3773DBF4D81ABBC236E9DDA007553DC56A04F_gshared (U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__1_MoveNext_m23D3773DBF4D81ABBC236E9DDA007553DC56A04F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * V_1 = NULL; EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * V_2 = NULL; int32_t V_3 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CGetEnumeratorU3Ed__1_MoveNext_m23D3773DBF4D81ABBC236E9DDA007553DC56A04F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_U3CU3E1__state_0(); V_0 = (int32_t)L_0; OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * L_1 = (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this->get_U3CU3E4__this_2(); V_1 = (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_001a; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_00a4; } } { return (bool)0; } IL_001a: { __this->set_U3CU3E1__state_0((-1)); OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * L_4 = V_1; NullCheck(L_4); RuntimeObject* L_5 = (RuntimeObject*)L_4->get_source_0(); Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C L_6; memset((&L_6), 0, sizeof(L_6)); Buffer_1__ctor_mFC593D644243CEC302C442E4AA893955A7EA307C((&L_6), (RuntimeObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); __this->set_U3CbufferU3E5__1_3(L_6); Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * L_7 = (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C *)__this->get_address_of_U3CbufferU3E5__1_3(); int32_t L_8 = (int32_t)L_7->get_count_1(); if ((((int32_t)L_8) <= ((int32_t)0))) { goto IL_00d5; } } { OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * L_9 = V_1; NullCheck((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)L_9); EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_10 = VirtFuncInvoker1< EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *, EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * >::Invoke(7 /* System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`1<System.Object>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) */, (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)L_9, (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)NULL); V_2 = (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_10; EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_11 = V_2; Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * L_12 = (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C *)__this->get_address_of_U3CbufferU3E5__1_3(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_12->get_items_0(); Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * L_14 = (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C *)__this->get_address_of_U3CbufferU3E5__1_3(); int32_t L_15 = (int32_t)L_14->get_count_1(); NullCheck((EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_11); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_16 = (( Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* (*) (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_11, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_13, (int32_t)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); __this->set_U3CmapU3E5__2_4(L_16); V_2 = (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)NULL; __this->set_U3CiU3E5__3_5(0); goto IL_00bb; } IL_0078: { CHECK_PAUSE_POINT; Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * L_17 = (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C *)__this->get_address_of_U3CbufferU3E5__1_3(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_17->get_items_0(); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_19 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_U3CmapU3E5__2_4(); int32_t L_20 = (int32_t)__this->get_U3CiU3E5__3_5(); NullCheck(L_19); int32_t L_21 = L_20; int32_t L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); NullCheck(L_18); int32_t L_23 = L_22; RuntimeObject * L_24 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_23)); __this->set_U3CU3E2__current_1(L_24); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_00a4: { __this->set_U3CU3E1__state_0((-1)); int32_t L_25 = (int32_t)__this->get_U3CiU3E5__3_5(); V_3 = (int32_t)L_25; int32_t L_26 = V_3; __this->set_U3CiU3E5__3_5(((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1))); } IL_00bb: { int32_t L_27 = (int32_t)__this->get_U3CiU3E5__3_5(); Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C * L_28 = (Buffer_1_t2CE96CAF247505180F566E4C89694A9A03871D7C *)__this->get_address_of_U3CbufferU3E5__1_3(); int32_t L_29 = (int32_t)L_28->get_count_1(); if ((((int32_t)L_27) < ((int32_t)L_29))) { goto IL_0078; } } { __this->set_U3CmapU3E5__2_4((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL); } IL_00d5: { return (bool)0; } } // TElement System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1<System.Object>::System.Collections.Generic.IEnumerator<TElement>.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CGetEnumeratorU3Ed__1_System_Collections_Generic_IEnumeratorU3CTElementU3E_get_Current_m98DEA03BA71A147ED84ECA2263938A496D057E96_gshared (U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__1_System_Collections_Generic_IEnumeratorU3CTElementU3E_get_Current_m98DEA03BA71A147ED84ECA2263938A496D057E96_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CGetEnumeratorU3Ed__1_System_Collections_Generic_IEnumeratorU3CTElementU3E_get_Current_m98DEA03BA71A147ED84ECA2263938A496D057E96_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CU3E2__current_1(); return (RuntimeObject *)L_0; } } // System.Void System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1<System.Object>::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_m7D5F72F53326D41EF185078584418D121C372D28_gshared (U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_m7D5F72F53326D41EF185078584418D121C372D28_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_m7D5F72F53326D41EF185078584418D121C372D28_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_m7D5F72F53326D41EF185078584418D121C372D28_RuntimeMethod_var); } } // System.Object System.Linq.OrderedEnumerable`1_<GetEnumerator>d__1<System.Object>::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_get_Current_m0597A01A32A7AD6E2F392811D14CF721CFCCCF1D_gshared (U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_get_Current_m0597A01A32A7AD6E2F392811D14CF721CFCCCF1D_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_get_Current_m0597A01A32A7AD6E2F392811D14CF721CFCCCF1D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CU3E2__current_1(); return (RuntimeObject *)L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.IEnumerator`1<TElement> System.Linq.OrderedEnumerable`1<System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_GetEnumerator_m6B583F692645DA469982C5C635DE70D5553CC4EB_gshared (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OrderedEnumerable_1_GetEnumerator_m6B583F692645DA469982C5C635DE70D5553CC4EB_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, OrderedEnumerable_1_GetEnumerator_m6B583F692645DA469982C5C635DE70D5553CC4EB_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF * L_0 = (U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); (( void (*) (U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF * L_1 = (U3CGetEnumeratorU3Ed__1_tF9DE42C16F2A27932939932C774BB0A430FAD5CF *)L_0; NullCheck(L_1); L_1->set_U3CU3E4__this_2(__this); return (RuntimeObject*)L_1; } } // System.Collections.IEnumerator System.Linq.OrderedEnumerable`1<System.Object>::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Collections_IEnumerable_GetEnumerator_mB6C6801C983E116B406413C829A698AD37281F93_gshared (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OrderedEnumerable_1_System_Collections_IEnumerable_GetEnumerator_mB6C6801C983E116B406413C829A698AD37281F93_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, OrderedEnumerable_1_System_Collections_IEnumerable_GetEnumerator_mB6C6801C983E116B406413C829A698AD37281F93_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this); RuntimeObject* L_0 = (( RuntimeObject* (*) (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (RuntimeObject*)L_0; } } // System.Void System.Linq.OrderedEnumerable`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_1__ctor_m3CA8A9BBEF36999C72B40DB7DEDAC6639FC006AB_gshared (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OrderedEnumerable_1__ctor_m3CA8A9BBEF36999C72B40DB7DEDAC6639FC006AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, OrderedEnumerable_1__ctor_m3CA8A9BBEF36999C72B40DB7DEDAC6639FC006AB_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Linq.OrderedEnumerable`2<System.Object,System.Int32>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_mBC31DD2997EB411D3D86107019A712E928751317_gshared (OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A * __this, RuntimeObject* ___source0, Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ___keySelector1, RuntimeObject* ___comparer2, bool ___descending3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OrderedEnumerable_2__ctor_mBC31DD2997EB411D3D86107019A712E928751317_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, OrderedEnumerable_2__ctor_mBC31DD2997EB411D3D86107019A712E928751317_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A * G_B6_0 = NULL; OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A * G_B5_0 = NULL; RuntimeObject* G_B7_0 = NULL; OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A * G_B7_1 = NULL; { NullCheck((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this); (( void (*) (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_0014; } } { Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, OrderedEnumerable_2__ctor_mBC31DD2997EB411D3D86107019A712E928751317_RuntimeMethod_var); } IL_0014: { Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_2 = ___keySelector1; if (L_2) { goto IL_0022; } } { Exception_t * L_3 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral8019FF861180B0DC6C2B79B88A224FEAFA0EBDB6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, OrderedEnumerable_2__ctor_mBC31DD2997EB411D3D86107019A712E928751317_RuntimeMethod_var); } IL_0022: { RuntimeObject* L_4 = ___source0; ((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this)->set_source_0(L_4); __this->set_parent_1((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)NULL); Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_5 = ___keySelector1; __this->set_keySelector_2(L_5); RuntimeObject* L_6 = ___comparer2; G_B5_0 = ((OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A *)(__this)); if (L_6) { G_B6_0 = ((OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A *)(__this)); goto IL_0044; } } { Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * L_7 = (( Comparer_1_t0796DB4CA0FA9609FBB2A6AEBA7EDF7DD7EE23A2 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (RuntimeObject*)L_7; RuntimeObject* L_8 = V_0; G_B7_0 = L_8; G_B7_1 = ((OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A *)(G_B5_0)); goto IL_0045; } IL_0044: { RuntimeObject* L_9 = ___comparer2; G_B7_0 = L_9; G_B7_1 = ((OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A *)(G_B6_0)); } IL_0045: { NullCheck(G_B7_1); G_B7_1->set_comparer_3(G_B7_0); bool L_10 = ___descending3; __this->set_descending_4(L_10); return; } } // System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`2<System.Object,System.Int32>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * OrderedEnumerable_2_GetEnumerableSorter_m5BF80E853BE7CFB5028886234C5AB0E68C68B5D6_gshared (OrderedEnumerable_2_tECD5641E7C9F6F62CDD36C5D211519A4056E591A * __this, EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * ___next0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OrderedEnumerable_2_GetEnumerableSorter_m5BF80E853BE7CFB5028886234C5AB0E68C68B5D6_MetadataUsageId); s_Il2CppMethodInitialized = true; } EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, OrderedEnumerable_2_GetEnumerableSorter_m5BF80E853BE7CFB5028886234C5AB0E68C68B5D6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_0 = (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *)__this->get_keySelector_2(); RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_3(); bool L_2 = (bool)__this->get_descending_4(); EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_3 = ___next0; EnumerableSorter_2_t56609821E158442D191275EA8CF7C841B1779643 * L_4 = (EnumerableSorter_2_t56609821E158442D191275EA8CF7C841B1779643 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (EnumerableSorter_2_t56609821E158442D191275EA8CF7C841B1779643 *, Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *, RuntimeObject*, bool, EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_4, (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *)L_0, (RuntimeObject*)L_1, (bool)L_2, (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); V_0 = (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_4; OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * L_5 = (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this->get_parent_1(); if (!L_5) { goto IL_002e; } } { OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * L_6 = (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this->get_parent_1(); EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_7 = V_0; NullCheck((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)L_6); EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_8 = VirtFuncInvoker1< EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *, EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * >::Invoke(7 /* System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`1<System.Object>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) */, (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)L_6, (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_7); V_0 = (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_8; } IL_002e: { EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_9 = V_0; return (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_9; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Linq.OrderedEnumerable`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_mA05BEA8881ECC81117F11B951C7410BE282429B7_gshared (OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B * __this, RuntimeObject* ___source0, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ___keySelector1, RuntimeObject* ___comparer2, bool ___descending3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OrderedEnumerable_2__ctor_mA05BEA8881ECC81117F11B951C7410BE282429B7_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, OrderedEnumerable_2__ctor_mA05BEA8881ECC81117F11B951C7410BE282429B7_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B * G_B6_0 = NULL; OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B * G_B5_0 = NULL; RuntimeObject* G_B7_0 = NULL; OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B * G_B7_1 = NULL; { NullCheck((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this); (( void (*) (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_0014; } } { Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, OrderedEnumerable_2__ctor_mA05BEA8881ECC81117F11B951C7410BE282429B7_RuntimeMethod_var); } IL_0014: { Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_2 = ___keySelector1; if (L_2) { goto IL_0022; } } { Exception_t * L_3 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral8019FF861180B0DC6C2B79B88A224FEAFA0EBDB6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, OrderedEnumerable_2__ctor_mA05BEA8881ECC81117F11B951C7410BE282429B7_RuntimeMethod_var); } IL_0022: { RuntimeObject* L_4 = ___source0; ((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this)->set_source_0(L_4); __this->set_parent_1((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)NULL); Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_5 = ___keySelector1; __this->set_keySelector_2(L_5); RuntimeObject* L_6 = ___comparer2; G_B5_0 = ((OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B *)(__this)); if (L_6) { G_B6_0 = ((OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B *)(__this)); goto IL_0044; } } { Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * L_7 = (( Comparer_1_t1DB742817DFA148A84E0F6044361F97B935058A7 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (RuntimeObject*)L_7; RuntimeObject* L_8 = V_0; G_B7_0 = L_8; G_B7_1 = ((OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B *)(G_B5_0)); goto IL_0045; } IL_0044: { RuntimeObject* L_9 = ___comparer2; G_B7_0 = L_9; G_B7_1 = ((OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B *)(G_B6_0)); } IL_0045: { NullCheck(G_B7_1); G_B7_1->set_comparer_3(G_B7_0); bool L_10 = ___descending3; __this->set_descending_4(L_10); return; } } // System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`2<System.Object,System.Object>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * OrderedEnumerable_2_GetEnumerableSorter_mB4E96D7A5E37C58C32C154BF14B7A9E3E7F32580_gshared (OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B * __this, EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * ___next0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OrderedEnumerable_2_GetEnumerableSorter_mB4E96D7A5E37C58C32C154BF14B7A9E3E7F32580_MetadataUsageId); s_Il2CppMethodInitialized = true; } EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, OrderedEnumerable_2_GetEnumerableSorter_mB4E96D7A5E37C58C32C154BF14B7A9E3E7F32580_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_0 = (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *)__this->get_keySelector_2(); RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_3(); bool L_2 = (bool)__this->get_descending_4(); EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_3 = ___next0; EnumerableSorter_2_t19205173CCB93530513BCCBE85B39471E531BB13 * L_4 = (EnumerableSorter_2_t19205173CCB93530513BCCBE85B39471E531BB13 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (EnumerableSorter_2_t19205173CCB93530513BCCBE85B39471E531BB13 *, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *, RuntimeObject*, bool, EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_4, (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *)L_0, (RuntimeObject*)L_1, (bool)L_2, (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); V_0 = (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_4; OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * L_5 = (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this->get_parent_1(); if (!L_5) { goto IL_002e; } } { OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * L_6 = (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this->get_parent_1(); EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_7 = V_0; NullCheck((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)L_6); EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_8 = VirtFuncInvoker1< EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *, EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * >::Invoke(7 /* System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`1<System.Object>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) */, (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)L_6, (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_7); V_0 = (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_8; } IL_002e: { EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_9 = V_0; return (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_9; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Linq.OrderedEnumerable`2<System.Object,System.UInt32>::.ctor(System.Collections.Generic.IEnumerable`1<TElement>,System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderedEnumerable_2__ctor_mED1C124F227E7A0EB33F97EC366CE099B482B736_gshared (OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 * __this, RuntimeObject* ___source0, Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * ___keySelector1, RuntimeObject* ___comparer2, bool ___descending3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OrderedEnumerable_2__ctor_mED1C124F227E7A0EB33F97EC366CE099B482B736_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, OrderedEnumerable_2__ctor_mED1C124F227E7A0EB33F97EC366CE099B482B736_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 * G_B6_0 = NULL; OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 * G_B5_0 = NULL; RuntimeObject* G_B7_0 = NULL; OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 * G_B7_1 = NULL; { NullCheck((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this); (( void (*) (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); RuntimeObject* L_0 = ___source0; if (L_0) { goto IL_0014; } } { Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, OrderedEnumerable_2__ctor_mED1C124F227E7A0EB33F97EC366CE099B482B736_RuntimeMethod_var); } IL_0014: { Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * L_2 = ___keySelector1; if (L_2) { goto IL_0022; } } { Exception_t * L_3 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral8019FF861180B0DC6C2B79B88A224FEAFA0EBDB6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, OrderedEnumerable_2__ctor_mED1C124F227E7A0EB33F97EC366CE099B482B736_RuntimeMethod_var); } IL_0022: { RuntimeObject* L_4 = ___source0; ((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this)->set_source_0(L_4); __this->set_parent_1((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)NULL); Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * L_5 = ___keySelector1; __this->set_keySelector_2(L_5); RuntimeObject* L_6 = ___comparer2; G_B5_0 = ((OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 *)(__this)); if (L_6) { G_B6_0 = ((OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 *)(__this)); goto IL_0044; } } { Comparer_1_t48A8EFAD34AFDD91B93724203AAF84B00763020E * L_7 = (( Comparer_1_t48A8EFAD34AFDD91B93724203AAF84B00763020E * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_0 = (RuntimeObject*)L_7; RuntimeObject* L_8 = V_0; G_B7_0 = L_8; G_B7_1 = ((OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 *)(G_B5_0)); goto IL_0045; } IL_0044: { RuntimeObject* L_9 = ___comparer2; G_B7_0 = L_9; G_B7_1 = ((OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 *)(G_B6_0)); } IL_0045: { NullCheck(G_B7_1); G_B7_1->set_comparer_3(G_B7_0); bool L_10 = ___descending3; __this->set_descending_4(L_10); return; } } // System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`2<System.Object,System.UInt32>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * OrderedEnumerable_2_GetEnumerableSorter_m1D3CD8D266723F87EADEB7B83CCD7E96EDB5EE83_gshared (OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 * __this, EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * ___next0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OrderedEnumerable_2_GetEnumerableSorter_m1D3CD8D266723F87EADEB7B83CCD7E96EDB5EE83_MetadataUsageId); s_Il2CppMethodInitialized = true; } EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, OrderedEnumerable_2_GetEnumerableSorter_m1D3CD8D266723F87EADEB7B83CCD7E96EDB5EE83_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * L_0 = (Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A *)__this->get_keySelector_2(); RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_3(); bool L_2 = (bool)__this->get_descending_4(); EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_3 = ___next0; EnumerableSorter_2_tA25F536FE7E0D85BA572003C5F59EA94E409EF41 * L_4 = (EnumerableSorter_2_tA25F536FE7E0D85BA572003C5F59EA94E409EF41 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)); (( void (*) (EnumerableSorter_2_tA25F536FE7E0D85BA572003C5F59EA94E409EF41 *, Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A *, RuntimeObject*, bool, EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)(L_4, (Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A *)L_0, (RuntimeObject*)L_1, (bool)L_2, (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); V_0 = (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_4; OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * L_5 = (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this->get_parent_1(); if (!L_5) { goto IL_002e; } } { OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * L_6 = (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)__this->get_parent_1(); EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_7 = V_0; NullCheck((OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)L_6); EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_8 = VirtFuncInvoker1< EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *, EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * >::Invoke(7 /* System.Linq.EnumerableSorter`1<TElement> System.Linq.OrderedEnumerable`1<System.Object>::GetEnumerableSorter(System.Linq.EnumerableSorter`1<TElement>) */, (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D *)L_6, (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_7); V_0 = (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_8; } IL_002e: { EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD * L_9 = V_0; return (EnumerableSorter_1_t389D50C42E63250B3DF3C583BA45DF7FAECDEBCD *)L_9; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Linq.Set`1<System.Int32>::.ctor(System.Collections.Generic.IEqualityComparer`1<TElement>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Set_1__ctor_m9A478E5A00A823D7896856D965F002845D2CC4FF_gshared (Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Set_1__ctor_m9A478E5A00A823D7896856D965F002845D2CC4FF_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Set_1__ctor_m9A478E5A00A823D7896856D965F002845D2CC4FF_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___comparer0; if (L_0) { goto IL_0010; } } { EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * L_1 = (( EqualityComparer_1_tF7174A8BEF4C636DBBD3C6BBD234B0F315F64F33 * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); ___comparer0 = (RuntimeObject*)L_1; } IL_0010: { RuntimeObject* L_2 = ___comparer0; __this->set_comparer_4(L_2); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)7); __this->set_buckets_0(L_3); SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_4 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)(SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)7); __this->set_slots_1(L_4); __this->set_freeList_3((-1)); return; } } // System.Boolean System.Linq.Set`1<System.Int32>::Add(TElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Set_1_Add_mFD3EC38181B88D9589E5CDAA74AF81B8E2D6A36E_gshared (Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Set_1_Add_mFD3EC38181B88D9589E5CDAA74AF81B8E2D6A36E_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Set_1_Add_mFD3EC38181B88D9589E5CDAA74AF81B8E2D6A36E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = ___value0; NullCheck((Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 *)__this); bool L_1 = (( bool (*) (Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 *, int32_t, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 *)__this, (int32_t)L_0, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Linq.Set`1<System.Int32>::Find(TElement,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Set_1_Find_m413002EA7969B44A4E7056313A98F8A46C3F4CF6_gshared (Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 * __this, int32_t ___value0, bool ___add1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Set_1_Find_m413002EA7969B44A4E7056313A98F8A46C3F4CF6_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Set_1_Find_m413002EA7969B44A4E7056313A98F8A46C3F4CF6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = ___value0; NullCheck((Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 *)__this); int32_t L_1 = (( int32_t (*) (Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 *)__this, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); V_0 = (int32_t)L_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_3 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_4); NullCheck(L_2); int32_t L_5 = ((int32_t)((int32_t)L_3%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))); int32_t L_6 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); goto IL_0065; } IL_001e: { CHECK_PAUSE_POINT; SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_7 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)__this->get_slots_1(); int32_t L_8 = V_1; NullCheck(L_7); int32_t L_9 = (int32_t)((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8)))->get_hashCode_0(); int32_t L_10 = V_0; if ((!(((uint32_t)L_9) == ((uint32_t)L_10)))) { goto IL_0053; } } { RuntimeObject* L_11 = (RuntimeObject*)__this->get_comparer_4(); SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_12 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)__this->get_slots_1(); int32_t L_13 = V_1; NullCheck(L_12); int32_t L_14 = (int32_t)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_value_1(); int32_t L_15 = ___value0; NullCheck((RuntimeObject*)L_11); bool L_16 = InterfaceFuncInvoker2< bool, int32_t, int32_t >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Int32>::Equals(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_11, (int32_t)L_14, (int32_t)L_15); if (!L_16) { goto IL_0053; } } { return (bool)1; } IL_0053: { SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_17 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)__this->get_slots_1(); int32_t L_18 = V_1; NullCheck(L_17); int32_t L_19 = (int32_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_next_2(); V_1 = (int32_t)L_19; } IL_0065: { int32_t L_20 = V_1; if ((((int32_t)L_20) >= ((int32_t)0))) { goto IL_001e; } } { bool L_21 = ___add1; if (!L_21) { goto IL_0118; } } { int32_t L_22 = (int32_t)__this->get_freeList_3(); if ((((int32_t)L_22) < ((int32_t)0))) { goto IL_0098; } } { int32_t L_23 = (int32_t)__this->get_freeList_3(); V_2 = (int32_t)L_23; SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_24 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)__this->get_slots_1(); int32_t L_25 = V_2; NullCheck(L_24); int32_t L_26 = (int32_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_next_2(); __this->set_freeList_3(L_26); goto IL_00c3; } IL_0098: { int32_t L_27 = (int32_t)__this->get_count_2(); SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_28 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)__this->get_slots_1(); NullCheck(L_28); if ((!(((uint32_t)L_27) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))))) { goto IL_00ae; } } { NullCheck((Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 *)__this); (( void (*) (Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); } IL_00ae: { int32_t L_29 = (int32_t)__this->get_count_2(); V_2 = (int32_t)L_29; int32_t L_30 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1))); } IL_00c3: { int32_t L_31 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_32 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_32); V_3 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))); SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_33 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)__this->get_slots_1(); int32_t L_34 = V_2; NullCheck(L_33); int32_t L_35 = V_0; ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0(L_35); SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_36 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)__this->get_slots_1(); int32_t L_37 = V_2; NullCheck(L_36); int32_t L_38 = ___value0; ((L_36)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_37)))->set_value_1(L_38); SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_39 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)__this->get_slots_1(); int32_t L_40 = V_2; NullCheck(L_39); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_41 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_42 = V_3; NullCheck(L_41); int32_t L_43 = L_42; int32_t L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43)); ((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->set_next_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)1))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_46 = V_3; int32_t L_47 = V_2; NullCheck(L_45); (L_45)->SetAt(static_cast<il2cpp_array_size_t>(L_46), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0118: { return (bool)0; } } // System.Void System.Linq.Set`1<System.Int32>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Set_1_Resize_mDA5450E8D59ACE46B2E0AA2E444AF1553E06BEBF_gshared (Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Set_1_Resize_mDA5450E8D59ACE46B2E0AA2E444AF1553E06BEBF_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_1 = NULL; SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Set_1_Resize_mDA5450E8D59ACE46B2E0AA2E444AF1553E06BEBF_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_count_2(); if (((int64_t)L_0 * (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_0 * (int64_t)2 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Set_1_Resize_mDA5450E8D59ACE46B2E0AA2E444AF1553E06BEBF_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)) + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)) + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Set_1_Resize_mDA5450E8D59ACE46B2E0AA2E444AF1553E06BEBF_RuntimeMethod_var); V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)), (int32_t)1)); int32_t L_1 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_1); V_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_2; int32_t L_3 = V_0; SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_4 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)(SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_3); V_2 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)L_4; SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_5 = (SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691*)__this->get_slots_1(); SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_6 = V_2; int32_t L_7 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); V_3 = (int32_t)0; goto IL_005e; } IL_0031: { CHECK_PAUSE_POINT; SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_8 = V_2; int32_t L_9 = V_3; NullCheck(L_8); int32_t L_10 = (int32_t)((L_8)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9)))->get_hashCode_0(); int32_t L_11 = V_0; V_4 = (int32_t)((int32_t)((int32_t)L_10%(int32_t)L_11)); SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_12 = V_2; int32_t L_13 = V_3; NullCheck(L_12); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_14 = V_1; int32_t L_15 = V_4; NullCheck(L_14); int32_t L_16 = L_15; int32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); ((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->set_next_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_18 = V_1; int32_t L_19 = V_4; int32_t L_20 = V_3; NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); int32_t L_21 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); } IL_005e: { int32_t L_22 = V_3; int32_t L_23 = (int32_t)__this->get_count_2(); if ((((int32_t)L_22) < ((int32_t)L_23))) { goto IL_0031; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_24 = V_1; __this->set_buckets_0(L_24); SlotU5BU5D_t2F8D710DDEE1FFDDD1DE7A6CEE3EE0700BD9E691* L_25 = V_2; __this->set_slots_1(L_25); return; } } // System.Int32 System.Linq.Set`1<System.Int32>::InternalGetHashCode(TElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Set_1_InternalGetHashCode_mE8095A336276E0F8E6A1CE9ED6F0202A815D014B_gshared (Set_1_t7D7B355E37ED3F5B14A8AC3FD1B57076C05E1382 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Set_1_InternalGetHashCode_mE8095A336276E0F8E6A1CE9ED6F0202A815D014B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Set_1_InternalGetHashCode_mE8095A336276E0F8E6A1CE9ED6F0202A815D014B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { } { RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_4(); int32_t L_2 = ___value0; NullCheck((RuntimeObject*)L_1); int32_t L_3 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Int32>::GetHashCode(!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1, (int32_t)L_2); return (int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)2147483647LL))); } IL_001b: { return (int32_t)0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Linq.Set`1<System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TElement>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Set_1__ctor_m3FF819A5EC6008F1283E3A4B57BE229BCE79504C_gshared (Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Set_1__ctor_m3FF819A5EC6008F1283E3A4B57BE229BCE79504C_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Set_1__ctor_m3FF819A5EC6008F1283E3A4B57BE229BCE79504C_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___comparer0; if (L_0) { goto IL_0010; } } { EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_1 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); ___comparer0 = (RuntimeObject*)L_1; } IL_0010: { RuntimeObject* L_2 = ___comparer0; __this->set_comparer_4(L_2); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)7); __this->set_buckets_0(L_3); SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_4 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)(SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)7); __this->set_slots_1(L_4); __this->set_freeList_3((-1)); return; } } // System.Boolean System.Linq.Set`1<System.Object>::Add(TElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Set_1_Add_m3474B51201F7B6207474C63E01833E00D4567EA4_gshared (Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Set_1_Add_m3474B51201F7B6207474C63E01833E00D4567EA4_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Set_1_Add_m3474B51201F7B6207474C63E01833E00D4567EA4_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___value0; NullCheck((Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 *)__this); bool L_1 = (( bool (*) (Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 *, RuntimeObject *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 *)__this, (RuntimeObject *)L_0, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Linq.Set`1<System.Object>::Find(TElement,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Set_1_Find_mC230B8BA41504EB4F0ECEA107C600A1EBA562B6B_gshared (Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 * __this, RuntimeObject * ___value0, bool ___add1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Set_1_Find_mC230B8BA41504EB4F0ECEA107C600A1EBA562B6B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Set_1_Find_mC230B8BA41504EB4F0ECEA107C600A1EBA562B6B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___value0; NullCheck((Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 *)__this); int32_t L_1 = (( int32_t (*) (Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)->methodPointer)((Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 4)); V_0 = (int32_t)L_1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_3 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_4); NullCheck(L_2); int32_t L_5 = ((int32_t)((int32_t)L_3%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))); int32_t L_6 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); goto IL_0065; } IL_001e: { CHECK_PAUSE_POINT; SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_7 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)__this->get_slots_1(); int32_t L_8 = V_1; NullCheck(L_7); int32_t L_9 = (int32_t)((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8)))->get_hashCode_0(); int32_t L_10 = V_0; if ((!(((uint32_t)L_9) == ((uint32_t)L_10)))) { goto IL_0053; } } { RuntimeObject* L_11 = (RuntimeObject*)__this->get_comparer_4(); SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_12 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)__this->get_slots_1(); int32_t L_13 = V_1; NullCheck(L_12); RuntimeObject * L_14 = (RuntimeObject *)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_value_1(); RuntimeObject * L_15 = ___value0; NullCheck((RuntimeObject*)L_11); bool L_16 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.Generic.IEqualityComparer`1<System.Object>::Equals(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_11, (RuntimeObject *)L_14, (RuntimeObject *)L_15); if (!L_16) { goto IL_0053; } } { return (bool)1; } IL_0053: { SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_17 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)__this->get_slots_1(); int32_t L_18 = V_1; NullCheck(L_17); int32_t L_19 = (int32_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_next_2(); V_1 = (int32_t)L_19; } IL_0065: { int32_t L_20 = V_1; if ((((int32_t)L_20) >= ((int32_t)0))) { goto IL_001e; } } { bool L_21 = ___add1; if (!L_21) { goto IL_0118; } } { int32_t L_22 = (int32_t)__this->get_freeList_3(); if ((((int32_t)L_22) < ((int32_t)0))) { goto IL_0098; } } { int32_t L_23 = (int32_t)__this->get_freeList_3(); V_2 = (int32_t)L_23; SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_24 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)__this->get_slots_1(); int32_t L_25 = V_2; NullCheck(L_24); int32_t L_26 = (int32_t)((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_next_2(); __this->set_freeList_3(L_26); goto IL_00c3; } IL_0098: { int32_t L_27 = (int32_t)__this->get_count_2(); SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_28 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)__this->get_slots_1(); NullCheck(L_28); if ((!(((uint32_t)L_27) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))))) { goto IL_00ae; } } { NullCheck((Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 *)__this); (( void (*) (Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); } IL_00ae: { int32_t L_29 = (int32_t)__this->get_count_2(); V_2 = (int32_t)L_29; int32_t L_30 = (int32_t)__this->get_count_2(); __this->set_count_2(((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1))); } IL_00c3: { int32_t L_31 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_32 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); NullCheck(L_32); V_3 = (int32_t)((int32_t)((int32_t)L_31%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))); SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_33 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)__this->get_slots_1(); int32_t L_34 = V_2; NullCheck(L_33); int32_t L_35 = V_0; ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->set_hashCode_0(L_35); SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_36 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)__this->get_slots_1(); int32_t L_37 = V_2; NullCheck(L_36); RuntimeObject * L_38 = ___value0; ((L_36)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_37)))->set_value_1(L_38); SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_39 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)__this->get_slots_1(); int32_t L_40 = V_2; NullCheck(L_39); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_41 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_42 = V_3; NullCheck(L_41); int32_t L_43 = L_42; int32_t L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43)); ((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->set_next_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)1))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)__this->get_buckets_0(); int32_t L_46 = V_3; int32_t L_47 = V_2; NullCheck(L_45); (L_45)->SetAt(static_cast<il2cpp_array_size_t>(L_46), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1))); } IL_0118: { return (bool)0; } } // System.Void System.Linq.Set`1<System.Object>::Resize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Set_1_Resize_mF6848DACFFA1797F5CFA72146BD21290923E97F4_gshared (Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Set_1_Resize_mF6848DACFFA1797F5CFA72146BD21290923E97F4_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_1 = NULL; SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Set_1_Resize_mF6848DACFFA1797F5CFA72146BD21290923E97F4_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_count_2(); if (((int64_t)L_0 * (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_0 * (int64_t)2 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Set_1_Resize_mF6848DACFFA1797F5CFA72146BD21290923E97F4_RuntimeMethod_var); if (((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)) + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)) + (int64_t)1 > (int64_t)kIl2CppInt32Max)) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Set_1_Resize_mF6848DACFFA1797F5CFA72146BD21290923E97F4_RuntimeMethod_var); V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)2)), (int32_t)1)); int32_t L_1 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_1); V_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)L_2; int32_t L_3 = V_0; SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_4 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)(SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_3); V_2 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)L_4; SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_5 = (SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A*)__this->get_slots_1(); SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_6 = V_2; int32_t L_7 = (int32_t)__this->get_count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_6, (int32_t)0, (int32_t)L_7, /*hidden argument*/NULL); V_3 = (int32_t)0; goto IL_005e; } IL_0031: { CHECK_PAUSE_POINT; SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_8 = V_2; int32_t L_9 = V_3; NullCheck(L_8); int32_t L_10 = (int32_t)((L_8)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9)))->get_hashCode_0(); int32_t L_11 = V_0; V_4 = (int32_t)((int32_t)((int32_t)L_10%(int32_t)L_11)); SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_12 = V_2; int32_t L_13 = V_3; NullCheck(L_12); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_14 = V_1; int32_t L_15 = V_4; NullCheck(L_14); int32_t L_16 = L_15; int32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); ((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->set_next_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1))); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_18 = V_1; int32_t L_19 = V_4; int32_t L_20 = V_3; NullCheck(L_18); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); int32_t L_21 = V_3; V_3 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); } IL_005e: { int32_t L_22 = V_3; int32_t L_23 = (int32_t)__this->get_count_2(); if ((((int32_t)L_22) < ((int32_t)L_23))) { goto IL_0031; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_24 = V_1; __this->set_buckets_0(L_24); SlotU5BU5D_tC461EAD2C9FD6B43806774FE731B5D895DBBE54A* L_25 = V_2; __this->set_slots_1(L_25); return; } } // System.Int32 System.Linq.Set`1<System.Object>::InternalGetHashCode(TElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Set_1_InternalGetHashCode_m0C52506E42ABDEEAEC8DD63713FD49831F5D59A0_gshared (Set_1_t01BFBDDD49D58B57D1768A83A3B42BB549E72409 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Set_1_InternalGetHashCode_m0C52506E42ABDEEAEC8DD63713FD49831F5D59A0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Set_1_InternalGetHashCode_m0C52506E42ABDEEAEC8DD63713FD49831F5D59A0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___value0; if (!L_0) { goto IL_001b; } } { RuntimeObject* L_1 = (RuntimeObject*)__this->get_comparer_4(); RuntimeObject * L_2 = ___value0; NullCheck((RuntimeObject*)L_1); int32_t L_3 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.Generic.IEqualityComparer`1<System.Object>::GetHashCode(!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_1, (RuntimeObject *)L_2); return (int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)2147483647LL))); } IL_001b: { return (int32_t)0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Nullable`1<System.Boolean>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { __this->set_has_value_1((bool)1); bool L_0 = ___value0; __this->set_value_0(L_0); return; } } IL2CPP_EXTERN_C void Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<bool*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_has_value_1()); } Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996(&_thisAdjusted, ___value0, method); *reinterpret_cast<bool*>(__this + 1) = _thisAdjusted.get_value_0(); } // System.Boolean System.Nullable`1<System.Boolean>::get_HasValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<bool*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_inline(&_thisAdjusted, method); *reinterpret_cast<bool*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<System.Boolean>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_Value_m7C9CFCE6186F3CD55B4D63BB50E6D3D48A78583A_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_Value_m7C9CFCE6186F3CD55B4D63BB50E6D3D48A78583A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_Value_m7C9CFCE6186F3CD55B4D63BB50E6D3D48A78583A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_0013; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteralF7F24D49529641003F57A1A7C43CFCCA3D29BD73, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Nullable_1_get_Value_m7C9CFCE6186F3CD55B4D63BB50E6D3D48A78583A_RuntimeMethod_var); } IL_0013: { bool L_2 = (bool)__this->get_value_0(); return (bool)L_2; } } IL2CPP_EXTERN_C bool Nullable_1_get_Value_m7C9CFCE6186F3CD55B4D63BB50E6D3D48A78583A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<bool*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_get_Value_m7C9CFCE6186F3CD55B4D63BB50E6D3D48A78583A(&_thisAdjusted, method); *reinterpret_cast<bool*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<System.Boolean>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mCF874DB6A45A0E1794D966BC6CBD63218E2ABD11_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_mCF874DB6A45A0E1794D966BC6CBD63218E2ABD11_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_mCF874DB6A45A0E1794D966BC6CBD63218E2ABD11_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_000d; } } { bool L_1 = (bool)__this->get_has_value_1(); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } IL_000d: { RuntimeObject * L_2 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0017; } } { return (bool)0; } IL_0017: { RuntimeObject * L_3 = ___other0; void* L_4 = alloca(sizeof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 )); UnBoxNullable(L_3, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, L_4); bool L_5 = Nullable_1_Equals_m5675B6057A25CD775313F9B3B69932E06A7DCB04((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)__this, (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 )((*(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)L_4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (bool)L_5; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_mCF874DB6A45A0E1794D966BC6CBD63218E2ABD11_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<bool*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_mCF874DB6A45A0E1794D966BC6CBD63218E2ABD11(&_thisAdjusted, ___other0, method); *reinterpret_cast<bool*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<System.Boolean>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m5675B6057A25CD775313F9B3B69932E06A7DCB04_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_m5675B6057A25CD775313F9B3B69932E06A7DCB04_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_m5675B6057A25CD775313F9B3B69932E06A7DCB04_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = ___other0; bool L_1 = (bool)L_0.get_has_value_1(); bool L_2 = (bool)__this->get_has_value_1(); if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_0010; } } { return (bool)0; } IL_0010: { bool L_3 = (bool)__this->get_has_value_1(); if (L_3) { goto IL_001a; } } { return (bool)1; } IL_001a: { bool* L_4 = (bool*)(&___other0)->get_address_of_value_0(); bool L_5 = (bool)__this->get_value_0(); bool L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6); bool L_8 = Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7((bool*)(bool*)L_4, (RuntimeObject *)L_7, /*hidden argument*/NULL); return (bool)L_8; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_m5675B6057A25CD775313F9B3B69932E06A7DCB04_AdjustorThunk (RuntimeObject * __this, Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___other0, const RuntimeMethod* method) { Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<bool*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_m5675B6057A25CD775313F9B3B69932E06A7DCB04(&_thisAdjusted, ___other0, method); *reinterpret_cast<bool*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Int32 System.Nullable`1<System.Boolean>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mB8F830CC7EDF8E3FA462E0D05B8242F388FA1F16_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetHashCode_mB8F830CC7EDF8E3FA462E0D05B8242F388FA1F16_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetHashCode_mB8F830CC7EDF8E3FA462E0D05B8242F388FA1F16_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_000a; } } { return (int32_t)0; } IL_000a: { bool* L_1 = (bool*)__this->get_address_of_value_0(); int32_t L_2 = Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737((bool*)(bool*)L_1, /*hidden argument*/NULL); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t Nullable_1_GetHashCode_mB8F830CC7EDF8E3FA462E0D05B8242F388FA1F16_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<bool*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_GetHashCode_mB8F830CC7EDF8E3FA462E0D05B8242F388FA1F16(&_thisAdjusted, method); *reinterpret_cast<bool*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<System.Boolean>::GetValueOrDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_value_0(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<bool*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_inline(&_thisAdjusted, method); *reinterpret_cast<bool*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.String System.Nullable`1<System.Boolean>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_mA289110DA157CC0FC479D7424CA11F974D9D6655_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_ToString_mA289110DA157CC0FC479D7424CA11F974D9D6655_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_ToString_mA289110DA157CC0FC479D7424CA11F974D9D6655_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (!L_0) { goto IL_001a; } } { bool* L_1 = (bool*)__this->get_address_of_value_0(); String_t* L_2 = Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301((bool*)(bool*)L_1, /*hidden argument*/NULL); return (String_t*)L_2; } IL_001a: { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return (String_t*)L_3; } } IL2CPP_EXTERN_C String_t* Nullable_1_ToString_mA289110DA157CC0FC479D7424CA11F974D9D6655_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<bool*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 *)(__this + 1))->get_has_value_1()); } String_t* _returnValue = Nullable_1_ToString_mA289110DA157CC0FC479D7424CA11F974D9D6655(&_thisAdjusted, method); *reinterpret_cast<bool*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Object System.Nullable`1<System.Boolean>::Box(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Nullable_1_Box_m97F28DF9582F3B1FC0C0AAD7AB730AD1509D7E59_gshared (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Box_m97F28DF9582F3B1FC0C0AAD7AB730AD1509D7E59_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Box_m97F28DF9582F3B1FC0C0AAD7AB730AD1509D7E59_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_0 = ___o0; bool L_1 = (bool)L_0.get_has_value_1(); if (L_1) { goto IL_000a; } } { return (RuntimeObject *)NULL; } IL_000a: { Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_2 = ___o0; bool L_3 = (bool)L_2.get_value_0(); bool L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_4); return (RuntimeObject *)L_5; } } // System.Nullable`1<T> System.Nullable`1<System.Boolean>::Unbox(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 Nullable_1_Unbox_m816DD3CEA6B701CDF3D073FC4A9427B4969B78E1_gshared (RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Unbox_m816DD3CEA6B701CDF3D073FC4A9427B4969B78E1_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Unbox_m816DD3CEA6B701CDF3D073FC4A9427B4969B78E1_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___o0; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 )); Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_1 = V_0; return (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 )L_1; } IL_000d: { RuntimeObject * L_2 = ___o0; Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 L_3; memset((&L_3), 0, sizeof(L_3)); Nullable_1__ctor_mD3154885E88D449C69AD9DEA6F9A3EF66A3FE996((&L_3), (bool)((*(bool*)((bool*)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 )L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Nullable`1<System.Int32>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { __this->set_has_value_1((bool)1); int32_t L_0 = ___value0; __this->set_value_0(L_0); return; } } IL2CPP_EXTERN_C void Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_has_value_1()); } Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2(&_thisAdjusted, ___value0, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); } // System.Boolean System.Nullable`1<System.Int32>::get_HasValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_inline(&_thisAdjusted, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<System.Int32>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_get_Value_mA8BB683CA6A8C5BF448A737FB5A2AF63C730B3E5_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_Value_mA8BB683CA6A8C5BF448A737FB5A2AF63C730B3E5_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_Value_mA8BB683CA6A8C5BF448A737FB5A2AF63C730B3E5_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_0013; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteralF7F24D49529641003F57A1A7C43CFCCA3D29BD73, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Nullable_1_get_Value_mA8BB683CA6A8C5BF448A737FB5A2AF63C730B3E5_RuntimeMethod_var); } IL_0013: { int32_t L_2 = (int32_t)__this->get_value_0(); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t Nullable_1_get_Value_mA8BB683CA6A8C5BF448A737FB5A2AF63C730B3E5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_get_Value_mA8BB683CA6A8C5BF448A737FB5A2AF63C730B3E5(&_thisAdjusted, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<System.Int32>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m5D590E2CB3FAB0FF32A3B16AC25813089A0523F0_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_m5D590E2CB3FAB0FF32A3B16AC25813089A0523F0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_m5D590E2CB3FAB0FF32A3B16AC25813089A0523F0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_000d; } } { bool L_1 = (bool)__this->get_has_value_1(); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } IL_000d: { RuntimeObject * L_2 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0017; } } { return (bool)0; } IL_0017: { RuntimeObject * L_3 = ___other0; void* L_4 = alloca(sizeof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB )); UnBoxNullable(L_3, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, L_4); bool L_5 = Nullable_1_Equals_mFFEE098834767D89CBF264F5B4FD3E3ACC7015E6((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)__this, (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB )((*(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)L_4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (bool)L_5; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_m5D590E2CB3FAB0FF32A3B16AC25813089A0523F0_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_m5D590E2CB3FAB0FF32A3B16AC25813089A0523F0(&_thisAdjusted, ___other0, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<System.Int32>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mFFEE098834767D89CBF264F5B4FD3E3ACC7015E6_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_mFFEE098834767D89CBF264F5B4FD3E3ACC7015E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_mFFEE098834767D89CBF264F5B4FD3E3ACC7015E6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_0 = ___other0; bool L_1 = (bool)L_0.get_has_value_1(); bool L_2 = (bool)__this->get_has_value_1(); if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_0010; } } { return (bool)0; } IL_0010: { bool L_3 = (bool)__this->get_has_value_1(); if (L_3) { goto IL_001a; } } { return (bool)1; } IL_001a: { int32_t* L_4 = (int32_t*)(&___other0)->get_address_of_value_0(); int32_t L_5 = (int32_t)__this->get_value_0(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6); bool L_8 = Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C((int32_t*)(int32_t*)L_4, (RuntimeObject *)L_7, /*hidden argument*/NULL); return (bool)L_8; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_mFFEE098834767D89CBF264F5B4FD3E3ACC7015E6_AdjustorThunk (RuntimeObject * __this, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___other0, const RuntimeMethod* method) { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_mFFEE098834767D89CBF264F5B4FD3E3ACC7015E6(&_thisAdjusted, ___other0, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Int32 System.Nullable`1<System.Int32>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_m56AC4B3DFFC7510EF5C98721FF2A2ACB898B0EF2_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetHashCode_m56AC4B3DFFC7510EF5C98721FF2A2ACB898B0EF2_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetHashCode_m56AC4B3DFFC7510EF5C98721FF2A2ACB898B0EF2_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_000a; } } { return (int32_t)0; } IL_000a: { int32_t* L_1 = (int32_t*)__this->get_address_of_value_0(); int32_t L_2 = Int32_GetHashCode_m245C424ECE351E5FE3277A88EEB02132DAB8C25A((int32_t*)(int32_t*)L_1, /*hidden argument*/NULL); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t Nullable_1_GetHashCode_m56AC4B3DFFC7510EF5C98721FF2A2ACB898B0EF2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_GetHashCode_m56AC4B3DFFC7510EF5C98721FF2A2ACB898B0EF2(&_thisAdjusted, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<System.Int32>::GetValueOrDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_value_0(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_inline(&_thisAdjusted, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.String System.Nullable`1<System.Int32>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m8B3E28321CC3D391381CE384D61F16E59C8B1BBE_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_ToString_m8B3E28321CC3D391381CE384D61F16E59C8B1BBE_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_ToString_m8B3E28321CC3D391381CE384D61F16E59C8B1BBE_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (!L_0) { goto IL_001a; } } { int32_t* L_1 = (int32_t*)__this->get_address_of_value_0(); String_t* L_2 = Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02((int32_t*)(int32_t*)L_1, /*hidden argument*/NULL); return (String_t*)L_2; } IL_001a: { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return (String_t*)L_3; } } IL2CPP_EXTERN_C String_t* Nullable_1_ToString_m8B3E28321CC3D391381CE384D61F16E59C8B1BBE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(__this + 1))->get_has_value_1()); } String_t* _returnValue = Nullable_1_ToString_m8B3E28321CC3D391381CE384D61F16E59C8B1BBE(&_thisAdjusted, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Object System.Nullable`1<System.Int32>::Box(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Nullable_1_Box_m41771ECA0B346D8EE52946C2D53DAFC2FCCFF91A_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Box_m41771ECA0B346D8EE52946C2D53DAFC2FCCFF91A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Box_m41771ECA0B346D8EE52946C2D53DAFC2FCCFF91A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_0 = ___o0; bool L_1 = (bool)L_0.get_has_value_1(); if (L_1) { goto IL_000a; } } { return (RuntimeObject *)NULL; } IL_000a: { Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_2 = ___o0; int32_t L_3 = (int32_t)L_2.get_value_0(); int32_t L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_4); return (RuntimeObject *)L_5; } } // System.Nullable`1<T> System.Nullable`1<System.Int32>::Unbox(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB Nullable_1_Unbox_m8F03073B6E86B4B0B711D6D3384B9F4D75FBD0FE_gshared (RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Unbox_m8F03073B6E86B4B0B711D6D3384B9F4D75FBD0FE_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Unbox_m8F03073B6E86B4B0B711D6D3384B9F4D75FBD0FE_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___o0; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB )); Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_1 = V_0; return (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB )L_1; } IL_000d: { RuntimeObject * L_2 = ___o0; Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_3; memset((&L_3), 0, sizeof(L_3)); Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2((&L_3), (int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB )L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Nullable`1<System.Int32Enum>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { __this->set_has_value_1((bool)1); int32_t L_0 = ___value0; __this->set_value_0(L_0); return; } } IL2CPP_EXTERN_C void Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_has_value_1()); } Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3(&_thisAdjusted, ___value0, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); } // System.Boolean System.Nullable`1<System.Int32Enum>::get_HasValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_inline(&_thisAdjusted, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<System.Int32Enum>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_get_Value_m32D4CD9D36108D7EE445A232AAB86E6DD0CB001B_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_Value_m32D4CD9D36108D7EE445A232AAB86E6DD0CB001B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_Value_m32D4CD9D36108D7EE445A232AAB86E6DD0CB001B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_0013; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteralF7F24D49529641003F57A1A7C43CFCCA3D29BD73, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Nullable_1_get_Value_m32D4CD9D36108D7EE445A232AAB86E6DD0CB001B_RuntimeMethod_var); } IL_0013: { int32_t L_2 = (int32_t)__this->get_value_0(); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t Nullable_1_get_Value_m32D4CD9D36108D7EE445A232AAB86E6DD0CB001B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_get_Value_m32D4CD9D36108D7EE445A232AAB86E6DD0CB001B(&_thisAdjusted, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<System.Int32Enum>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mDB884205D5954E6C2DBE345DFB806D3F1BAED080_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_mDB884205D5954E6C2DBE345DFB806D3F1BAED080_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_mDB884205D5954E6C2DBE345DFB806D3F1BAED080_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_000d; } } { bool L_1 = (bool)__this->get_has_value_1(); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } IL_000d: { RuntimeObject * L_2 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0017; } } { return (bool)0; } IL_0017: { RuntimeObject * L_3 = ___other0; void* L_4 = alloca(sizeof(Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 )); UnBoxNullable(L_3, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), L_4); bool L_5 = Nullable_1_Equals_mC856AC1460EF4282C8E56291C412A0A916DD2712((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)__this, (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 )((*(Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)L_4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (bool)L_5; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_mDB884205D5954E6C2DBE345DFB806D3F1BAED080_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_mDB884205D5954E6C2DBE345DFB806D3F1BAED080(&_thisAdjusted, ___other0, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<System.Int32Enum>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mC856AC1460EF4282C8E56291C412A0A916DD2712_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_mC856AC1460EF4282C8E56291C412A0A916DD2712_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_mC856AC1460EF4282C8E56291C412A0A916DD2712_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 L_0 = ___other0; bool L_1 = (bool)L_0.get_has_value_1(); bool L_2 = (bool)__this->get_has_value_1(); if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_0010; } } { return (bool)0; } IL_0010: { bool L_3 = (bool)__this->get_has_value_1(); if (L_3) { goto IL_001a; } } { return (bool)1; } IL_001a: { int32_t* L_4 = (int32_t*)(&___other0)->get_address_of_value_0(); int32_t L_5 = (int32_t)__this->get_value_0(); int32_t L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6); Il2CppFakeBox<int32_t> L_8(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), L_4); bool L_9 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(&L_8), (RuntimeObject *)L_7); return (bool)L_9; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_mC856AC1460EF4282C8E56291C412A0A916DD2712_AdjustorThunk (RuntimeObject * __this, Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 ___other0, const RuntimeMethod* method) { Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_mC856AC1460EF4282C8E56291C412A0A916DD2712(&_thisAdjusted, ___other0, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Int32 System.Nullable`1<System.Int32Enum>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mF2DA27E4C81C52280695B8185A5B3F34A16BDB5B_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetHashCode_mF2DA27E4C81C52280695B8185A5B3F34A16BDB5B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetHashCode_mF2DA27E4C81C52280695B8185A5B3F34A16BDB5B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_000a; } } { return (int32_t)0; } IL_000a: { int32_t* L_1 = (int32_t*)__this->get_address_of_value_0(); Il2CppFakeBox<int32_t> L_2(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), L_1); int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)(&L_2)); return (int32_t)L_3; } } IL2CPP_EXTERN_C int32_t Nullable_1_GetHashCode_mF2DA27E4C81C52280695B8185A5B3F34A16BDB5B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_GetHashCode_mF2DA27E4C81C52280695B8185A5B3F34A16BDB5B(&_thisAdjusted, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<System.Int32Enum>::GetValueOrDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_value_0(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_inline(&_thisAdjusted, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.String System.Nullable`1<System.Int32Enum>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_mA342DAFAACE3FF6BD1F5F41A003BB56981B308C6_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_ToString_mA342DAFAACE3FF6BD1F5F41A003BB56981B308C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_ToString_mA342DAFAACE3FF6BD1F5F41A003BB56981B308C6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (!L_0) { goto IL_001a; } } { int32_t* L_1 = (int32_t*)__this->get_address_of_value_0(); Il2CppFakeBox<int32_t> L_2(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), L_1); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)(&L_2)); return (String_t*)L_3; } IL_001a: { String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return (String_t*)L_4; } } IL2CPP_EXTERN_C String_t* Nullable_1_ToString_mA342DAFAACE3FF6BD1F5F41A003BB56981B308C6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<int32_t*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 *)(__this + 1))->get_has_value_1()); } String_t* _returnValue = Nullable_1_ToString_mA342DAFAACE3FF6BD1F5F41A003BB56981B308C6(&_thisAdjusted, method); *reinterpret_cast<int32_t*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Object System.Nullable`1<System.Int32Enum>::Box(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Nullable_1_Box_m7AD599CEBDD341B74ADFFA2EE42E40619B1C933D_gshared (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Box_m7AD599CEBDD341B74ADFFA2EE42E40619B1C933D_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Box_m7AD599CEBDD341B74ADFFA2EE42E40619B1C933D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 L_0 = ___o0; bool L_1 = (bool)L_0.get_has_value_1(); if (L_1) { goto IL_000a; } } { return (RuntimeObject *)NULL; } IL_000a: { Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 L_2 = ___o0; int32_t L_3 = (int32_t)L_2.get_value_0(); int32_t L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_4); return (RuntimeObject *)L_5; } } // System.Nullable`1<T> System.Nullable`1<System.Int32Enum>::Unbox(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 Nullable_1_Unbox_m43653E906B96E19EECCB30DFEE23670F090A380B_gshared (RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Unbox_m43653E906B96E19EECCB30DFEE23670F090A380B_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Unbox_m43653E906B96E19EECCB30DFEE23670F090A380B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___o0; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 )); Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 L_1 = V_0; return (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 )L_1; } IL_000d: { RuntimeObject * L_2 = ___o0; Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 L_3; memset((&L_3), 0, sizeof(L_3)); Nullable_1__ctor_m5C28B34DE8C6D3A1E136828428C71543A08B32D3((&L_3), (int32_t)((*(int32_t*)((int32_t*)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 )L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Nullable`1<System.Single>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m7684344C547C49122B242D657ED4F2CA1C5C6B9F_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1__ctor_m7684344C547C49122B242D657ED4F2CA1C5C6B9F_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1__ctor_m7684344C547C49122B242D657ED4F2CA1C5C6B9F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { __this->set_has_value_1((bool)1); float L_0 = ___value0; __this->set_value_0(L_0); return; } } IL2CPP_EXTERN_C void Nullable_1__ctor_m7684344C547C49122B242D657ED4F2CA1C5C6B9F_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method) { Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<float*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_has_value_1()); } Nullable_1__ctor_m7684344C547C49122B242D657ED4F2CA1C5C6B9F(&_thisAdjusted, ___value0, method); *reinterpret_cast<float*>(__this + 1) = _thisAdjusted.get_value_0(); } // System.Boolean System.Nullable`1<System.Single>::get_HasValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<float*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_inline(&_thisAdjusted, method); *reinterpret_cast<float*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<System.Single>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_0013; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteralF7F24D49529641003F57A1A7C43CFCCA3D29BD73, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2_RuntimeMethod_var); } IL_0013: { float L_2 = (float)__this->get_value_0(); return (float)L_2; } } IL2CPP_EXTERN_C float Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<float*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_has_value_1()); } float _returnValue = Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2(&_thisAdjusted, method); *reinterpret_cast<float*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<System.Single>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m616873F8BAC7A9E73D0CE2D3EC9EC49F6167C0E0_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_m616873F8BAC7A9E73D0CE2D3EC9EC49F6167C0E0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_m616873F8BAC7A9E73D0CE2D3EC9EC49F6167C0E0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_000d; } } { bool L_1 = (bool)__this->get_has_value_1(); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } IL_000d: { RuntimeObject * L_2 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0017; } } { return (bool)0; } IL_0017: { RuntimeObject * L_3 = ___other0; void* L_4 = alloca(sizeof(Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 )); UnBoxNullable(L_3, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, L_4); bool L_5 = Nullable_1_Equals_m4AF55EB69E27EA4B93F15251F604285D62426E33((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)__this, (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 )((*(Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)L_4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (bool)L_5; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_m616873F8BAC7A9E73D0CE2D3EC9EC49F6167C0E0_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<float*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_m616873F8BAC7A9E73D0CE2D3EC9EC49F6167C0E0(&_thisAdjusted, ___other0, method); *reinterpret_cast<float*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<System.Single>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m4AF55EB69E27EA4B93F15251F604285D62426E33_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_m4AF55EB69E27EA4B93F15251F604285D62426E33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_m4AF55EB69E27EA4B93F15251F604285D62426E33_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 L_0 = ___other0; bool L_1 = (bool)L_0.get_has_value_1(); bool L_2 = (bool)__this->get_has_value_1(); if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_0010; } } { return (bool)0; } IL_0010: { bool L_3 = (bool)__this->get_has_value_1(); if (L_3) { goto IL_001a; } } { return (bool)1; } IL_001a: { float* L_4 = (float*)(&___other0)->get_address_of_value_0(); float L_5 = (float)__this->get_value_0(); float L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6); bool L_8 = Single_Equals_mF4C7AEA9D216B3C9CB735BF327D07BF50F101A16((float*)(float*)L_4, (RuntimeObject *)L_7, /*hidden argument*/NULL); return (bool)L_8; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_m4AF55EB69E27EA4B93F15251F604285D62426E33_AdjustorThunk (RuntimeObject * __this, Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 ___other0, const RuntimeMethod* method) { Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<float*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_m4AF55EB69E27EA4B93F15251F604285D62426E33(&_thisAdjusted, ___other0, method); *reinterpret_cast<float*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Int32 System.Nullable`1<System.Single>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mC37D0B59BBA0C4499BDB8C0C768278EE8C450843_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetHashCode_mC37D0B59BBA0C4499BDB8C0C768278EE8C450843_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetHashCode_mC37D0B59BBA0C4499BDB8C0C768278EE8C450843_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_000a; } } { return (int32_t)0; } IL_000a: { float* L_1 = (float*)__this->get_address_of_value_0(); int32_t L_2 = Single_GetHashCode_m1BC0733E0C3851ED9D1B6C9C0B243BB88BE77AD0((float*)(float*)L_1, /*hidden argument*/NULL); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t Nullable_1_GetHashCode_mC37D0B59BBA0C4499BDB8C0C768278EE8C450843_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<float*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_GetHashCode_mC37D0B59BBA0C4499BDB8C0C768278EE8C450843(&_thisAdjusted, method); *reinterpret_cast<float*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<System.Single>::GetValueOrDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { float L_0 = (float)__this->get_value_0(); return (float)L_0; } } IL2CPP_EXTERN_C float Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<float*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_has_value_1()); } float _returnValue = Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_inline(&_thisAdjusted, method); *reinterpret_cast<float*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.String System.Nullable`1<System.Single>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_mC6D12173E52B269C4AF65B27671CB5E46BAADEFF_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_ToString_mC6D12173E52B269C4AF65B27671CB5E46BAADEFF_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_ToString_mC6D12173E52B269C4AF65B27671CB5E46BAADEFF_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (!L_0) { goto IL_001a; } } { float* L_1 = (float*)__this->get_address_of_value_0(); String_t* L_2 = Single_ToString_m2B1556CFBBD088D285A0B0EA280F82D3A4344DC3((float*)(float*)L_1, /*hidden argument*/NULL); return (String_t*)L_2; } IL_001a: { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return (String_t*)L_3; } } IL2CPP_EXTERN_C String_t* Nullable_1_ToString_mC6D12173E52B269C4AF65B27671CB5E46BAADEFF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<float*>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 *)(__this + 1))->get_has_value_1()); } String_t* _returnValue = Nullable_1_ToString_mC6D12173E52B269C4AF65B27671CB5E46BAADEFF(&_thisAdjusted, method); *reinterpret_cast<float*>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Object System.Nullable`1<System.Single>::Box(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Nullable_1_Box_m7C656D7B05E522D54760DAA9C6B3BF644A230031_gshared (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Box_m7C656D7B05E522D54760DAA9C6B3BF644A230031_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Box_m7C656D7B05E522D54760DAA9C6B3BF644A230031_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 L_0 = ___o0; bool L_1 = (bool)L_0.get_has_value_1(); if (L_1) { goto IL_000a; } } { return (RuntimeObject *)NULL; } IL_000a: { Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 L_2 = ___o0; float L_3 = (float)L_2.get_value_0(); float L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_4); return (RuntimeObject *)L_5; } } // System.Nullable`1<T> System.Nullable`1<System.Single>::Unbox(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 Nullable_1_Unbox_mB91B8A5848967930785B8C6448F412C1339B81AD_gshared (RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Unbox_mB91B8A5848967930785B8C6448F412C1339B81AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Unbox_mB91B8A5848967930785B8C6448F412C1339B81AD_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___o0; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 )); Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 L_1 = V_0; return (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 )L_1; } IL_000d: { RuntimeObject * L_2 = ___o0; Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 L_3; memset((&L_3), 0, sizeof(L_3)); Nullable_1__ctor_m7684344C547C49122B242D657ED4F2CA1C5C6B9F((&L_3), (float)((*(float*)((float*)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 )L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Nullable`1<UnityEngine.Color>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m04D6D6F6B0D572ED38D3E5CB80E2528C5E6360BD_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1__ctor_m04D6D6F6B0D572ED38D3E5CB80E2528C5E6360BD_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1__ctor_m04D6D6F6B0D572ED38D3E5CB80E2528C5E6360BD_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { __this->set_has_value_1((bool)1); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = ___value0; __this->set_value_0(L_0); return; } } IL2CPP_EXTERN_C void Nullable_1__ctor_m04D6D6F6B0D572ED38D3E5CB80E2528C5E6360BD_AdjustorThunk (RuntimeObject * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___value0, const RuntimeMethod* method) { Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_has_value_1()); } Nullable_1__ctor_m04D6D6F6B0D572ED38D3E5CB80E2528C5E6360BD(&_thisAdjusted, ___value0, method); *reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1) = _thisAdjusted.get_value_0(); } // System.Boolean System.Nullable`1<UnityEngine.Color>::get_HasValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_inline(&_thisAdjusted, method); *reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<UnityEngine.Color>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Nullable_1_get_Value_m904F41E85B564BEA9E2D8BB5BA38173F99078A3E_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_Value_m904F41E85B564BEA9E2D8BB5BA38173F99078A3E_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_Value_m904F41E85B564BEA9E2D8BB5BA38173F99078A3E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_0013; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteralF7F24D49529641003F57A1A7C43CFCCA3D29BD73, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Nullable_1_get_Value_m904F41E85B564BEA9E2D8BB5BA38173F99078A3E_RuntimeMethod_var); } IL_0013: { Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_2 = (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )__this->get_value_0(); return (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )L_2; } } IL2CPP_EXTERN_C Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Nullable_1_get_Value_m904F41E85B564BEA9E2D8BB5BA38173F99078A3E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_has_value_1()); } Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 _returnValue = Nullable_1_get_Value_m904F41E85B564BEA9E2D8BB5BA38173F99078A3E(&_thisAdjusted, method); *reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<UnityEngine.Color>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m40ADF33A723A68AB2B2FEB59AFECC69CD4F223AB_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_m40ADF33A723A68AB2B2FEB59AFECC69CD4F223AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_m40ADF33A723A68AB2B2FEB59AFECC69CD4F223AB_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_000d; } } { bool L_1 = (bool)__this->get_has_value_1(); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } IL_000d: { RuntimeObject * L_2 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0017; } } { return (bool)0; } IL_0017: { RuntimeObject * L_3 = ___other0; void* L_4 = alloca(sizeof(Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB )); UnBoxNullable(L_3, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_il2cpp_TypeInfo_var, L_4); bool L_5 = Nullable_1_Equals_m5DEFB9CC500A1486BCEC1D5D691DFF1BEEAD9F81((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)__this, (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB )((*(Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)L_4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (bool)L_5; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_m40ADF33A723A68AB2B2FEB59AFECC69CD4F223AB_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_m40ADF33A723A68AB2B2FEB59AFECC69CD4F223AB(&_thisAdjusted, ___other0, method); *reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<UnityEngine.Color>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m5DEFB9CC500A1486BCEC1D5D691DFF1BEEAD9F81_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_m5DEFB9CC500A1486BCEC1D5D691DFF1BEEAD9F81_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_m5DEFB9CC500A1486BCEC1D5D691DFF1BEEAD9F81_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB L_0 = ___other0; bool L_1 = (bool)L_0.get_has_value_1(); bool L_2 = (bool)__this->get_has_value_1(); if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_0010; } } { return (bool)0; } IL_0010: { bool L_3 = (bool)__this->get_has_value_1(); if (L_3) { goto IL_001a; } } { return (bool)1; } IL_001a: { Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * L_4 = (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(&___other0)->get_address_of_value_0(); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_5 = (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )__this->get_value_0(); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6); bool L_8 = Color_Equals_m63ECBA87A0F27CD7D09EEA36BCB697652E076F4E((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)L_4, (RuntimeObject *)L_7, /*hidden argument*/NULL); return (bool)L_8; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_m5DEFB9CC500A1486BCEC1D5D691DFF1BEEAD9F81_AdjustorThunk (RuntimeObject * __this, Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB ___other0, const RuntimeMethod* method) { Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_m5DEFB9CC500A1486BCEC1D5D691DFF1BEEAD9F81(&_thisAdjusted, ___other0, method); *reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Int32 System.Nullable`1<UnityEngine.Color>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_m94232DE86EB0E6B35607A39DA9F513CF9754F2F9_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetHashCode_m94232DE86EB0E6B35607A39DA9F513CF9754F2F9_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetHashCode_m94232DE86EB0E6B35607A39DA9F513CF9754F2F9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_000a; } } { return (int32_t)0; } IL_000a: { Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * L_1 = (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)__this->get_address_of_value_0(); int32_t L_2 = Color_GetHashCode_m88317C719D2DAA18E293B3F5CD17B9FB80E26CF1((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)L_1, /*hidden argument*/NULL); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t Nullable_1_GetHashCode_m94232DE86EB0E6B35607A39DA9F513CF9754F2F9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_GetHashCode_m94232DE86EB0E6B35607A39DA9F513CF9754F2F9(&_thisAdjusted, method); *reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<UnityEngine.Color>::GetValueOrDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )__this->get_value_0(); return (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )L_0; } } IL2CPP_EXTERN_C Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_has_value_1()); } Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 _returnValue = Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_inline(&_thisAdjusted, method); *reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.String System.Nullable`1<UnityEngine.Color>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m363E0AD25D0DB0B6F8C916315B9F245B0029FA72_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_ToString_m363E0AD25D0DB0B6F8C916315B9F245B0029FA72_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_ToString_m363E0AD25D0DB0B6F8C916315B9F245B0029FA72_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (!L_0) { goto IL_001a; } } { Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * L_1 = (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)__this->get_address_of_value_0(); String_t* L_2 = Color_ToString_m17A27E0CFB20D9946D130DAEDB5BDCACA5A4473F((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)L_1, /*hidden argument*/NULL); return (String_t*)L_2; } IL_001a: { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return (String_t*)L_3; } } IL2CPP_EXTERN_C String_t* Nullable_1_ToString_m363E0AD25D0DB0B6F8C916315B9F245B0029FA72_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB *)(__this + 1))->get_has_value_1()); } String_t* _returnValue = Nullable_1_ToString_m363E0AD25D0DB0B6F8C916315B9F245B0029FA72(&_thisAdjusted, method); *reinterpret_cast<Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Object System.Nullable`1<UnityEngine.Color>::Box(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Nullable_1_Box_m2F6E2E5A99EE94E5F4A113D7CFF12EC1889DF6C9_gshared (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Box_m2F6E2E5A99EE94E5F4A113D7CFF12EC1889DF6C9_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Box_m2F6E2E5A99EE94E5F4A113D7CFF12EC1889DF6C9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB L_0 = ___o0; bool L_1 = (bool)L_0.get_has_value_1(); if (L_1) { goto IL_000a; } } { return (RuntimeObject *)NULL; } IL_000a: { Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB L_2 = ___o0; Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_3 = (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )L_2.get_value_0(); Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_4); return (RuntimeObject *)L_5; } } // System.Nullable`1<T> System.Nullable`1<UnityEngine.Color>::Unbox(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB Nullable_1_Unbox_mB59B2FBB12B740FB0DA50DDFBE487A5BF054EBC2_gshared (RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Unbox_mB59B2FBB12B740FB0DA50DDFBE487A5BF054EBC2_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Unbox_mB59B2FBB12B740FB0DA50DDFBE487A5BF054EBC2_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___o0; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB )); Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB L_1 = V_0; return (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB )L_1; } IL_000d: { RuntimeObject * L_2 = ___o0; Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB L_3; memset((&L_3), 0, sizeof(L_3)); Nullable_1__ctor_m04D6D6F6B0D572ED38D3E5CB80E2528C5E6360BD((&L_3), (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )((*(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB )L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m2363E26BE9E8EE765BEA232058A47DF46945F616_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1__ctor_m2363E26BE9E8EE765BEA232058A47DF46945F616_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1__ctor_m2363E26BE9E8EE765BEA232058A47DF46945F616_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { __this->set_has_value_1((bool)1); RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A L_0 = ___value0; __this->set_value_0(L_0); return; } } IL2CPP_EXTERN_C void Nullable_1__ctor_m2363E26BE9E8EE765BEA232058A47DF46945F616_AdjustorThunk (RuntimeObject * __this, RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A ___value0, const RuntimeMethod* method) { Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_has_value_1()); } Nullable_1__ctor_m2363E26BE9E8EE765BEA232058A47DF46945F616(&_thisAdjusted, ___value0, method); *reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1) = _thisAdjusted.get_value_0(); } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::get_HasValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_inline(&_thisAdjusted, method); *reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A Nullable_1_get_Value_m54AA814374E14F2513143A5032F9E4AAD3228226_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_Value_m54AA814374E14F2513143A5032F9E4AAD3228226_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_Value_m54AA814374E14F2513143A5032F9E4AAD3228226_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_0013; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteralF7F24D49529641003F57A1A7C43CFCCA3D29BD73, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Nullable_1_get_Value_m54AA814374E14F2513143A5032F9E4AAD3228226_RuntimeMethod_var); } IL_0013: { RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A L_2 = (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A )__this->get_value_0(); return (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A )L_2; } } IL2CPP_EXTERN_C RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A Nullable_1_get_Value_m54AA814374E14F2513143A5032F9E4AAD3228226_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_has_value_1()); } RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A _returnValue = Nullable_1_get_Value_m54AA814374E14F2513143A5032F9E4AAD3228226(&_thisAdjusted, method); *reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m867EB0D65ACB5204CFF11EFE7BC5B77D1FEDD846_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_m867EB0D65ACB5204CFF11EFE7BC5B77D1FEDD846_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_m867EB0D65ACB5204CFF11EFE7BC5B77D1FEDD846_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_000d; } } { bool L_1 = (bool)__this->get_has_value_1(); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } IL_000d: { RuntimeObject * L_2 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0017; } } { return (bool)0; } IL_0017: { RuntimeObject * L_3 = ___other0; void* L_4 = alloca(sizeof(Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 )); UnBoxNullable(L_3, RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A_il2cpp_TypeInfo_var, L_4); bool L_5 = Nullable_1_Equals_m27BA7C9660B3660D2EBE7395D74074C360B96E6D((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)__this, (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 )((*(Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)L_4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (bool)L_5; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_m867EB0D65ACB5204CFF11EFE7BC5B77D1FEDD846_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_m867EB0D65ACB5204CFF11EFE7BC5B77D1FEDD846(&_thisAdjusted, ___other0, method); *reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m27BA7C9660B3660D2EBE7395D74074C360B96E6D_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_m27BA7C9660B3660D2EBE7395D74074C360B96E6D_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_m27BA7C9660B3660D2EBE7395D74074C360B96E6D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 L_0 = ___other0; bool L_1 = (bool)L_0.get_has_value_1(); bool L_2 = (bool)__this->get_has_value_1(); if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_0010; } } { return (bool)0; } IL_0010: { bool L_3 = (bool)__this->get_has_value_1(); if (L_3) { goto IL_001a; } } { return (bool)1; } IL_001a: { RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A * L_4 = (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *)(&___other0)->get_address_of_value_0(); RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A L_5 = (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A )__this->get_value_0(); RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6); bool L_8 = RenderQueueRange_Equals_mBFB376C90D44224911F400ABBAC181A0AB5A1592((RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *)(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *)L_4, (RuntimeObject *)L_7, /*hidden argument*/NULL); return (bool)L_8; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_m27BA7C9660B3660D2EBE7395D74074C360B96E6D_AdjustorThunk (RuntimeObject * __this, Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 ___other0, const RuntimeMethod* method) { Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_m27BA7C9660B3660D2EBE7395D74074C360B96E6D(&_thisAdjusted, ___other0, method); *reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Int32 System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_mA2A8D10C6803F789C01D884345427C207032E80A_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetHashCode_mA2A8D10C6803F789C01D884345427C207032E80A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetHashCode_mA2A8D10C6803F789C01D884345427C207032E80A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_000a; } } { return (int32_t)0; } IL_000a: { RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A * L_1 = (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *)__this->get_address_of_value_0(); int32_t L_2 = RenderQueueRange_GetHashCode_m1DFED684DB51CE12FE84A5AB54050C8630E82274((RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *)(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *)L_1, /*hidden argument*/NULL); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t Nullable_1_GetHashCode_mA2A8D10C6803F789C01D884345427C207032E80A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_GetHashCode_mA2A8D10C6803F789C01D884345427C207032E80A(&_thisAdjusted, method); *reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::GetValueOrDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A L_0 = (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A )__this->get_value_0(); return (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A )L_0; } } IL2CPP_EXTERN_C RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_has_value_1()); } RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A _returnValue = Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_inline(&_thisAdjusted, method); *reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.String System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m6862243F6976595439F489C10790596B13D113B3_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_ToString_m6862243F6976595439F489C10790596B13D113B3_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_ToString_m6862243F6976595439F489C10790596B13D113B3_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (!L_0) { goto IL_001a; } } { RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A * L_1 = (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *)__this->get_address_of_value_0(); RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), L_1); NullCheck((RuntimeObject *)L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_2); *L_1 = *(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *)UnBox(L_2); return (String_t*)L_3; } IL_001a: { String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return (String_t*)L_4; } } IL2CPP_EXTERN_C String_t* Nullable_1_ToString_m6862243F6976595439F489C10790596B13D113B3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 *)(__this + 1))->get_has_value_1()); } String_t* _returnValue = Nullable_1_ToString_m6862243F6976595439F489C10790596B13D113B3(&_thisAdjusted, method); *reinterpret_cast<RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Object System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::Box(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Nullable_1_Box_mE2784D14DD83A4A3F433845A968BA3D33089A02B_gshared (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Box_mE2784D14DD83A4A3F433845A968BA3D33089A02B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Box_mE2784D14DD83A4A3F433845A968BA3D33089A02B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 L_0 = ___o0; bool L_1 = (bool)L_0.get_has_value_1(); if (L_1) { goto IL_000a; } } { return (RuntimeObject *)NULL; } IL_000a: { Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 L_2 = ___o0; RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A L_3 = (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A )L_2.get_value_0(); RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_4); return (RuntimeObject *)L_5; } } // System.Nullable`1<T> System.Nullable`1<UnityEngine.Rendering.RenderQueueRange>::Unbox(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 Nullable_1_Unbox_m5EE1A8F95CF452249D88B4BC6F17C245884522C6_gshared (RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Unbox_m5EE1A8F95CF452249D88B4BC6F17C245884522C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Unbox_m5EE1A8F95CF452249D88B4BC6F17C245884522C6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___o0; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 )); Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 L_1 = V_0; return (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 )L_1; } IL_000d: { RuntimeObject * L_2 = ___o0; Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 L_3; memset((&L_3), 0, sizeof(L_3)); Nullable_1__ctor_m2363E26BE9E8EE765BEA232058A47DF46945F616((&L_3), (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A )((*(RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *)((RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 )L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mA8ED073A176FC38129CED874F576B6CC839EC5EA_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1__ctor_mA8ED073A176FC38129CED874F576B6CC839EC5EA_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1__ctor_mA8ED073A176FC38129CED874F576B6CC839EC5EA_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { __this->set_has_value_1((bool)1); RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE L_0 = ___value0; __this->set_value_0(L_0); return; } } IL2CPP_EXTERN_C void Nullable_1__ctor_mA8ED073A176FC38129CED874F576B6CC839EC5EA_AdjustorThunk (RuntimeObject * __this, RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE ___value0, const RuntimeMethod* method) { Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_has_value_1()); } Nullable_1__ctor_mA8ED073A176FC38129CED874F576B6CC839EC5EA(&_thisAdjusted, ___value0, method); *reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1) = _thisAdjusted.get_value_0(); } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::get_HasValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_inline(&_thisAdjusted, method); *reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE Nullable_1_get_Value_m1F3DEA1D85DFE14F9D74A4DA014B0282D4BCEF1C_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_Value_m1F3DEA1D85DFE14F9D74A4DA014B0282D4BCEF1C_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_Value_m1F3DEA1D85DFE14F9D74A4DA014B0282D4BCEF1C_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_0013; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteralF7F24D49529641003F57A1A7C43CFCCA3D29BD73, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Nullable_1_get_Value_m1F3DEA1D85DFE14F9D74A4DA014B0282D4BCEF1C_RuntimeMethod_var); } IL_0013: { RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE L_2 = (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE )__this->get_value_0(); return (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE )L_2; } } IL2CPP_EXTERN_C RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE Nullable_1_get_Value_m1F3DEA1D85DFE14F9D74A4DA014B0282D4BCEF1C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_has_value_1()); } RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE _returnValue = Nullable_1_get_Value_m1F3DEA1D85DFE14F9D74A4DA014B0282D4BCEF1C(&_thisAdjusted, method); *reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m12B7CCFE77645EF7BFFE6747B0DC0A743E3FAEDC_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_m12B7CCFE77645EF7BFFE6747B0DC0A743E3FAEDC_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_m12B7CCFE77645EF7BFFE6747B0DC0A743E3FAEDC_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_000d; } } { bool L_1 = (bool)__this->get_has_value_1(); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } IL_000d: { RuntimeObject * L_2 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0017; } } { return (bool)0; } IL_0017: { RuntimeObject * L_3 = ___other0; void* L_4 = alloca(sizeof(Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F )); UnBoxNullable(L_3, RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE_il2cpp_TypeInfo_var, L_4); bool L_5 = Nullable_1_Equals_mDD3F51FAFBD5B40CE0D778E2AE3303A40209F45E((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)__this, (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F )((*(Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)L_4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (bool)L_5; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_m12B7CCFE77645EF7BFFE6747B0DC0A743E3FAEDC_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_m12B7CCFE77645EF7BFFE6747B0DC0A743E3FAEDC(&_thisAdjusted, ___other0, method); *reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mDD3F51FAFBD5B40CE0D778E2AE3303A40209F45E_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_mDD3F51FAFBD5B40CE0D778E2AE3303A40209F45E_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_mDD3F51FAFBD5B40CE0D778E2AE3303A40209F45E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F L_0 = ___other0; bool L_1 = (bool)L_0.get_has_value_1(); bool L_2 = (bool)__this->get_has_value_1(); if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_0010; } } { return (bool)0; } IL_0010: { bool L_3 = (bool)__this->get_has_value_1(); if (L_3) { goto IL_001a; } } { return (bool)1; } IL_001a: { RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE * L_4 = (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *)(&___other0)->get_address_of_value_0(); RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE L_5 = (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE )__this->get_value_0(); RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6); bool L_8 = RenderStateBlock_Equals_m0E8A2D2F56D621408EF5962FAA5BE280DE8C0BD4((RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *)(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *)L_4, (RuntimeObject *)L_7, /*hidden argument*/NULL); return (bool)L_8; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_mDD3F51FAFBD5B40CE0D778E2AE3303A40209F45E_AdjustorThunk (RuntimeObject * __this, Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F ___other0, const RuntimeMethod* method) { Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_mDD3F51FAFBD5B40CE0D778E2AE3303A40209F45E(&_thisAdjusted, ___other0, method); *reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Int32 System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_m75D5966FDDEC3F900C21CBFEE03A8BC087408E41_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetHashCode_m75D5966FDDEC3F900C21CBFEE03A8BC087408E41_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetHashCode_m75D5966FDDEC3F900C21CBFEE03A8BC087408E41_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_000a; } } { return (int32_t)0; } IL_000a: { RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE * L_1 = (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *)__this->get_address_of_value_0(); int32_t L_2 = RenderStateBlock_GetHashCode_m1F7F40E3B1CF65CC83FC569C413F06BCEFF5C71C((RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *)(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *)L_1, /*hidden argument*/NULL); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t Nullable_1_GetHashCode_m75D5966FDDEC3F900C21CBFEE03A8BC087408E41_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_GetHashCode_m75D5966FDDEC3F900C21CBFEE03A8BC087408E41(&_thisAdjusted, method); *reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::GetValueOrDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE L_0 = (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE )__this->get_value_0(); return (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE )L_0; } } IL2CPP_EXTERN_C RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_has_value_1()); } RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE _returnValue = Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_inline(&_thisAdjusted, method); *reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.String System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m7EA7DF40B01B84A39807813416C4C186B23C52C4_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_ToString_m7EA7DF40B01B84A39807813416C4C186B23C52C4_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_ToString_m7EA7DF40B01B84A39807813416C4C186B23C52C4_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (!L_0) { goto IL_001a; } } { RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE * L_1 = (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *)__this->get_address_of_value_0(); RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), L_1); NullCheck((RuntimeObject *)L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_2); *L_1 = *(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *)UnBox(L_2); return (String_t*)L_3; } IL_001a: { String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return (String_t*)L_4; } } IL2CPP_EXTERN_C String_t* Nullable_1_ToString_m7EA7DF40B01B84A39807813416C4C186B23C52C4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F *)(__this + 1))->get_has_value_1()); } String_t* _returnValue = Nullable_1_ToString_m7EA7DF40B01B84A39807813416C4C186B23C52C4(&_thisAdjusted, method); *reinterpret_cast<RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Object System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::Box(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Nullable_1_Box_m65440F4F20650FACF20592CDA5B60351180CC859_gshared (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Box_m65440F4F20650FACF20592CDA5B60351180CC859_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Box_m65440F4F20650FACF20592CDA5B60351180CC859_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F L_0 = ___o0; bool L_1 = (bool)L_0.get_has_value_1(); if (L_1) { goto IL_000a; } } { return (RuntimeObject *)NULL; } IL_000a: { Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F L_2 = ___o0; RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE L_3 = (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE )L_2.get_value_0(); RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_4); return (RuntimeObject *)L_5; } } // System.Nullable`1<T> System.Nullable`1<UnityEngine.Rendering.RenderStateBlock>::Unbox(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F Nullable_1_Unbox_m1E42727BC0B959E7B54620B0E535DD9E9D7AD4C8_gshared (RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Unbox_m1E42727BC0B959E7B54620B0E535DD9E9D7AD4C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Unbox_m1E42727BC0B959E7B54620B0E535DD9E9D7AD4C8_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___o0; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F )); Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F L_1 = V_0; return (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F )L_1; } IL_000d: { RuntimeObject * L_2 = ___o0; Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F L_3; memset((&L_3), 0, sizeof(L_3)); Nullable_1__ctor_mA8ED073A176FC38129CED874F576B6CC839EC5EA((&L_3), (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE )((*(RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *)((RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F )L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Nullable`1<UnityEngine.Vector3>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m49ABD148B7A7789CB005BA17CA29E1896EE35057_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1__ctor_m49ABD148B7A7789CB005BA17CA29E1896EE35057_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1__ctor_m49ABD148B7A7789CB005BA17CA29E1896EE35057_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { __this->set_has_value_1((bool)1); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = ___value0; __this->set_value_0(L_0); return; } } IL2CPP_EXTERN_C void Nullable_1__ctor_m49ABD148B7A7789CB005BA17CA29E1896EE35057_AdjustorThunk (RuntimeObject * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___value0, const RuntimeMethod* method) { Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_has_value_1()); } Nullable_1__ctor_m49ABD148B7A7789CB005BA17CA29E1896EE35057(&_thisAdjusted, ___value0, method); *reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1) = _thisAdjusted.get_value_0(); } // System.Boolean System.Nullable`1<UnityEngine.Vector3>::get_HasValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C bool Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_inline(&_thisAdjusted, method); *reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<UnityEngine.Vector3>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Nullable_1_get_Value_m902B83FE050783CC1CEF6CB970A5AAB926F77D9C_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_Value_m902B83FE050783CC1CEF6CB970A5AAB926F77D9C_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_Value_m902B83FE050783CC1CEF6CB970A5AAB926F77D9C_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_0013; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, (String_t*)_stringLiteralF7F24D49529641003F57A1A7C43CFCCA3D29BD73, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Nullable_1_get_Value_m902B83FE050783CC1CEF6CB970A5AAB926F77D9C_RuntimeMethod_var); } IL_0013: { Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_2 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )__this->get_value_0(); return (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_2; } } IL2CPP_EXTERN_C Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Nullable_1_get_Value_m902B83FE050783CC1CEF6CB970A5AAB926F77D9C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_has_value_1()); } Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 _returnValue = Nullable_1_get_Value_m902B83FE050783CC1CEF6CB970A5AAB926F77D9C(&_thisAdjusted, method); *reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<UnityEngine.Vector3>::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_mC4A197FA803FF5A473A45D9362E8DE3C3A0C9637_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_mC4A197FA803FF5A473A45D9362E8DE3C3A0C9637_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_mC4A197FA803FF5A473A45D9362E8DE3C3A0C9637_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_000d; } } { bool L_1 = (bool)__this->get_has_value_1(); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } IL_000d: { RuntimeObject * L_2 = ___other0; if (((RuntimeObject *)IsInst((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))) { goto IL_0017; } } { return (bool)0; } IL_0017: { RuntimeObject * L_3 = ___other0; void* L_4 = alloca(sizeof(Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE )); UnBoxNullable(L_3, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var, L_4); bool L_5 = Nullable_1_Equals_m1FA9AE8F6E43B1AC7DA2EF0F387F081979467C25((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)__this, (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE )((*(Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)L_4))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return (bool)L_5; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_mC4A197FA803FF5A473A45D9362E8DE3C3A0C9637_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method) { Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_mC4A197FA803FF5A473A45D9362E8DE3C3A0C9637(&_thisAdjusted, ___other0, method); *reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Boolean System.Nullable`1<UnityEngine.Vector3>::Equals(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_Equals_m1FA9AE8F6E43B1AC7DA2EF0F387F081979467C25_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Equals_m1FA9AE8F6E43B1AC7DA2EF0F387F081979467C25_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Equals_m1FA9AE8F6E43B1AC7DA2EF0F387F081979467C25_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE L_0 = ___other0; bool L_1 = (bool)L_0.get_has_value_1(); bool L_2 = (bool)__this->get_has_value_1(); if ((((int32_t)L_1) == ((int32_t)L_2))) { goto IL_0010; } } { return (bool)0; } IL_0010: { bool L_3 = (bool)__this->get_has_value_1(); if (L_3) { goto IL_001a; } } { return (bool)1; } IL_001a: { Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * L_4 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&___other0)->get_address_of_value_0(); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_5 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )__this->get_value_0(); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_6 = L_5; RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6); bool L_8 = Vector3_Equals_m1F74B1FB7EE51589FFFA61D894F616B8F258C056((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)L_4, (RuntimeObject *)L_7, /*hidden argument*/NULL); return (bool)L_8; } } IL2CPP_EXTERN_C bool Nullable_1_Equals_m1FA9AE8F6E43B1AC7DA2EF0F387F081979467C25_AdjustorThunk (RuntimeObject * __this, Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE ___other0, const RuntimeMethod* method) { Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_has_value_1()); } bool _returnValue = Nullable_1_Equals_m1FA9AE8F6E43B1AC7DA2EF0F387F081979467C25(&_thisAdjusted, ___other0, method); *reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Int32 System.Nullable`1<UnityEngine.Vector3>::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_GetHashCode_m99637F7283FCCB08B4C2DB9BE61B44EB07C7ED1F_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetHashCode_m99637F7283FCCB08B4C2DB9BE61B44EB07C7ED1F_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetHashCode_m99637F7283FCCB08B4C2DB9BE61B44EB07C7ED1F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (L_0) { goto IL_000a; } } { return (int32_t)0; } IL_000a: { Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * L_1 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)__this->get_address_of_value_0(); int32_t L_2 = Vector3_GetHashCode_m6C42B4F413A489535D180E8A99BE0298AD078B0B((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)L_1, /*hidden argument*/NULL); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t Nullable_1_GetHashCode_m99637F7283FCCB08B4C2DB9BE61B44EB07C7ED1F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_has_value_1()); } int32_t _returnValue = Nullable_1_GetHashCode_m99637F7283FCCB08B4C2DB9BE61B44EB07C7ED1F(&_thisAdjusted, method); *reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // T System.Nullable`1<UnityEngine.Vector3>::GetValueOrDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )__this->get_value_0(); return (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_0; } } IL2CPP_EXTERN_C Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_has_value_1()); } Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 _returnValue = Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_inline(&_thisAdjusted, method); *reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.String System.Nullable`1<UnityEngine.Vector3>::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Nullable_1_ToString_m5CF657AB54EFB4B3E09840F5217CA707B9EC967A_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_ToString_m5CF657AB54EFB4B3E09840F5217CA707B9EC967A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_ToString_m5CF657AB54EFB4B3E09840F5217CA707B9EC967A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); if (!L_0) { goto IL_001a; } } { Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * L_1 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)__this->get_address_of_value_0(); String_t* L_2 = Vector3_ToString_m2682D27AB50CD1CE4677C38D0720A302D582348D((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)L_1, /*hidden argument*/NULL); return (String_t*)L_2; } IL_001a: { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return (String_t*)L_3; } } IL2CPP_EXTERN_C String_t* Nullable_1_ToString_m5CF657AB54EFB4B3E09840F5217CA707B9EC967A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE _thisAdjusted; if (!il2cpp_codegen_is_fake_boxed_object(__this)) { _thisAdjusted.set_value_0(*reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1)); _thisAdjusted.set_has_value_1(true); } else { _thisAdjusted.set_value_0(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_value_0()); _thisAdjusted.set_has_value_1(((Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE *)(__this + 1))->get_has_value_1()); } String_t* _returnValue = Nullable_1_ToString_m5CF657AB54EFB4B3E09840F5217CA707B9EC967A(&_thisAdjusted, method); *reinterpret_cast<Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *>(__this + 1) = _thisAdjusted.get_value_0(); return _returnValue; } // System.Object System.Nullable`1<UnityEngine.Vector3>::Box(System.Nullable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Nullable_1_Box_mD6D4DE024A1D18E3ABB7DC6905B7BE4BC0EDB3D4_gshared (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Box_mD6D4DE024A1D18E3ABB7DC6905B7BE4BC0EDB3D4_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Box_mD6D4DE024A1D18E3ABB7DC6905B7BE4BC0EDB3D4_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE L_0 = ___o0; bool L_1 = (bool)L_0.get_has_value_1(); if (L_1) { goto IL_000a; } } { return (RuntimeObject *)NULL; } IL_000a: { Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE L_2 = ___o0; Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_3 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_2.get_value_0(); Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_4 = L_3; RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_4); return (RuntimeObject *)L_5; } } // System.Nullable`1<T> System.Nullable`1<UnityEngine.Vector3>::Unbox(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE Nullable_1_Unbox_m66A8CA1EDECCB3D4F9C89653F51D5CB8F6AD77FA_gshared (RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_Unbox_m66A8CA1EDECCB3D4F9C89653F51D5CB8F6AD77FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_Unbox_m66A8CA1EDECCB3D4F9C89653F51D5CB8F6AD77FA_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___o0; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE )); Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE L_1 = V_0; return (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE )L_1; } IL_000d: { RuntimeObject * L_2 = ___o0; Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE L_3; memset((&L_3), 0, sizeof(L_3)); Nullable_1__ctor_m49ABD148B7A7789CB005BA17CA29E1896EE35057((&L_3), (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )((*(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)UnBox(L_2, IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1))))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); return (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE )L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<Cinemachine.CameraState_CustomBlendable>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mDBD1D395EDD4A2A86AEBD54FF9046C2F723B3FF7_gshared (Predicate_1_t9521EB82ACE41AD71C0C8D6E3E7CB57CF8A90762 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<Cinemachine.CameraState_CustomBlendable>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mEEB1F593F21EE9F93B426547A33E951C98CDF29D_gshared (Predicate_1_t9521EB82ACE41AD71C0C8D6E3E7CB57CF8A90762 * __this, CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<Cinemachine.CameraState_CustomBlendable>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mDC5F85069EDA7814A72FE3C87A2EF51437E48897_gshared (Predicate_1_t9521EB82ACE41AD71C0C8D6E3E7CB57CF8A90762 * __this, CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mDC5F85069EDA7814A72FE3C87A2EF51437E48897_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(CustomBlendable_tC203F291B1DBDDF7E40E2CEE984F4755BDF6D253_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<Cinemachine.CameraState_CustomBlendable>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mCF873588163437F23AF7D1846A3153B64AD9A237_gshared (Predicate_1_t9521EB82ACE41AD71C0C8D6E3E7CB57CF8A90762 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<Cinemachine.CinemachineClearShot_Pair>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m1605318CB9E7278DB59163D357F5A58CC2C227BD_gshared (Predicate_1_t4859C57AE169CFEAD7B0DDB3D8B85CEC17A01023 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<Cinemachine.CinemachineClearShot_Pair>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m1A5CDC4915CD9F344E8460BFFE31020E3CED9267_gshared (Predicate_1_t4859C57AE169CFEAD7B0DDB3D8B85CEC17A01023 * __this, Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<Cinemachine.CinemachineClearShot_Pair>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mB2B0A84B146D728FD23E417F6A6A0E8B2DCA05D8_gshared (Predicate_1_t4859C57AE169CFEAD7B0DDB3D8B85CEC17A01023 * __this, Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mB2B0A84B146D728FD23E417F6A6A0E8B2DCA05D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Pair_t0E12F7940E25412C706A469CD53F30FDC49DF3BC_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<Cinemachine.CinemachineClearShot_Pair>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mCEDE1B7EF2BF0B28ED50388037F65DC29BC3F881_gshared (Predicate_1_t4859C57AE169CFEAD7B0DDB3D8B85CEC17A01023 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<Cinemachine.CinemachineStateDrivenCamera_HashPair>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mD04F503A804281B89630B2BC4610CAC08104B7DF_gshared (Predicate_1_t3E119AAC3C020B4C3584C6CC40DDA35273C4AFD8 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<Cinemachine.CinemachineStateDrivenCamera_HashPair>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m0C9AFD00D656050AAE5317FC26DAD12E65949AB1_gshared (Predicate_1_t3E119AAC3C020B4C3584C6CC40DDA35273C4AFD8 * __this, HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<Cinemachine.CinemachineStateDrivenCamera_HashPair>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m25916A46AEC08EB5C420E57B29CCEF158AFC4615_gshared (Predicate_1_t3E119AAC3C020B4C3584C6CC40DDA35273C4AFD8 * __this, HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m25916A46AEC08EB5C420E57B29CCEF158AFC4615_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(HashPair_tAB88B347ACB8694445B828C5EC001E1D2AEA3A1F_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<Cinemachine.CinemachineStateDrivenCamera_HashPair>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mD4A97602F2A5BA2E2DD1CF0F2E7844D158347D6D_gshared (Predicate_1_t3E119AAC3C020B4C3584C6CC40DDA35273C4AFD8 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<Cinemachine.TargetPositionCache_CacheCurve_Item>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m081C415491DBF9A5F1B598C2B36E41D508D8B648_gshared (Predicate_1_tE679129F26B83506213AABAFDDB02E4E54394B60 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<Cinemachine.TargetPositionCache_CacheCurve_Item>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m2A3186FD949979D4BC33C3A7BFF664CB562E6582_gshared (Predicate_1_tE679129F26B83506213AABAFDDB02E4E54394B60 * __this, Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<Cinemachine.TargetPositionCache_CacheCurve_Item>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m10047A113CDD3C48B9FBDA81E60638C27F4558DE_gshared (Predicate_1_tE679129F26B83506213AABAFDDB02E4E54394B60 * __this, Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m10047A113CDD3C48B9FBDA81E60638C27F4558DE_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Item_t3009BB75DBC6FAEB582F0C0F3EE18433B7CA48BE_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<Cinemachine.TargetPositionCache_CacheCurve_Item>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m7918E3F444763A5DA4006C6F725CE07ED4B4D9B9_gshared (Predicate_1_tE679129F26B83506213AABAFDDB02E4E54394B60 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<Cinemachine.TargetPositionCache_CacheEntry_RecordingItem>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m818C7340152B3ADAA9936CA98AEF9A4148CDFD64_gshared (Predicate_1_t7220680686D0F96C39750996F326CA0A6A23C7AF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<Cinemachine.TargetPositionCache_CacheEntry_RecordingItem>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m429251E27E2846DCA3EB73982A3E062BF194D8CF_gshared (Predicate_1_t7220680686D0F96C39750996F326CA0A6A23C7AF * __this, RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<Cinemachine.TargetPositionCache_CacheEntry_RecordingItem>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m389A7D6883E41E6B1A23C30EE6545E1D34142A92_gshared (Predicate_1_t7220680686D0F96C39750996F326CA0A6A23C7AF * __this, RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m389A7D6883E41E6B1A23C30EE6545E1D34142A92_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(RecordingItem_tF662A75D94BD342DCA3D16AAAC8E76A49ABF208A_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<Cinemachine.TargetPositionCache_CacheEntry_RecordingItem>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m1F5624F8768DA34C528E997273DBE2A6247AC6FD_gshared (Predicate_1_t7220680686D0F96C39750996F326CA0A6A23C7AF * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Byte>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mC6A6B85AD75B9F3C1AD6549B82917503C5680CE4_gshared (Predicate_1_tFDB7E349837C854DED22559777D0F1D11C83E875 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.Byte>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m77862EF297B9AF76A386B4A165145EF3B5420E0A_gshared (Predicate_1_tFDB7E349837C854DED22559777D0F1D11C83E875 * __this, uint8_t ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (uint8_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, uint8_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, uint8_t >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, uint8_t >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, uint8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, uint8_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } typedef bool (*FunctionPointerType) (void*, uint8_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } return result; } // System.IAsyncResult System.Predicate`1<System.Byte>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mB86174F16CD4E8CC75DB1B265BA8ADBDC8ABB49A_gshared (Predicate_1_tFDB7E349837C854DED22559777D0F1D11C83E875 * __this, uint8_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mB86174F16CD4E8CC75DB1B265BA8ADBDC8ABB49A_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.Byte>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mAABBE8F3C8BDA6E15573EB398934B05F999C030E_gshared (Predicate_1_tFDB7E349837C854DED22559777D0F1D11C83E875 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Char>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m96700BDE8FF5DDC014FBE26E33BAEC45801A6F3A_gshared (Predicate_1_t72B0E826A53687129ED01DCB215AB69C8EF296DA * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.Char>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mF28E812D80000A4075BBF6AF70CBE2FC805962F3_gshared (Predicate_1_t72B0E826A53687129ED01DCB215AB69C8EF296DA * __this, Il2CppChar ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Il2CppChar, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Il2CppChar, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Il2CppChar >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Il2CppChar >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Il2CppChar >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Il2CppChar >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } typedef bool (*FunctionPointerType) (void*, Il2CppChar, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } return result; } // System.IAsyncResult System.Predicate`1<System.Char>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mFFDA63A023301B746B37FA7E947C58CBAD928A3B_gshared (Predicate_1_t72B0E826A53687129ED01DCB215AB69C8EF296DA * __this, Il2CppChar ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mFFDA63A023301B746B37FA7E947C58CBAD928A3B_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.Char>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m0EAEC131F8E90A9F0E328C7EA02DF7CE38A3E370_gshared (Predicate_1_t72B0E826A53687129ED01DCB215AB69C8EF296DA * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mCA23C2ABF502972E74664B2A1DA1969FDB193E59_gshared (Predicate_1_t0CED81C3FC8E7102A1E55F8156E33915BDC8EB2C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m0EB9BA519F4CD8C216E73BB03418564EC7CDF7AE_gshared (Predicate_1_t0CED81C3FC8E7102A1E55F8156E33915BDC8EB2C * __this, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mD4576B09BECBFE128F03CEC278F406C6206C94C7_gshared (Predicate_1_t0CED81C3FC8E7102A1E55F8156E33915BDC8EB2C * __this, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mD4576B09BECBFE128F03CEC278F406C6206C94C7_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mA9182E6927E9241C9CA9F02D0CD79EEDBCA24034_gshared (Predicate_1_t0CED81C3FC8E7102A1E55F8156E33915BDC8EB2C * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m26D8DC01E7AB77BEE28EE8B17170BE70938A1705_gshared (Predicate_1_t5DF4D75C44806F4C5EE19F79D23B7DD693B92D83 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mDDD2A4B77FE965388A3EEB7FCFC5BF790ECB02C2_gshared (Predicate_1_t5DF4D75C44806F4C5EE19F79D23B7DD693B92D83 * __this, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m1A03E3D17D190283E3BAB6FD09D2C05C12DD96DA_gshared (Predicate_1_t5DF4D75C44806F4C5EE19F79D23B7DD693B92D83 * __this, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m1A03E3D17D190283E3BAB6FD09D2C05C12DD96DA_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.Diagnostics.Tracing.EventProvider_SessionInfo>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mE5BADA4FF879851BA88EF089D5826ACD4FD00B47_gshared (Predicate_1_t5DF4D75C44806F4C5EE19F79D23B7DD693B92D83 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Int32>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m78FDCEC58FE3D44DCE64FE4F1F6B4184DCCBCDCD_gshared (Predicate_1_t2E795623C97B4C5B38406E9201D0720C5C15895F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.Int32>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mA4904BF612C62D6A9BFD347D2B57C1648F795067_gshared (Predicate_1_t2E795623C97B4C5B38406E9201D0720C5C15895F * __this, int32_t ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } return result; } // System.IAsyncResult System.Predicate`1<System.Int32>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m8555546A2481D9E190B2CFE1DA4E4B18A23EFBD2_gshared (Predicate_1_t2E795623C97B4C5B38406E9201D0720C5C15895F * __this, int32_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m8555546A2481D9E190B2CFE1DA4E4B18A23EFBD2_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.Int32>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m1C95E53BC90C9588E06321FBD0D32A243FA22876_gshared (Predicate_1_t2E795623C97B4C5B38406E9201D0720C5C15895F * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Int32Enum>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m418C1EAA6EE7662DA6413D4E9F84C40E5ED1DB9F_gshared (Predicate_1_t04D23B98D3C2827AAD9018CEB5C22E4F69AE649A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.Int32Enum>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m1CAC769B571405F05406BF2E4B8ECF885049A134_gshared (Predicate_1_t04D23B98D3C2827AAD9018CEB5C22E4F69AE649A * __this, int32_t ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, int32_t >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<System.Int32Enum>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mA4F936144D9D9887F2F77249CCFB765A613CF2C5_gshared (Predicate_1_t04D23B98D3C2827AAD9018CEB5C22E4F69AE649A * __this, int32_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mA4F936144D9D9887F2F77249CCFB765A613CF2C5_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.Int32Enum>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mD62EF460B7B8AA3DA3BA72870D29990D88C7DC2A_gshared (Predicate_1_t04D23B98D3C2827AAD9018CEB5C22E4F69AE649A * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Int64>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3A1D247B8F57DFFBC80E52C4BB9A0C02AB0C9FE9_gshared (Predicate_1_t480A858115E18AE09004B70F8D424B430CC2BB81 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.Int64>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m415661D9491B77B8AD309EF0451C5CA2AD97FE83_gshared (Predicate_1_t480A858115E18AE09004B70F8D424B430CC2BB81 * __this, int64_t ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, int64_t >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, int64_t >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, int64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } typedef bool (*FunctionPointerType) (void*, int64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } return result; } // System.IAsyncResult System.Predicate`1<System.Int64>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m0973A8DA66E3C131DC3BCD470418E8E1A4944BC8_gshared (Predicate_1_t480A858115E18AE09004B70F8D424B430CC2BB81 * __this, int64_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m0973A8DA66E3C131DC3BCD470418E8E1A4944BC8_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.Int64>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m992EA1917023E24799F462C5A5A6765F32201B4C_gshared (Predicate_1_t480A858115E18AE09004B70F8D424B430CC2BB81 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mBC07C59B061E1B719FFE2B6E5541E9011D906C3C_gshared (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.Object>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m48E6FF2E50B1E4D46B8D9F15F0FDAFE40FA4F9F4_gshared (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else if (___parameterCount != 1) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< bool >::Invoke(targetMethod, ___obj0); else result = GenericVirtFuncInvoker0< bool >::Invoke(targetMethod, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___obj0); else result = VirtFuncInvoker0< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___obj0); } } else { typedef bool (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, RuntimeObject * >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { typedef bool (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m9D96DA607D803960ACA7B6AEC34D9681808F1E65_gshared (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * __this, RuntimeObject * ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___obj0; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.Object>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m6752F5F97A89F2B233989D019EB3F3F0196DEF4D_gshared (Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.Single>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mD07DB7274E7DBE17DDFA073D9C4D7DC4F340C33B_gshared (Predicate_1_t841FDBD98DB0D653BF54D71E3481608E51DD4F38 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.Single>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m36D3C77D4817DAE6F53CB516CF33309C9941DD79_gshared (Predicate_1_t841FDBD98DB0D653BF54D71E3481608E51DD4F38 * __this, float ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (float, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, float, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, float >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, float >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, float >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } typedef bool (*FunctionPointerType) (void*, float, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } return result; } // System.IAsyncResult System.Predicate`1<System.Single>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m84E52BAEB21A7319DA6FE73588D3F0D759BA3F8B_gshared (Predicate_1_t841FDBD98DB0D653BF54D71E3481608E51DD4F38 * __this, float ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m84E52BAEB21A7319DA6FE73588D3F0D759BA3F8B_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.Single>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m4FFD2A698899FED4FF1DD6B8152E35D1894FFD1A_gshared (Predicate_1_t841FDBD98DB0D653BF54D71E3481608E51DD4F38 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.UInt32>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m8BC622E2BB39778876809396749E9FFC1F65846A_gshared (Predicate_1_t3583426FF9E6498ABD95E96A9738B5B9E127CD81 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.UInt32>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m5C9A6D743D2300B03EDEB4CA9F9E4338D5355AC0_gshared (Predicate_1_t3583426FF9E6498ABD95E96A9738B5B9E127CD81 * __this, uint32_t ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (uint32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, uint32_t >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, uint32_t >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } typedef bool (*FunctionPointerType) (void*, uint32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } return result; } // System.IAsyncResult System.Predicate`1<System.UInt32>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m7ACF6386688D17F5079705F6A300769A86DF32B3_gshared (Predicate_1_t3583426FF9E6498ABD95E96A9738B5B9E127CD81 * __this, uint32_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m7ACF6386688D17F5079705F6A300769A86DF32B3_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.UInt32>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m63F7475004DB557E92C3864883EFF8428708233F_gshared (Predicate_1_t3583426FF9E6498ABD95E96A9738B5B9E127CD81 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.UInt64>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mAEF0EF2B92681D4127C3F7DD25AD1EE41AEA7160_gshared (Predicate_1_t3E5A8BAE2A782FF0F14E0629B643CCEF02A7BE3F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.UInt64>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m8B9225987E6BC547FDF8DACBF93E7F5F4AD5EFBA_gshared (Predicate_1_t3E5A8BAE2A782FF0F14E0629B643CCEF02A7BE3F * __this, uint64_t ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (uint64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, uint64_t >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, uint64_t >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, uint64_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } typedef bool (*FunctionPointerType) (void*, uint64_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } return result; } // System.IAsyncResult System.Predicate`1<System.UInt64>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mE3AE55B49F3DB26C7C7E6B08E8C0B3478B5B2F7E_gshared (Predicate_1_t3E5A8BAE2A782FF0F14E0629B643CCEF02A7BE3F * __this, uint64_t ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mE3AE55B49F3DB26C7C7E6B08E8C0B3478B5B2F7E_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.UInt64>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mE1920EC1331D13A6937997E7C9EF657629A38E3A_gshared (Predicate_1_t3E5A8BAE2A782FF0F14E0629B643CCEF02A7BE3F * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.ValueTuple`2<System.Int32,System.Object>>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m2AEA3CE437FFB4B87F6688111A6404ADF392A86F_gshared (Predicate_1_t5668238D18203A0B9A2146A71BE08456395DCAFF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.ValueTuple`2<System.Int32,System.Object>>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m0A3B3F2224094FD36514E91BF54AD5FF0D84B3C0_gshared (Predicate_1_t5668238D18203A0B9A2146A71BE08456395DCAFF * __this, ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<System.ValueTuple`2<System.Int32,System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mE122B11F5DF5852E6EC097CC400F1C77E3710CD9_gshared (Predicate_1_t5668238D18203A0B9A2146A71BE08456395DCAFF * __this, ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mE122B11F5DF5852E6EC097CC400F1C77E3710CD9_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(ValueTuple_2_t08D67844EB4053A088CC44538B46B394550ADF82_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.ValueTuple`2<System.Int32,System.Object>>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m782BAF6EF8B1E7F424DDC26B0171166F648D71C5_gshared (Predicate_1_t5668238D18203A0B9A2146A71BE08456395DCAFF * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m95C1C0368D53A802E25D3CC9403C18A39823C314_gshared (Predicate_1_t43A0F43C51DC8DD6D24A9511A4624763BE778DE3 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m5F9958E080851414E6042FE9F9FCE42563F1502A_gshared (Predicate_1_t43A0F43C51DC8DD6D24A9511A4624763BE778DE3 * __this, ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m627DC31F64B8F6070AD68945A3D695D6632F884D_gshared (Predicate_1_t43A0F43C51DC8DD6D24A9511A4624763BE778DE3 * __this, ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m627DC31F64B8F6070AD68945A3D695D6632F884D_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(ValueTuple_2_tFB0C760FD4BA3FB6783CD2271476D83D7675C891_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<System.ValueTuple`2<System.Object,System.ValueTuple`2<System.Object,System.Int32>>>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m47AB6C6AC4CA4509CC81565A979137FEB0227286_gshared (Predicate_1_t43A0F43C51DC8DD6D24A9511A4624763BE778DE3 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mF43DEEBF4E1ECF3A5E41867A880C04943915C1C2_gshared (Predicate_1_tB49E63EDA80D01F4A107737EB2622C74B64D1C46 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m9474133DCD183C0141ACB439B150F4A66C77A5FC_gshared (Predicate_1_tB49E63EDA80D01F4A107737EB2622C74B64D1C46 * __this, Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mB567C3C68C659FEF48C09F60D385FD7499269741_gshared (Predicate_1_tB49E63EDA80D01F4A107737EB2622C74B64D1C46 * __this, Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mB567C3C68C659FEF48C09F60D385FD7499269741_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Frame_tDCBD17C1EAD7A9C8C39B66C8E7A3CEE5A01294B4_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray_Frame>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mFD958B5F81A3558A33F78CEA9499B26DE1C7C620_gshared (Predicate_1_tB49E63EDA80D01F4A107737EB2622C74B64D1C46 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.AnimatorClipInfo>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m84A525299D4DE7A0303FCAA1813153ADDF2D8138_gshared (Predicate_1_t2654C282BB27C89BF1BB5D7FCC09DD6DD09C4D22 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.AnimatorClipInfo>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mADE5D60F5E228C269EE4423583297F10322AB4BD_gshared (Predicate_1_t2654C282BB27C89BF1BB5D7FCC09DD6DD09C4D22 * __this, AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.AnimatorClipInfo>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m91E2C50D9F5791F9B0F90AB019AABF8264CCE23D_gshared (Predicate_1_t2654C282BB27C89BF1BB5D7FCC09DD6DD09C4D22 * __this, AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m91E2C50D9F5791F9B0F90AB019AABF8264CCE23D_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(AnimatorClipInfo_t78457ABBA83D388EDFF26F436F5E61A29CF4E180_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.AnimatorClipInfo>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m599A175F0F70700458E68F04EADEF41317FAE564_gshared (Predicate_1_t2654C282BB27C89BF1BB5D7FCC09DD6DD09C4D22 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.BeforeRenderHelper_OrderBlock>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m86285B298BFC3B49BFE8CC48C91DBECD2653DEA5_gshared (Predicate_1_t6021C753A4C8761482AE2125268A1F20CC5302F9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper_OrderBlock>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mDDBD7F2293576A8DA326DA1E62E0EEEC3A0A605E_gshared (Predicate_1_t6021C753A4C8761482AE2125268A1F20CC5302F9 * __this, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.BeforeRenderHelper_OrderBlock>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m6E70342C1C5415108463FF2FE42458284622DF9D_gshared (Predicate_1_t6021C753A4C8761482AE2125268A1F20CC5302F9 * __this, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m6E70342C1C5415108463FF2FE42458284622DF9D_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.BeforeRenderHelper_OrderBlock>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m552DF85DFC1BB9B124653F13C56B90C1398FE1C5_gshared (Predicate_1_t6021C753A4C8761482AE2125268A1F20CC5302F9 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Color32>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mD69635E1458B8BE20A7524964236F9173E6D8324_gshared (Predicate_1_tA8093CB95EF5DA7B543ABA099527806A0FE5BD4E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Color32>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mEEF95924B74FA403B7B69C0224FF5C4729C92F86_gshared (Predicate_1_tA8093CB95EF5DA7B543ABA099527806A0FE5BD4E * __this, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Color32>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m28669725363DE11FE500867F7164B2FFC012A487_gshared (Predicate_1_tA8093CB95EF5DA7B543ABA099527806A0FE5BD4E * __this, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m28669725363DE11FE500867F7164B2FFC012A487_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Color32>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m694465AFD57868DDC42CB865832844EABD77A14C_gshared (Predicate_1_tA8093CB95EF5DA7B543ABA099527806A0FE5BD4E * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Color>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mA478525CB454A5299B704C087A9D49F293170175_gshared (Predicate_1_t61DDCCB390DE4D540A71E6908516D815FBC3F07E * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Color>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mB3A4471FE044F0F703982B299F6B78515388AC05_gshared (Predicate_1_t61DDCCB390DE4D540A71E6908516D815FBC3F07E * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Color>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mA29F443433E874CF930E18680C53C9F7195F3DA9_gshared (Predicate_1_t61DDCCB390DE4D540A71E6908516D815FBC3F07E * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mA29F443433E874CF930E18680C53C9F7195F3DA9_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Color>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mF84866852080C5E313FA5CC0ED1697E66FCCE002_gshared (Predicate_1_t61DDCCB390DE4D540A71E6908516D815FBC3F07E * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m940535CD0E2B0D970DC1745A4A7132B18DDE28F4_gshared (Predicate_1_t3BE7E6936879AAE7D83581BB6DBEB5AB7966797B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m917DA6EDE552959DA62B191AA35B41452C69B21E_gshared (Predicate_1_t3BE7E6936879AAE7D83581BB6DBEB5AB7966797B * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m01DEC433226C79495334DEFD4D1494960984C53B_gshared (Predicate_1_t3BE7E6936879AAE7D83581BB6DBEB5AB7966797B * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m01DEC433226C79495334DEFD4D1494960984C53B_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.EventSystems.RaycastResult>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mC25F4443BD7F868A1E3FED8903EC706DB9A56C60_gshared (Predicate_1_t3BE7E6936879AAE7D83581BB6DBEB5AB7966797B * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mBDB4B27919CDDE2B2E53AD960FCBDD63338C1C29_gshared (Predicate_1_tE3D5694609E51215B4376F06DA6D8B0915659522 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mBF0B9D28C7E7B7F1FA61CAC9F8726B60DF690D77_gshared (Predicate_1_tE3D5694609E51215B4376F06DA6D8B0915659522 * __this, RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m8D824C647B3A22108F66614B6F4DE43277B36469_gshared (Predicate_1_tE3D5694609E51215B4376F06DA6D8B0915659522 * __this, RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m8D824C647B3A22108F66614B6F4DE43277B36469_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(RenderGraphMutableResource_t3658233BFA84721C15D19B38770A075F46950524_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphMutableResource>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mAB7958F5F91406C2619E7312C883EBE66982D2F6_gshared (Predicate_1_tE3D5694609E51215B4376F06DA6D8B0915659522 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mE2D9C6A98FFE3888DBE4F0E9FF461F614CC7FCA8_gshared (Predicate_1_t8ED3DE1F08418BEC8373C50FC9DB31983FC263E4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m6977C26A7D6C6F9BBB23788559CA3790EF055DB1_gshared (Predicate_1_t8ED3DE1F08418BEC8373C50FC9DB31983FC263E4 * __this, RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m08916F9561F216D02FD4C6523DAAD964C689E916_gshared (Predicate_1_t8ED3DE1F08418BEC8373C50FC9DB31983FC263E4 * __this, RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m08916F9561F216D02FD4C6523DAAD964C689E916_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(RenderGraphResource_t62DDF69E2F3B04BD3F0C3F892D44C91FCC4D3BCF_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Experimental.Rendering.RenderGraphModule.RenderGraphResource>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m6DEF86C1E5456044F6DEB1A2A1AC3DC90C66127F_gshared (Predicate_1_t8ED3DE1F08418BEC8373C50FC9DB31983FC263E4 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m706C3491B50F2D4598A86C39203219F5D4CF46C0_gshared (Predicate_1_t374DC9880DE0B98D67A6BA3B77648958F4D954E9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mAEBE3D767B22C88FF277932A58393C74BF120BB8_gshared (Predicate_1_t374DC9880DE0B98D67A6BA3B77648958F4D954E9 * __this, ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m8B4038CEF6E302AF0A213378B6C6F0C2A4714AC1_gshared (Predicate_1_t374DC9880DE0B98D67A6BA3B77648958F4D954E9 * __this, ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m8B4038CEF6E302AF0A213378B6C6F0C2A4714AC1_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(ContourVertex_t67A305DD504D7CB0E1CA881D94A814242522B1DE_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.LibTessDotNet.ContourVertex>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mD2A577FD18EB6D2052D849954627532976CFCD3A_gshared (Predicate_1_t374DC9880DE0B98D67A6BA3B77648958F4D954E9 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m439DE74FBBE04203865472FD78D56D1334BB22F6_gshared (Predicate_1_tE6258625C04FDEEA071A97A0914827AB3721815A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mFF7DCFE04DB9411D871FB49122269BCB39AA9034_gshared (Predicate_1_tE6258625C04FDEEA071A97A0914827AB3721815A * __this, Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mCC25335934A0971E3DD462F7B8DA106D42D7EE1E_gshared (Predicate_1_tE6258625C04FDEEA071A97A0914827AB3721815A * __this, Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mCC25335934A0971E3DD462F7B8DA106D42D7EE1E_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Edge_t4AFA67E936024EBBE692EBD257724A651FCAB0D0_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Experimental.Rendering.Universal.ShadowUtility_Edge>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mC58350B4DADBC0761F8D6BDBC4CD84B2423E514F_gshared (Predicate_1_tE6258625C04FDEEA071A97A0914827AB3721815A * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.GradientAlphaKey>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m0C611DD736A26EA4A5940A5985C091773D4E0E64_gshared (Predicate_1_t003940FBB1C3AE696D372DA7CA9A10DE87142B15 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.GradientAlphaKey>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m93E2DE812CF740AA4CF5A38C5D8E432B0D33111F_gshared (Predicate_1_t003940FBB1C3AE696D372DA7CA9A10DE87142B15 * __this, GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.GradientAlphaKey>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mAC8ED1792396CB8483BDD7617FCB87810BFE0270_gshared (Predicate_1_t003940FBB1C3AE696D372DA7CA9A10DE87142B15 * __this, GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mAC8ED1792396CB8483BDD7617FCB87810BFE0270_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(GradientAlphaKey_t4EB62CEE9D6AE78D1091E3594DE3BD978E758F82_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.GradientAlphaKey>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m99FC921F8A1AD82DC37F6DC1AFEAD9D98A95A236_gshared (Predicate_1_t003940FBB1C3AE696D372DA7CA9A10DE87142B15 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.GradientColorKey>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mFC9F338EFBF9D05FD7AD847A98BC934B2A1BD8B5_gshared (Predicate_1_tD19929B0FE35135B95CFA6F4D8EB2AB04E91B5ED * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.GradientColorKey>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mA6DC10FEDFB9861928F49C9A9E542F554B11C5E9_gshared (Predicate_1_tD19929B0FE35135B95CFA6F4D8EB2AB04E91B5ED * __this, GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.GradientColorKey>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m257398D3FCAB0921448DD4DFDFD424F44FDD2EC6_gshared (Predicate_1_tD19929B0FE35135B95CFA6F4D8EB2AB04E91B5ED * __this, GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m257398D3FCAB0921448DD4DFDFD424F44FDD2EC6_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(GradientColorKey_t047096E94D13A7089B05A574B361E027D37F9A0E_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.GradientColorKey>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m6E498135702BF9950164E5B5D11D94B8D230D083_gshared (Predicate_1_tD19929B0FE35135B95CFA6F4D8EB2AB04E91B5ED * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Playables.PlayableBinding>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mB0ACFC267CB95328FCAAB5ECEB389E66204DA40D_gshared (Predicate_1_t9E83FE2FFFED37D642AF2B395BB7F966739ADAE1 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Playables.PlayableBinding>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m01C3AD955F13AF7B14278990C3FA913EB54A88D7_gshared (Predicate_1_t9E83FE2FFFED37D642AF2B395BB7F966739ADAE1 * __this, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Playables.PlayableBinding>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mD98ABA95ACFF5F6EEB48A1DD24D1A084C93F61EC_gshared (Predicate_1_t9E83FE2FFFED37D642AF2B395BB7F966739ADAE1 * __this, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mD98ABA95ACFF5F6EEB48A1DD24D1A084C93F61EC_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Playables.PlayableBinding>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mD5E07503D2FE1712C2CA33437086AE2E10F62987_gshared (Predicate_1_t9E83FE2FFFED37D642AF2B395BB7F966739ADAE1 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Polybrush.CommonEdge>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m1252E1FAABE8B4970E625BA14AC9599E20701B1C_gshared (Predicate_1_t0EBB009AADDF380967A2B91710A72829197329CD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Polybrush.CommonEdge>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m37CDF70FBF7F98681E7D26B6B4FCE8C0E0D8C4A4_gshared (Predicate_1_t0EBB009AADDF380967A2B91710A72829197329CD * __this, CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Polybrush.CommonEdge>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mD9505FA9E7B26EA36C23FB6BD7548343E47B7CD3_gshared (Predicate_1_t0EBB009AADDF380967A2B91710A72829197329CD * __this, CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mD9505FA9E7B26EA36C23FB6BD7548343E47B7CD3_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(CommonEdge_tAA341B03266273706E8AF86667B9DCA98B7D7D55_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Polybrush.CommonEdge>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m3006147D9E6A04F6C8A8FB9B57AB9FE2DD44BBE4_gshared (Predicate_1_t0EBB009AADDF380967A2B91710A72829197329CD * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.RaycastHit2D>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mA6B9424FDD7D2CF6BE49A6871E8FE73A1E3D2D56_gshared (Predicate_1_t2E7328AF8D5171CD04F3ADE6309A349DEDFF4D96 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.RaycastHit2D>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m0F5230C1DBE618A0C214598D4A25B5F5BD6825E8_gshared (Predicate_1_t2E7328AF8D5171CD04F3ADE6309A349DEDFF4D96 * __this, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.RaycastHit2D>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m3B5CC425E7FFF6A15EBCCAA63A3EA8671B7F5E9D_gshared (Predicate_1_t2E7328AF8D5171CD04F3ADE6309A349DEDFF4D96 * __this, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m3B5CC425E7FFF6A15EBCCAA63A3EA8671B7F5E9D_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.RaycastHit2D>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m55D801C1300FFE12C131E57591B3DA2F7C526EAE_gshared (Predicate_1_t2E7328AF8D5171CD04F3ADE6309A349DEDFF4D96 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Rendering.ShaderTagId>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m724824A433EF47AF899E008504809F88707F413F_gshared (Predicate_1_t210056A6DD5FD7834AEA5E40F08DD18A64A8CD50 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Rendering.ShaderTagId>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mE33CB2F5B58E36F3A1557B27245A9FE693A1B723_gshared (Predicate_1_t210056A6DD5FD7834AEA5E40F08DD18A64A8CD50 * __this, ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Rendering.ShaderTagId>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mF8C1DBAAF893218E8E196E920188C51FE38916FA_gshared (Predicate_1_t210056A6DD5FD7834AEA5E40F08DD18A64A8CD50 * __this, ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mF8C1DBAAF893218E8E196E920188C51FE38916FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(ShaderTagId_tA1DB5D58561C760D6D1AD54E21EC81D889100940_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Rendering.ShaderTagId>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mA2232B4820EBE94D03FECD5FDCBEC97B6C96B491_gshared (Predicate_1_t210056A6DD5FD7834AEA5E40F08DD18A64A8CD50 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.TextCore.GlyphRect>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m4C27DB003B2EEA2EC6417057C8662A194378A551_gshared (Predicate_1_tB0A5EFEBC66C6A7540167D26FA783AFDCCB2DDD1 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.TextCore.GlyphRect>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m946F0A82072F917850C531FAD460956EFC72FFA3_gshared (Predicate_1_tB0A5EFEBC66C6A7540167D26FA783AFDCCB2DDD1 * __this, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.TextCore.GlyphRect>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mA3A66BF780B27DF4874F988EEE6543DA23E6C216_gshared (Predicate_1_tB0A5EFEBC66C6A7540167D26FA783AFDCCB2DDD1 * __this, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mA3A66BF780B27DF4874F988EEE6543DA23E6C216_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.TextCore.GlyphRect>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m7F8D9D54C5F62D0E9B43FC7883F879EDB623C9F6_gshared (Predicate_1_tB0A5EFEBC66C6A7540167D26FA783AFDCCB2DDD1 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Timeline.AnimationOutputWeightProcessor_WeightInfo>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m9A81132B365DC5A3CCAC56DE1E6EA76D69960905_gshared (Predicate_1_tAFABF0537FD8D848F2539B4D4CDCA73A2C172EDB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Timeline.AnimationOutputWeightProcessor_WeightInfo>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m3B665F851B39DC1EE91290A8B8C62039AFA613B6_gshared (Predicate_1_tAFABF0537FD8D848F2539B4D4CDCA73A2C172EDB * __this, WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Timeline.AnimationOutputWeightProcessor_WeightInfo>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mEAE2C8BD716828DC02E341B768C08CA62B2484BC_gshared (Predicate_1_tAFABF0537FD8D848F2539B4D4CDCA73A2C172EDB * __this, WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mEAE2C8BD716828DC02E341B768C08CA62B2484BC_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(WeightInfo_tA31710346461905766A9F21141047A636BCFF8DE_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Timeline.AnimationOutputWeightProcessor_WeightInfo>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mA8EFF47CE7C216CD5749AC4014D34B7DF960FA92_gshared (Predicate_1_tAFABF0537FD8D848F2539B4D4CDCA73A2C172EDB * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Timeline.IntervalTreeNode>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mCCC013E14F79BC5B72A27D6FE37DB7BF6FC5F54E_gshared (Predicate_1_tD5FCEA88DD45A302EB8551F25B4BE35F50F12F4D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Timeline.IntervalTreeNode>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mF4CF97744478BF9803AFF29054A8EFB34F969227_gshared (Predicate_1_tD5FCEA88DD45A302EB8551F25B4BE35F50F12F4D * __this, IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Timeline.IntervalTreeNode>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mA1CB13E1C34BA28515C4A5C52F02A77C4BF41ED3_gshared (Predicate_1_tD5FCEA88DD45A302EB8551F25B4BE35F50F12F4D * __this, IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mA1CB13E1C34BA28515C4A5C52F02A77C4BF41ED3_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(IntervalTreeNode_t8B8DEA2E855E332B62B759E97E279495300C3FEF_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Timeline.IntervalTreeNode>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m2DB125CABA84ADF000492955910ACE0074A56C38_gshared (Predicate_1_tD5FCEA88DD45A302EB8551F25B4BE35F50F12F4D * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Timeline.IntervalTree`1_Entry<System.Object>>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m96CA303296329E13092A8D7750C8FB82C136F1D6_gshared (Predicate_1_t2E5ABCE04476F52E5984266F258E030035608C16 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Timeline.IntervalTree`1_Entry<System.Object>>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m50DEAE96E296BE28C2C62B4DF09DC959EF2E5585_gshared (Predicate_1_t2E5ABCE04476F52E5984266F258E030035608C16 * __this, Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Timeline.IntervalTree`1_Entry<System.Object>>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m4502F9DF10C4220808F2DFC37FF741897A7B377C_gshared (Predicate_1_t2E5ABCE04476F52E5984266F258E030035608C16 * __this, Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m4502F9DF10C4220808F2DFC37FF741897A7B377C_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Entry_tFD0491B51EC2AF5B44D85C1B3771830CD5F14DF8_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Timeline.IntervalTree`1_Entry<System.Object>>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m135769AFE0DB03B9E2A69C39E857592729DED91E_gshared (Predicate_1_t2E5ABCE04476F52E5984266F258E030035608C16 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Timeline.TimeNotificationBehaviour_NotificationEntry>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m987AD13AD4D3EB5E84D87EF5F822E6416145FB16_gshared (Predicate_1_t9B364626E1833645CE9E40E210F351EEE2828A51 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Timeline.TimeNotificationBehaviour_NotificationEntry>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m38485D06244132C24B0AC855A7D6A408556558E7_gshared (Predicate_1_t9B364626E1833645CE9E40E210F351EEE2828A51 * __this, NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Timeline.TimeNotificationBehaviour_NotificationEntry>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mE8860EEABC4134918A1044C1485C97D45A272F15_gshared (Predicate_1_t9B364626E1833645CE9E40E210F351EEE2828A51 * __this, NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mE8860EEABC4134918A1044C1485C97D45A272F15_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(NotificationEntry_tC8EA7F3972A3BDFE6F010CB6D8982CC97CAD963A_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Timeline.TimeNotificationBehaviour_NotificationEntry>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m1124A4E5259564653848D42301EC8972DA21B05E_gshared (Predicate_1_t9B364626E1833645CE9E40E210F351EEE2828A51 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.UICharInfo>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mCCB9B69509755192D239FAA9A33EC22B32C96CA3_gshared (Predicate_1_tBE52451BEC74D597DE894237BB32DFC9015F9697 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.UICharInfo>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m7D2EC17BDCB59864E57FF8B5C2337A92BA0C79EB_gshared (Predicate_1_tBE52451BEC74D597DE894237BB32DFC9015F9697 * __this, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.UICharInfo>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m5DE56B0D92C26BDE3E3E85489B2F5D211EE77547_gshared (Predicate_1_tBE52451BEC74D597DE894237BB32DFC9015F9697 * __this, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m5DE56B0D92C26BDE3E3E85489B2F5D211EE77547_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.UICharInfo>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mE4FCBD3681DD22E44BCDDC386DA7A63F598488EF_gshared (Predicate_1_tBE52451BEC74D597DE894237BB32DFC9015F9697 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.UIElements.FocusController_FocusedElement>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mBE806B3D9000793A03356E8DE63F4C015B2ADD8B_gshared (Predicate_1_t4D9C20A6A7FA5C2332CD5F5F884429C8E5253B50 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.UIElements.FocusController_FocusedElement>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mB5CC5C89F273A323C58F5637203ED9B57E3B692E_gshared (Predicate_1_t4D9C20A6A7FA5C2332CD5F5F884429C8E5253B50 * __this, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.UIElements.FocusController_FocusedElement>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mB57C9C91D25ECCC926A9FCE97E7B9CA9A9961F80_gshared (Predicate_1_t4D9C20A6A7FA5C2332CD5F5F884429C8E5253B50 * __this, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mB57C9C91D25ECCC926A9FCE97E7B9CA9A9961F80_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.UIElements.FocusController_FocusedElement>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mDE5C4452CF383536474671E82D4A761C0F39425D_gshared (Predicate_1_t4D9C20A6A7FA5C2332CD5F5F884429C8E5253B50 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.UILineInfo>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m6DE82808EC03402773E1B612B5E9FC5297A01D98_gshared (Predicate_1_t10822666A90A56FEFE6380CDD491BDEAC56F650D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.UILineInfo>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m3F98F414EBB8BCD8C2205C56814A5DB408ABBA3F_gshared (Predicate_1_t10822666A90A56FEFE6380CDD491BDEAC56F650D * __this, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.UILineInfo>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mA158F581DEB11CBAEB9ACD57D30005BEDE4B63D2_gshared (Predicate_1_t10822666A90A56FEFE6380CDD491BDEAC56F650D * __this, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mA158F581DEB11CBAEB9ACD57D30005BEDE4B63D2_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.UILineInfo>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m7FE884B2703D595DCCB44A1324AC66483C513EB9_gshared (Predicate_1_t10822666A90A56FEFE6380CDD491BDEAC56F650D * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.UIVertex>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m18A3245358639306A52C2798CFF73726F40F75A5_gshared (Predicate_1_t39035309B4A9F1D72B4B123440525667819D4683 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.UIVertex>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m42C1016075BEA4036E79F5509F86E6326F23C1E8_gshared (Predicate_1_t39035309B4A9F1D72B4B123440525667819D4683 * __this, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.UIVertex>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mBB74E139AC44BE5D0514DCA8FBD05B36C6A17B7E_gshared (Predicate_1_t39035309B4A9F1D72B4B123440525667819D4683 * __this, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mBB74E139AC44BE5D0514DCA8FBD05B36C6A17B7E_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.UIVertex>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m310669E1521BE7BB2275469768D22DFDC7D1415C_gshared (Predicate_1_t39035309B4A9F1D72B4B123440525667819D4683 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m7B3F215F7A9D14C6EFB016E9D3A1CD53818BFB77_gshared (Predicate_1_tB36DEBDA8A92B190BF11D931895C0C099709AFFB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mDB1A4366C1C144661F3B68814C1F1918CDE83EB9_gshared (Predicate_1_tB36DEBDA8A92B190BF11D931895C0C099709AFFB * __this, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mF849303483A69CB986D3DFAD16462E42866B0601_gshared (Predicate_1_tB36DEBDA8A92B190BF11D931895C0C099709AFFB * __this, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mF849303483A69CB986D3DFAD16462E42866B0601_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.UnitySynchronizationContext_WorkRequest>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m9B5A4F672DF43AB923E0B504984A7125B993124D_gshared (Predicate_1_tB36DEBDA8A92B190BF11D931895C0C099709AFFB * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Vector2>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m35C65A2A919EFFADAE56C33E3BDC95185F2EA3CD_gshared (Predicate_1_tAFE9774406A8EEF2CB0FD007CE08B234C2D47ACA * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Vector2>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m9260F08453E249CD426C2116C5ED80F8F400AB6D_gshared (Predicate_1_tAFE9774406A8EEF2CB0FD007CE08B234C2D47ACA * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Vector2>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_mE4920874E9F0479EC9101ECF757E9D403D45A8B9_gshared (Predicate_1_tAFE9774406A8EEF2CB0FD007CE08B234C2D47ACA * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_mE4920874E9F0479EC9101ECF757E9D403D45A8B9_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Vector2>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mDDC601F1C43F3644A86D2BA3DB7C1246E6208B1A_gshared (Predicate_1_tAFE9774406A8EEF2CB0FD007CE08B234C2D47ACA * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Vector3>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m531318CCA56523B26944C76973C5B736CAD1D2B0_gshared (Predicate_1_tE5F02AA525EA77379C5162F9A56CEFED1EBC3D4F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Vector3>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m409F73DD87063FC30CD3546C94EE65CBBAC9808A_gshared (Predicate_1_tE5F02AA525EA77379C5162F9A56CEFED1EBC3D4F * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Vector3>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m90BB8181458016410D0F7F2F9ACA8C1769093DD1_gshared (Predicate_1_tE5F02AA525EA77379C5162F9A56CEFED1EBC3D4F * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m90BB8181458016410D0F7F2F9ACA8C1769093DD1_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Vector3>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_mEFA8DC6320D2E686DB10011A574BF7FE8F49EBDA_gshared (Predicate_1_tE5F02AA525EA77379C5162F9A56CEFED1EBC3D4F * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Predicate`1<UnityEngine.Vector4>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_mE3C5BCB951458F3F4DCC169602F61696271D703F_gshared (Predicate_1_tE53B3E1A17705A6185547CF352AD3E33938E2C94 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Boolean System.Predicate`1<UnityEngine.Vector4>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mCD63A0310703CFF67B7859482E52FCAA6025FD46_gshared (Predicate_1_tE53B3E1A17705A6185547CF352AD3E33938E2C94 * __this, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___obj0, const RuntimeMethod* method) { bool result = false; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef bool (*FunctionPointerType) (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___obj0, targetMethod); } else { // closed typedef bool (*FunctionPointerType) (void*, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< bool, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E >::Invoke(targetMethod, targetThis, ___obj0); else result = GenericVirtFuncInvoker1< bool, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E >::Invoke(targetMethod, targetThis, ___obj0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< bool, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___obj0); else result = VirtFuncInvoker1< bool, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___obj0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } if (targetThis == NULL) { typedef bool (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((RuntimeObject*)(reinterpret_cast<RuntimeObject*>(&___obj0) - 1), targetMethod); } else { typedef bool (*FunctionPointerType) (void*, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E , const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___obj0, targetMethod); } } } } return result; } // System.IAsyncResult System.Predicate`1<UnityEngine.Vector4>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Predicate_1_BeginInvoke_m9E4188794C168039A82A1C3D3B0CACE9837EE265_gshared (Predicate_1_tE53B3E1A17705A6185547CF352AD3E33938E2C94 * __this, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___obj0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Predicate_1_BeginInvoke_m9E4188794C168039A82A1C3D3B0CACE9837EE265_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[2] = {0}; __d_args[0] = Box(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_il2cpp_TypeInfo_var, &___obj0); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Boolean System.Predicate`1<UnityEngine.Vector4>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Predicate_1_EndInvoke_m9B268D3752C0D5480B74025E5B3EE4A710948BAB_gshared (Predicate_1_tE53B3E1A17705A6185547CF352AD3E33938E2C94 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return *(bool*)UnBox ((RuntimeObject*)__result); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Reflection.MonoProperty_Getter`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Getter_2__ctor_mFCB238C2E7BEB8B1084B5B53A0DE3B1A056E8223_gshared (Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // R System.Reflection.MonoProperty_Getter`2<System.Object,System.Object>::Invoke(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Getter_2_Invoke_mF0B3382E520C56EBAECC8E295917348D36D59D81_gshared (Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C * __this, RuntimeObject * ____this0, const RuntimeMethod* method) { RuntimeObject * result = NULL; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(____this0, targetMethod); } else { // closed typedef RuntimeObject * (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ____this0, targetMethod); } } else if (___parameterCount != 1) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ____this0); else result = GenericVirtFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ____this0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ____this0); else result = VirtFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ____this0); } } else { typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(____this0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ____this0); else result = GenericVirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ____this0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ____this0); else result = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ____this0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(____this0) - 1), targetMethod); } if (targetThis == NULL) { typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(____this0, targetMethod); } else { typedef RuntimeObject * (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ____this0, targetMethod); } } } } return result; } // System.IAsyncResult System.Reflection.MonoProperty_Getter`2<System.Object,System.Object>::BeginInvoke(T,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Getter_2_BeginInvoke_m739DBB8C918C376799A15EE52CCA2947306B356F_gshared (Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C * __this, RuntimeObject * ____this0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ____this0; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // R System.Reflection.MonoProperty_Getter`2<System.Object,System.Object>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Getter_2_EndInvoke_mB033DC1302085C235B59B276FBB2B96E6060AD3D_gshared (Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return (RuntimeObject *)__result; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Reflection.MonoProperty_StaticGetter`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StaticGetter_1__ctor_m754B378F044B24E4C0C2362A2862D34704C41EF3_gshared (StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // R System.Reflection.MonoProperty_StaticGetter`1<System.Object>::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StaticGetter_1_Invoke_m727E4B50DE0086CBCC12140056A801BEAE236E94_gshared (StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 * __this, const RuntimeMethod* method) { RuntimeObject * result = NULL; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 0) { // open typedef RuntimeObject * (*FunctionPointerType) (const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef RuntimeObject * (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, targetThis); else result = GenericVirtFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else result = VirtFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } else { typedef RuntimeObject * (*FunctionPointerType) (void*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } return result; } // System.IAsyncResult System.Reflection.MonoProperty_StaticGetter`1<System.Object>::BeginInvoke(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StaticGetter_1_BeginInvoke_mEEB9D15BC7C235A68FADA302726E82A31E392FB7_gshared (StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 * __this, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method) { void *__d_args[1] = {0}; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1); } // R System.Reflection.MonoProperty_StaticGetter`1<System.Object>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StaticGetter_1_EndInvoke_mE35E49CC836678C56978457E3C583401DBBBA61A_gshared (StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return (RuntimeObject *)__result; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE AsyncTaskMethodBuilder_1_Create_mEB49F32EAEB3E6C469F3A1194FBC34CD1D91CBBF_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Create_mEB49F32EAEB3E6C469F3A1194FBC34CD1D91CBBF_MetadataUsageId); s_Il2CppMethodInitialized = true; } AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_Create_mEB49F32EAEB3E6C469F3A1194FBC34CD1D91CBBF_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE )); AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE L_0 = V_0; return (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE )L_0; } } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m6C16FFAECC8CE76F82289A87141A9524F5B09C60_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetStateMachine_m6C16FFAECC8CE76F82289A87141A9524F5B09C60_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetStateMachine_m6C16FFAECC8CE76F82289A87141A9524F5B09C60_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * L_0 = (AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 *)__this->get_address_of_m_coreState_1(); RuntimeObject* L_1 = ___stateMachine0; AsyncMethodBuilderCore_SetStateMachine_m92D9A4AB24A2502F03512F543EA5F7C39A5336B6((AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 *)(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 *)L_0, (RuntimeObject*)L_1, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetStateMachine_m6C16FFAECC8CE76F82289A87141A9524F5B09C60_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *>(__this + _offset); AsyncTaskMethodBuilder_1_SetStateMachine_m6C16FFAECC8CE76F82289A87141A9524F5B09C60(_thisAdjusted, ___stateMachine0, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::get_Task() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * AsyncTaskMethodBuilder_1_get_Task_mE71F3C1D2587BE90812781280F0175E9CE14BA66_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_get_Task_mE71F3C1D2587BE90812781280F0175E9CE14BA66_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_get_Task_mE71F3C1D2587BE90812781280F0175E9CE14BA66_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this->get_m_task_2(); V_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_0; Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_1 = V_0; if (L_1) { goto IL_0017; } } { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_2 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)); (( void (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_3 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_2; V_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_3; __this->set_m_task_2(L_3); } IL_0017: { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_4 = V_0; return (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_4; } } IL2CPP_EXTERN_C Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * AsyncTaskMethodBuilder_1_get_Task_mE71F3C1D2587BE90812781280F0175E9CE14BA66_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *>(__this + _offset); return AsyncTaskMethodBuilder_1_get_Task_mE71F3C1D2587BE90812781280F0175E9CE14BA66(_thisAdjusted, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, bool ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this->get_m_task_2(); V_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_0; Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_1 = V_0; if (L_1) { goto IL_0018; } } { bool L_2 = ___result0; Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_3 = AsyncTaskMethodBuilder_1_GetTaskForResult_mBCC369A6A2330CE1DA71FF770CF128EF6C5CB7F1((AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *)(AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *)__this, (bool)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); __this->set_m_task_2(L_3); return; } IL_0018: { bool L_4 = AsyncCausalityTracer_get_LoggingOn_m1A633E7FCD4DF7D870FFF917FDCDBEDAF24725B7(/*hidden argument*/NULL); if (!L_4) { goto IL_002c; } } { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_5 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_5); int32_t L_6 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_5, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m63C07B707D3034D2F0F4B395636B410ACC9A78D6((int32_t)0, (int32_t)L_6, (int32_t)1, /*hidden argument*/NULL); } IL_002c: { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); bool L_7 = ((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields*)il2cpp_codegen_static_fields_for(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_7) { goto IL_003e; } } { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_8 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_8); int32_t L_9 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_8, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_RemoveFromActiveTasks_mEDE131DB4C29D967D6D717CAB002C6C02583BDF5((int32_t)L_9, /*hidden argument*/NULL); } IL_003e: { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_10 = V_0; bool L_11 = ___result0; NullCheck((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_10); bool L_12 = (( bool (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_10, (bool)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); if (L_12) { goto IL_0057; } } { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral67EC301691E7C5B5C5A5E425FA5E939BE5233688, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_14 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_14, (String_t*)L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F_RuntimeMethod_var); } IL_0057: { return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F_AdjustorThunk (RuntimeObject * __this, bool ___result0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *>(__this + _offset); AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F(_thisAdjusted, ___result0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetResult(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m18ACA0FEA9C22741AE3229F64EFCD66E2DE7ED16_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___completedTask0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetResult_m18ACA0FEA9C22741AE3229F64EFCD66E2DE7ED16_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetResult_m18ACA0FEA9C22741AE3229F64EFCD66E2DE7ED16_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this->get_m_task_2(); if (L_0) { goto IL_0010; } } { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_1 = ___completedTask0; __this->set_m_task_2(L_1); return; } IL_0010: { il2cpp_codegen_initobj((&V_0), sizeof(bool)); bool L_2 = V_0; AsyncTaskMethodBuilder_1_SetResult_mCF07BE7A4F16080B49751FF5A4159E2ADDAC723F((AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *)(AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *)__this, (bool)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetResult_m18ACA0FEA9C22741AE3229F64EFCD66E2DE7ED16_AdjustorThunk (RuntimeObject * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___completedTask0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *>(__this + _offset); AsyncTaskMethodBuilder_1_SetResult_m18ACA0FEA9C22741AE3229F64EFCD66E2DE7ED16(_thisAdjusted, ___completedTask0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::SetException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, Exception_t * ___exception0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * V_0 = NULL; OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * V_1 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; bool G_B7_0 = false; { 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, AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18_RuntimeMethod_var); } IL_000e: { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_2 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this->get_m_task_2(); V_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_2; Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_3 = V_0; if (L_3) { goto IL_001f; } } { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_4 = AsyncTaskMethodBuilder_1_get_Task_mE71F3C1D2587BE90812781280F0175E9CE14BA66((AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *)(AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); V_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_4; } IL_001f: { Exception_t * L_5 = ___exception0; V_1 = (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)IsInst((RuntimeObject*)L_5, OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var)); OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_6 = V_1; if (L_6) { goto IL_0032; } } { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_7 = V_0; Exception_t * L_8 = ___exception0; NullCheck((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_7); bool L_9 = (( bool (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); G_B7_0 = L_9; goto IL_003f; } IL_0032: { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_10 = V_0; OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_11 = V_1; NullCheck((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_11); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_12 = OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66_inline((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_11, /*hidden argument*/NULL); OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_13 = V_1; NullCheck((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_10); bool L_14 = (( bool (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)->methodPointer)((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_10, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)); G_B7_0 = L_14; } IL_003f: { if (G_B7_0) { goto IL_0051; } } { String_t* L_15 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral67EC301691E7C5B5C5A5E425FA5E939BE5233688, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_16 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_16, (String_t*)L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18_RuntimeMethod_var); } IL_0051: { return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18_AdjustorThunk (RuntimeObject * __this, Exception_t * ___exception0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *>(__this + _offset); AsyncTaskMethodBuilder_1_SetException_m21285A09F0A9D6C0F245EB498300064F66DAAF18(_thisAdjusted, ___exception0, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::GetTaskForResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * AsyncTaskMethodBuilder_1_GetTaskForResult_mBCC369A6A2330CE1DA71FF770CF128EF6C5CB7F1_gshared (AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * __this, bool ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_GetTaskForResult_mBCC369A6A2330CE1DA71FF770CF128EF6C5CB7F1_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_GetTaskForResult_mBCC369A6A2330CE1DA71FF770CF128EF6C5CB7F1_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * G_B5_0 = NULL; { il2cpp_codegen_initobj((&V_0), sizeof(bool)); } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_1, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_004d; } } { bool L_6 = ___result0; bool L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_7); if (((*(bool*)((bool*)UnBox(L_8, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))))) { goto IL_0042; } } { IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_9 = ((AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var))->get_FalseTask_1(); G_B5_0 = L_9; goto IL_0047; } IL_0042: { IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_10 = ((AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var))->get_TrueTask_0(); G_B5_0 = L_10; } IL_0047: { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_11 = (( Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((RuntimeObject *)G_B5_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_11; } IL_004d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0092; } } { bool L_17 = ___result0; bool L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_18); V_1 = (int32_t)((*(int32_t*)((int32_t*)UnBox(L_19, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))); int32_t L_20 = V_1; if ((((int32_t)L_20) >= ((int32_t)((int32_t)9)))) { goto IL_028e; } } { int32_t L_21 = V_1; if ((((int32_t)L_21) < ((int32_t)(-1)))) { goto IL_028e; } } { IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20* L_22 = ((AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var))->get_Int32Tasks_2(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)(-1))); Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_25 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)(L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24)); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_26 = (( Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((RuntimeObject *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_26; } IL_0092: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_27, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL); bool L_31 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_28, (Type_t *)L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_00bd; } } { bool L_32 = ___result0; bool L_33 = L_32; RuntimeObject * L_34 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_33); if (!((*(uint32_t*)((uint32_t*)UnBox(L_34, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_00bd: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_35, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_37 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_38 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_37, /*hidden argument*/NULL); bool L_39 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_36, (Type_t *)L_38, /*hidden argument*/NULL); if (!L_39) { goto IL_00e8; } } { bool L_40 = ___result0; bool L_41 = L_40; RuntimeObject * L_42 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_41); if (!((*(uint8_t*)((uint8_t*)UnBox(L_42, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_00e8: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_43 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_43, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_45 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; Type_t * L_46 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_45, /*hidden argument*/NULL); bool L_47 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_44, (Type_t *)L_46, /*hidden argument*/NULL); if (!L_47) { goto IL_0113; } } { bool L_48 = ___result0; bool L_49 = L_48; RuntimeObject * L_50 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_49); if (!((*(int8_t*)((int8_t*)UnBox(L_50, SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_0113: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_51 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_52 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_51, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); bool L_55 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_52, (Type_t *)L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_013e; } } { bool L_56 = ___result0; bool L_57 = L_56; RuntimeObject * L_58 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_57); if (!((*(Il2CppChar*)((Il2CppChar*)UnBox(L_58, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_013e: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_59 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_60 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_59, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); bool L_63 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_60, (Type_t *)L_62, /*hidden argument*/NULL); if (!L_63) { goto IL_0173; } } { IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_64 = ((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var))->get_Zero_7(); bool L_65 = ___result0; bool L_66 = L_65; RuntimeObject * L_67 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_66); bool L_68 = Decimal_op_Equality_mD69422DB0011607747F9D778C5409FBE732E4BDB((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_64, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )((*(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)UnBox(L_67, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if (L_68) { goto IL_027a; } } IL_0173: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_69 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_70 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_69, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_71 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_72 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_71, /*hidden argument*/NULL); bool L_73 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_70, (Type_t *)L_72, /*hidden argument*/NULL); if (!L_73) { goto IL_019e; } } { bool L_74 = ___result0; bool L_75 = L_74; RuntimeObject * L_76 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_75); if (!((*(int64_t*)((int64_t*)UnBox(L_76, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_019e: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_77 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_78 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_77, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_79 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_80 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_79, /*hidden argument*/NULL); bool L_81 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_78, (Type_t *)L_80, /*hidden argument*/NULL); if (!L_81) { goto IL_01c9; } } { bool L_82 = ___result0; bool L_83 = L_82; RuntimeObject * L_84 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_83); if (!((*(uint64_t*)((uint64_t*)UnBox(L_84, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_01c9: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_85 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_86 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_85, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_87 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; Type_t * L_88 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_87, /*hidden argument*/NULL); bool L_89 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_86, (Type_t *)L_88, /*hidden argument*/NULL); if (!L_89) { goto IL_01f4; } } { bool L_90 = ___result0; bool L_91 = L_90; RuntimeObject * L_92 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_91); if (!((*(int16_t*)((int16_t*)UnBox(L_92, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_01f4: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_93 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_94 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_93, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_95 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; Type_t * L_96 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_95, /*hidden argument*/NULL); bool L_97 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_94, (Type_t *)L_96, /*hidden argument*/NULL); if (!L_97) { goto IL_021c; } } { bool L_98 = ___result0; bool L_99 = L_98; RuntimeObject * L_100 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_99); if (!((*(uint16_t*)((uint16_t*)UnBox(L_100, UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_021c: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_101 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_102 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_101, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_103 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) }; Type_t * L_104 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_103, /*hidden argument*/NULL); bool L_105 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_102, (Type_t *)L_104, /*hidden argument*/NULL); if (!L_105) { goto IL_024b; } } { bool L_106 = ___result0; bool L_107 = L_106; RuntimeObject * L_108 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_107); bool L_109 = IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934((intptr_t)(((intptr_t)0)), (intptr_t)((*(intptr_t*)((intptr_t*)UnBox(L_108, IntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if (L_109) { goto IL_027a; } } IL_024b: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_110 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_111 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_110, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_112 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) }; Type_t * L_113 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_112, /*hidden argument*/NULL); bool L_114 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_111, (Type_t *)L_113, /*hidden argument*/NULL); if (!L_114) { goto IL_028e; } } { bool L_115 = ___result0; bool L_116 = L_115; RuntimeObject * L_117 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_116); IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var); bool L_118 = UIntPtr_op_Equality_m69F127E2A7A8BA5676D14FB08B52F6A6E83794B1((uintptr_t)(((uintptr_t)0)), (uintptr_t)((*(uintptr_t*)((uintptr_t*)UnBox(L_117, UIntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if (!L_118) { goto IL_028e; } } IL_027a: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_119 = ((AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)))->get_s_defaultResultTask_0(); return (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_119; } IL_0280: { goto IL_028e; } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_121 = ((AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)))->get_s_defaultResultTask_0(); return (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_121; } IL_028e: { bool L_122 = ___result0; Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_123 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)); (( void (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)->methodPointer)(L_123, (bool)L_122, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)); return (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_123; } } IL2CPP_EXTERN_C Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * AsyncTaskMethodBuilder_1_GetTaskForResult_mBCC369A6A2330CE1DA71FF770CF128EF6C5CB7F1_AdjustorThunk (RuntimeObject * __this, bool ___result0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE *>(__this + _offset); return AsyncTaskMethodBuilder_1_GetTaskForResult_mBCC369A6A2330CE1DA71FF770CF128EF6C5CB7F1(_thisAdjusted, ___result0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1__cctor_m7318198C05AD1334E137A3EEFD06FED8349CC66B_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1__cctor_m7318198C05AD1334E137A3EEFD06FED8349CC66B_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1__cctor_m7318198C05AD1334E137A3EEFD06FED8349CC66B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(bool)); bool L_0 = V_0; IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_1 = (( Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * (*) (bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); ((AsyncTaskMethodBuilder_1_t37B8301A93B487253B9622D00C44195BE042E4BE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)))->set_s_defaultResultTask_0(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 AsyncTaskMethodBuilder_1_Create_mC7806A5C115ED2239A5073313AA3564D8244156E_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Create_mC7806A5C115ED2239A5073313AA3564D8244156E_MetadataUsageId); s_Il2CppMethodInitialized = true; } AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_Create_mC7806A5C115ED2239A5073313AA3564D8244156E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 )); AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 L_0 = V_0; return (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 )L_0; } } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * L_0 = (AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 *)__this->get_address_of_m_coreState_1(); RuntimeObject* L_1 = ___stateMachine0; AsyncMethodBuilderCore_SetStateMachine_m92D9A4AB24A2502F03512F543EA5F7C39A5336B6((AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 *)(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 *)L_0, (RuntimeObject*)L_1, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *>(__this + _offset); AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C(_thisAdjusted, ___stateMachine0, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_2(); V_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_0; Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_1 = V_0; if (L_1) { goto IL_0017; } } { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_2 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)); (( void (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_3 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_2; V_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_3; __this->set_m_task_2(L_3); } IL_0017: { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_4 = V_0; return (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_4; } } IL2CPP_EXTERN_C Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *>(__this + _offset); return AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA(_thisAdjusted, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_2(); V_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_0; Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_1 = V_0; if (L_1) { goto IL_0018; } } { RuntimeObject * L_2 = ___result0; Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_3 = AsyncTaskMethodBuilder_1_GetTaskForResult_m25C4063D490D0AD29E9EB9BFB2973A4DC15D9408((AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *)(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *)__this, (RuntimeObject *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); __this->set_m_task_2(L_3); return; } IL_0018: { bool L_4 = AsyncCausalityTracer_get_LoggingOn_m1A633E7FCD4DF7D870FFF917FDCDBEDAF24725B7(/*hidden argument*/NULL); if (!L_4) { goto IL_002c; } } { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_5 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_5); int32_t L_6 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_5, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m63C07B707D3034D2F0F4B395636B410ACC9A78D6((int32_t)0, (int32_t)L_6, (int32_t)1, /*hidden argument*/NULL); } IL_002c: { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); bool L_7 = ((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields*)il2cpp_codegen_static_fields_for(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_7) { goto IL_003e; } } { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_8 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_8); int32_t L_9 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_8, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_RemoveFromActiveTasks_mEDE131DB4C29D967D6D717CAB002C6C02583BDF5((int32_t)L_9, /*hidden argument*/NULL); } IL_003e: { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_10 = V_0; RuntimeObject * L_11 = ___result0; NullCheck((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_10); bool L_12 = (( bool (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_10, (RuntimeObject *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); if (L_12) { goto IL_0057; } } { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral67EC301691E7C5B5C5A5E425FA5E939BE5233688, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_14 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_14, (String_t*)L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB_RuntimeMethod_var); } IL_0057: { return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *>(__this + _offset); AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB(_thisAdjusted, ___result0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mCCBBC85BA750240E46519BDDA6301130646CA4BB_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___completedTask0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetResult_mCCBBC85BA750240E46519BDDA6301130646CA4BB_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetResult_mCCBBC85BA750240E46519BDDA6301130646CA4BB_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_2(); if (L_0) { goto IL_0010; } } { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_1 = ___completedTask0; __this->set_m_task_2(L_1); return; } IL_0010: { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_2 = V_0; AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB((AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *)(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *)__this, (RuntimeObject *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetResult_mCCBBC85BA750240E46519BDDA6301130646CA4BB_AdjustorThunk (RuntimeObject * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___completedTask0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *>(__this + _offset); AsyncTaskMethodBuilder_1_SetResult_mCCBBC85BA750240E46519BDDA6301130646CA4BB(_thisAdjusted, ___completedTask0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, Exception_t * ___exception0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * V_0 = NULL; OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * V_1 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; bool G_B7_0 = false; { 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, AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_RuntimeMethod_var); } IL_000e: { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_2 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_2(); V_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_2; Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_3 = V_0; if (L_3) { goto IL_001f; } } { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_4 = AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA((AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *)(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); V_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_4; } IL_001f: { Exception_t * L_5 = ___exception0; V_1 = (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)IsInst((RuntimeObject*)L_5, OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var)); OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_6 = V_1; if (L_6) { goto IL_0032; } } { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_7 = V_0; Exception_t * L_8 = ___exception0; NullCheck((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_7); bool L_9 = (( bool (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); G_B7_0 = L_9; goto IL_003f; } IL_0032: { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_10 = V_0; OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_11 = V_1; NullCheck((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_11); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_12 = OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66_inline((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_11, /*hidden argument*/NULL); OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_13 = V_1; NullCheck((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_10); bool L_14 = (( bool (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)->methodPointer)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_10, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)); G_B7_0 = L_14; } IL_003f: { if (G_B7_0) { goto IL_0051; } } { String_t* L_15 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral67EC301691E7C5B5C5A5E425FA5E939BE5233688, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_16 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_16, (String_t*)L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_RuntimeMethod_var); } IL_0051: { return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_AdjustorThunk (RuntimeObject * __this, Exception_t * ___exception0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *>(__this + _offset); AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D(_thisAdjusted, ___exception0, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::GetTaskForResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * AsyncTaskMethodBuilder_1_GetTaskForResult_m25C4063D490D0AD29E9EB9BFB2973A4DC15D9408_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_GetTaskForResult_m25C4063D490D0AD29E9EB9BFB2973A4DC15D9408_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; int32_t V_1 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_GetTaskForResult_m25C4063D490D0AD29E9EB9BFB2973A4DC15D9408_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * G_B5_0 = NULL; { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_0 = V_0; if (!L_0) { goto IL_0280; } } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_1, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_004d; } } { RuntimeObject * L_6 = ___result0; if (((*(bool*)((bool*)UnBox(L_6, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))))) { goto IL_0042; } } { IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_7 = ((AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var))->get_FalseTask_1(); G_B5_0 = L_7; goto IL_0047; } IL_0042: { IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_8 = ((AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var))->get_TrueTask_0(); G_B5_0 = L_8; } IL_0047: { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_9 = (( Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((RuntimeObject *)G_B5_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_9; } IL_004d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_10, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); bool L_14 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_11, (Type_t *)L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0092; } } { RuntimeObject * L_15 = ___result0; V_1 = (int32_t)((*(int32_t*)((int32_t*)UnBox(L_15, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))); int32_t L_16 = V_1; if ((((int32_t)L_16) >= ((int32_t)((int32_t)9)))) { goto IL_028e; } } { int32_t L_17 = V_1; if ((((int32_t)L_17) < ((int32_t)(-1)))) { goto IL_028e; } } { IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20* L_18 = ((AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var))->get_Int32Tasks_2(); int32_t L_19 = V_1; NullCheck(L_18); int32_t L_20 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)(-1))); Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_21 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)(L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20)); Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_22 = (( Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((RuntimeObject *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_22; } IL_0092: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_23, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_25 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_26 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_25, /*hidden argument*/NULL); bool L_27 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_24, (Type_t *)L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_00bd; } } { RuntimeObject * L_28 = ___result0; if (!((*(uint32_t*)((uint32_t*)UnBox(L_28, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_00bd: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_31, /*hidden argument*/NULL); bool L_33 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_30, (Type_t *)L_32, /*hidden argument*/NULL); if (!L_33) { goto IL_00e8; } } { RuntimeObject * L_34 = ___result0; if (!((*(uint8_t*)((uint8_t*)UnBox(L_34, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_00e8: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_35, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_37 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; Type_t * L_38 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_37, /*hidden argument*/NULL); bool L_39 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_36, (Type_t *)L_38, /*hidden argument*/NULL); if (!L_39) { goto IL_0113; } } { RuntimeObject * L_40 = ___result0; if (!((*(int8_t*)((int8_t*)UnBox(L_40, SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_0113: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_41 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_42 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_41, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_43 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; Type_t * L_44 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_43, /*hidden argument*/NULL); bool L_45 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_42, (Type_t *)L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_013e; } } { RuntimeObject * L_46 = ___result0; if (!((*(Il2CppChar*)((Il2CppChar*)UnBox(L_46, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_013e: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_47 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_48 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_47, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_49 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_50 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_49, /*hidden argument*/NULL); bool L_51 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_48, (Type_t *)L_50, /*hidden argument*/NULL); if (!L_51) { goto IL_0173; } } { IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_52 = ((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var))->get_Zero_7(); RuntimeObject * L_53 = ___result0; bool L_54 = Decimal_op_Equality_mD69422DB0011607747F9D778C5409FBE732E4BDB((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_52, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )((*(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)UnBox(L_53, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if (L_54) { goto IL_027a; } } IL_0173: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_55 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_56 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_55, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_57 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_58 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_57, /*hidden argument*/NULL); bool L_59 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_56, (Type_t *)L_58, /*hidden argument*/NULL); if (!L_59) { goto IL_019e; } } { RuntimeObject * L_60 = ___result0; if (!((*(int64_t*)((int64_t*)UnBox(L_60, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_019e: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_63 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_64 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_63, /*hidden argument*/NULL); bool L_65 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_62, (Type_t *)L_64, /*hidden argument*/NULL); if (!L_65) { goto IL_01c9; } } { RuntimeObject * L_66 = ___result0; if (!((*(uint64_t*)((uint64_t*)UnBox(L_66, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_01c9: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_67 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_68 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_67, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_69 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; Type_t * L_70 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_69, /*hidden argument*/NULL); bool L_71 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_68, (Type_t *)L_70, /*hidden argument*/NULL); if (!L_71) { goto IL_01f4; } } { RuntimeObject * L_72 = ___result0; if (!((*(int16_t*)((int16_t*)UnBox(L_72, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_01f4: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_73 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_73, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_75 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; Type_t * L_76 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_75, /*hidden argument*/NULL); bool L_77 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_74, (Type_t *)L_76, /*hidden argument*/NULL); if (!L_77) { goto IL_021c; } } { RuntimeObject * L_78 = ___result0; if (!((*(uint16_t*)((uint16_t*)UnBox(L_78, UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_021c: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_79 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_80 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_79, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_81 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) }; Type_t * L_82 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_81, /*hidden argument*/NULL); bool L_83 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_80, (Type_t *)L_82, /*hidden argument*/NULL); if (!L_83) { goto IL_024b; } } { RuntimeObject * L_84 = ___result0; bool L_85 = IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934((intptr_t)(((intptr_t)0)), (intptr_t)((*(intptr_t*)((intptr_t*)UnBox(L_84, IntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if (L_85) { goto IL_027a; } } IL_024b: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_86 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_87 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_86, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_88 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) }; Type_t * L_89 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_88, /*hidden argument*/NULL); bool L_90 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_87, (Type_t *)L_89, /*hidden argument*/NULL); if (!L_90) { goto IL_028e; } } { RuntimeObject * L_91 = ___result0; IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var); bool L_92 = UIntPtr_op_Equality_m69F127E2A7A8BA5676D14FB08B52F6A6E83794B1((uintptr_t)(((uintptr_t)0)), (uintptr_t)((*(uintptr_t*)((uintptr_t*)UnBox(L_91, UIntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if (!L_92) { goto IL_028e; } } IL_027a: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)); Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_93 = ((AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)))->get_s_defaultResultTask_0(); return (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_93; } IL_0280: { RuntimeObject * L_94 = ___result0; if (L_94) { goto IL_028e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)); Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_95 = ((AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)))->get_s_defaultResultTask_0(); return (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_95; } IL_028e: { RuntimeObject * L_96 = ___result0; Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_97 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)); (( void (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)->methodPointer)(L_97, (RuntimeObject *)L_96, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)); return (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_97; } } IL2CPP_EXTERN_C Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * AsyncTaskMethodBuilder_1_GetTaskForResult_m25C4063D490D0AD29E9EB9BFB2973A4DC15D9408_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 *>(__this + _offset); return AsyncTaskMethodBuilder_1_GetTaskForResult_m25C4063D490D0AD29E9EB9BFB2973A4DC15D9408(_thisAdjusted, ___result0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1__cctor_m6D0EC8CE377BD097203676E3EA3BFD3B73CD2B3C_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1__cctor_m6D0EC8CE377BD097203676E3EA3BFD3B73CD2B3C_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1__cctor_m6D0EC8CE377BD097203676E3EA3BFD3B73CD2B3C_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_0 = V_0; IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_1 = (( Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); ((AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)))->set_s_defaultResultTask_0(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::Create() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 AsyncTaskMethodBuilder_1_Create_m57C91813D220D03A19EC2206F5595821E1DA9954_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_Create_m57C91813D220D03A19EC2206F5595821E1DA9954_MetadataUsageId); s_Il2CppMethodInitialized = true; } AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_Create_m57C91813D220D03A19EC2206F5595821E1DA9954_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 )); AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 L_0 = V_0; return (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 )L_0; } } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m69471716E68A2553BAA340A0A780CD6953E3ECD3_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetStateMachine_m69471716E68A2553BAA340A0A780CD6953E3ECD3_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetStateMachine_m69471716E68A2553BAA340A0A780CD6953E3ECD3_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * L_0 = (AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 *)__this->get_address_of_m_coreState_1(); RuntimeObject* L_1 = ___stateMachine0; AsyncMethodBuilderCore_SetStateMachine_m92D9A4AB24A2502F03512F543EA5F7C39A5336B6((AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 *)(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 *)L_0, (RuntimeObject*)L_1, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetStateMachine_m69471716E68A2553BAA340A0A780CD6953E3ECD3_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *>(__this + _offset); AsyncTaskMethodBuilder_1_SetStateMachine_m69471716E68A2553BAA340A0A780CD6953E3ECD3(_thisAdjusted, ___stateMachine0, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::get_Task() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * AsyncTaskMethodBuilder_1_get_Task_mB90A654E7FBAE31DB64597AA0B3B5ED3712E2966_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_get_Task_mB90A654E7FBAE31DB64597AA0B3B5ED3712E2966_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_get_Task_mB90A654E7FBAE31DB64597AA0B3B5ED3712E2966_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)__this->get_m_task_2(); V_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_0; Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_1 = V_0; if (L_1) { goto IL_0017; } } { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_2 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)); (( void (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_3 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_2; V_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_3; __this->set_m_task_2(L_3); } IL_0017: { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_4 = V_0; return (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_4; } } IL2CPP_EXTERN_C Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * AsyncTaskMethodBuilder_1_get_Task_mB90A654E7FBAE31DB64597AA0B3B5ED3712E2966_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *>(__this + _offset); return AsyncTaskMethodBuilder_1_get_Task_mB90A654E7FBAE31DB64597AA0B3B5ED3712E2966(_thisAdjusted, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)__this->get_m_task_2(); V_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_0; Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_1 = V_0; if (L_1) { goto IL_0018; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_2 = ___result0; Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_3 = AsyncTaskMethodBuilder_1_GetTaskForResult_m5CF1A462822DB26CF310955638395584F9057E09((AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *)(AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *)__this, (VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)); __this->set_m_task_2(L_3); return; } IL_0018: { bool L_4 = AsyncCausalityTracer_get_LoggingOn_m1A633E7FCD4DF7D870FFF917FDCDBEDAF24725B7(/*hidden argument*/NULL); if (!L_4) { goto IL_002c; } } { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_5 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_5); int32_t L_6 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_5, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m63C07B707D3034D2F0F4B395636B410ACC9A78D6((int32_t)0, (int32_t)L_6, (int32_t)1, /*hidden argument*/NULL); } IL_002c: { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); bool L_7 = ((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields*)il2cpp_codegen_static_fields_for(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_7) { goto IL_003e; } } { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_8 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_8); int32_t L_9 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_8, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_RemoveFromActiveTasks_mEDE131DB4C29D967D6D717CAB002C6C02583BDF5((int32_t)L_9, /*hidden argument*/NULL); } IL_003e: { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_10 = V_0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_11 = ___result0; NullCheck((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_10); bool L_12 = (( bool (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)->methodPointer)((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_10, (VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4)); if (L_12) { goto IL_0057; } } { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral67EC301691E7C5B5C5A5E425FA5E939BE5233688, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_14 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_14, (String_t*)L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483_RuntimeMethod_var); } IL_0057: { return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483_AdjustorThunk (RuntimeObject * __this, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___result0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *>(__this + _offset); AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483(_thisAdjusted, ___result0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetResult(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mBD219CF220624C992AC67B976E3D8DCE381DF027_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___completedTask0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetResult_mBD219CF220624C992AC67B976E3D8DCE381DF027_MetadataUsageId); s_Il2CppMethodInitialized = true; } VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetResult_mBD219CF220624C992AC67B976E3D8DCE381DF027_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)__this->get_m_task_2(); if (L_0) { goto IL_0010; } } { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_1 = ___completedTask0; __this->set_m_task_2(L_1); return; } IL_0010: { il2cpp_codegen_initobj((&V_0), sizeof(VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )); VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_2 = V_0; AsyncTaskMethodBuilder_1_SetResult_m1037A5B2C8B49986E400317DCA7F10221E79B483((AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *)(AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *)__this, (VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 5)); return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetResult_mBD219CF220624C992AC67B976E3D8DCE381DF027_AdjustorThunk (RuntimeObject * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___completedTask0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *>(__this + _offset); AsyncTaskMethodBuilder_1_SetResult_mBD219CF220624C992AC67B976E3D8DCE381DF027(_thisAdjusted, ___completedTask0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::SetException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, Exception_t * ___exception0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * V_0 = NULL; OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * V_1 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; bool G_B7_0 = false; { 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, AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315_RuntimeMethod_var); } IL_000e: { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_2 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)__this->get_m_task_2(); V_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_2; Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_3 = V_0; if (L_3) { goto IL_001f; } } { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_4 = AsyncTaskMethodBuilder_1_get_Task_mB90A654E7FBAE31DB64597AA0B3B5ED3712E2966((AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *)(AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); V_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_4; } IL_001f: { Exception_t * L_5 = ___exception0; V_1 = (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)IsInst((RuntimeObject*)L_5, OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var)); OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_6 = V_1; if (L_6) { goto IL_0032; } } { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_7 = V_0; Exception_t * L_8 = ___exception0; NullCheck((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_7); bool L_9 = (( bool (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)->methodPointer)((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 6)); G_B7_0 = L_9; goto IL_003f; } IL_0032: { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_10 = V_0; OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_11 = V_1; NullCheck((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_11); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_12 = OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66_inline((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)L_11, /*hidden argument*/NULL); OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_13 = V_1; NullCheck((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_10); bool L_14 = (( bool (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)->methodPointer)((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_10, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_12, (RuntimeObject *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 7)); G_B7_0 = L_14; } IL_003f: { if (G_B7_0) { goto IL_0051; } } { String_t* L_15 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral67EC301691E7C5B5C5A5E425FA5E939BE5233688, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_16 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_16, (String_t*)L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315_RuntimeMethod_var); } IL_0051: { return; } } IL2CPP_EXTERN_C void AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315_AdjustorThunk (RuntimeObject * __this, Exception_t * ___exception0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *>(__this + _offset); AsyncTaskMethodBuilder_1_SetException_m8CC12F7B6A27AFFE39709338214C83162CF8D315(_thisAdjusted, ___exception0, method); } // System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::GetTaskForResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * AsyncTaskMethodBuilder_1_GetTaskForResult_m5CF1A462822DB26CF310955638395584F9057E09_gshared (AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * __this, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1_GetTaskForResult_m5CF1A462822DB26CF310955638395584F9057E09_MetadataUsageId); s_Il2CppMethodInitialized = true; } VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1_GetTaskForResult_m5CF1A462822DB26CF310955638395584F9057E09_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * G_B5_0 = NULL; { il2cpp_codegen_initobj((&V_0), sizeof(VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )); } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_1, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_3, /*hidden argument*/NULL); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_2, (Type_t *)L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_004d; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_6 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_7 = L_6; RuntimeObject * L_8 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_7); if (((*(bool*)((bool*)UnBox(L_8, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))))) { goto IL_0042; } } { IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_9 = ((AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var))->get_FalseTask_1(); G_B5_0 = L_9; goto IL_0047; } IL_0042: { IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_10 = ((AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var))->get_TrueTask_0(); G_B5_0 = L_10; } IL_0047: { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_11 = (( Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((RuntimeObject *)G_B5_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_11; } IL_004d: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_12, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_14, /*hidden argument*/NULL); bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_13, (Type_t *)L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0092; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_17 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_18 = L_17; RuntimeObject * L_19 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_18); V_1 = (int32_t)((*(int32_t*)((int32_t*)UnBox(L_19, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))); int32_t L_20 = V_1; if ((((int32_t)L_20) >= ((int32_t)((int32_t)9)))) { goto IL_028e; } } { int32_t L_21 = V_1; if ((((int32_t)L_21) < ((int32_t)(-1)))) { goto IL_028e; } } { IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20* L_22 = ((AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields*)il2cpp_codegen_static_fields_for(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var))->get_Int32Tasks_2(); int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)(-1))); Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_25 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)(L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24)); Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_26 = (( Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * (*) (RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)->methodPointer)((RuntimeObject *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_26; } IL_0092: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_27, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_29, /*hidden argument*/NULL); bool L_31 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_28, (Type_t *)L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_00bd; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_32 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_33 = L_32; RuntimeObject * L_34 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_33); if (!((*(uint32_t*)((uint32_t*)UnBox(L_34, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_00bd: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_35 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_36 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_35, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_37 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_38 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_37, /*hidden argument*/NULL); bool L_39 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_36, (Type_t *)L_38, /*hidden argument*/NULL); if (!L_39) { goto IL_00e8; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_40 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_41 = L_40; RuntimeObject * L_42 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_41); if (!((*(uint8_t*)((uint8_t*)UnBox(L_42, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_00e8: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_43 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_43, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_45 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; Type_t * L_46 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_45, /*hidden argument*/NULL); bool L_47 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_44, (Type_t *)L_46, /*hidden argument*/NULL); if (!L_47) { goto IL_0113; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_48 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_49 = L_48; RuntimeObject * L_50 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_49); if (!((*(int8_t*)((int8_t*)UnBox(L_50, SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_0113: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_51 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_52 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_51, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_53 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; Type_t * L_54 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_53, /*hidden argument*/NULL); bool L_55 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_52, (Type_t *)L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_013e; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_56 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_57 = L_56; RuntimeObject * L_58 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_57); if (!((*(Il2CppChar*)((Il2CppChar*)UnBox(L_58, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_013e: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_59 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_60 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_59, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_61 = { reinterpret_cast<intptr_t> (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_0_0_0_var) }; Type_t * L_62 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_61, /*hidden argument*/NULL); bool L_63 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_60, (Type_t *)L_62, /*hidden argument*/NULL); if (!L_63) { goto IL_0173; } } { IL2CPP_RUNTIME_CLASS_INIT(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_64 = ((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var))->get_Zero_7(); VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_65 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_66 = L_65; RuntimeObject * L_67 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_66); bool L_68 = Decimal_op_Equality_mD69422DB0011607747F9D778C5409FBE732E4BDB((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )L_64, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 )((*(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)UnBox(L_67, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if (L_68) { goto IL_027a; } } IL_0173: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_69 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_70 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_69, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_71 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; Type_t * L_72 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_71, /*hidden argument*/NULL); bool L_73 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_70, (Type_t *)L_72, /*hidden argument*/NULL); if (!L_73) { goto IL_019e; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_74 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_75 = L_74; RuntimeObject * L_76 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_75); if (!((*(int64_t*)((int64_t*)UnBox(L_76, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_019e: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_77 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_78 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_77, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_79 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; Type_t * L_80 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_79, /*hidden argument*/NULL); bool L_81 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_78, (Type_t *)L_80, /*hidden argument*/NULL); if (!L_81) { goto IL_01c9; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_82 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_83 = L_82; RuntimeObject * L_84 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_83); if (!((*(uint64_t*)((uint64_t*)UnBox(L_84, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_01c9: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_85 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_86 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_85, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_87 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; Type_t * L_88 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_87, /*hidden argument*/NULL); bool L_89 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_86, (Type_t *)L_88, /*hidden argument*/NULL); if (!L_89) { goto IL_01f4; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_90 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_91 = L_90; RuntimeObject * L_92 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_91); if (!((*(int16_t*)((int16_t*)UnBox(L_92, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_01f4: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_93 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_94 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_93, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_95 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; Type_t * L_96 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_95, /*hidden argument*/NULL); bool L_97 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_94, (Type_t *)L_96, /*hidden argument*/NULL); if (!L_97) { goto IL_021c; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_98 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_99 = L_98; RuntimeObject * L_100 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_99); if (!((*(uint16_t*)((uint16_t*)UnBox(L_100, UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var))))) { goto IL_027a; } } IL_021c: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_101 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_102 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_101, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_103 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) }; Type_t * L_104 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_103, /*hidden argument*/NULL); bool L_105 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_102, (Type_t *)L_104, /*hidden argument*/NULL); if (!L_105) { goto IL_024b; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_106 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_107 = L_106; RuntimeObject * L_108 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_107); bool L_109 = IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934((intptr_t)(((intptr_t)0)), (intptr_t)((*(intptr_t*)((intptr_t*)UnBox(L_108, IntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if (L_109) { goto IL_027a; } } IL_024b: { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_110 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(InitializedTypeInfo(method->klass)->rgctx_data, 9)) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_111 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_110, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_112 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) }; Type_t * L_113 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_112, /*hidden argument*/NULL); bool L_114 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8((Type_t *)L_111, (Type_t *)L_113, /*hidden argument*/NULL); if (!L_114) { goto IL_028e; } } { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_115 = ___result0; VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_116 = L_115; RuntimeObject * L_117 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 8), &L_116); IL2CPP_RUNTIME_CLASS_INIT(UIntPtr_t_il2cpp_TypeInfo_var); bool L_118 = UIntPtr_op_Equality_m69F127E2A7A8BA5676D14FB08B52F6A6E83794B1((uintptr_t)(((uintptr_t)0)), (uintptr_t)((*(uintptr_t*)((uintptr_t*)UnBox(L_117, UIntPtr_t_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); if (!L_118) { goto IL_028e; } } IL_027a: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)); Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_119 = ((AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)))->get_s_defaultResultTask_0(); return (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_119; } IL_0280: { goto IL_028e; } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)); Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_121 = ((AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)))->get_s_defaultResultTask_0(); return (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_121; } IL_028e: { VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_122 = ___result0; Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_123 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)); (( void (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)->methodPointer)(L_123, (VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )L_122, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 12)); return (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_123; } } IL2CPP_EXTERN_C Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * AsyncTaskMethodBuilder_1_GetTaskForResult_m5CF1A462822DB26CF310955638395584F9057E09_AdjustorThunk (RuntimeObject * __this, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___result0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * _thisAdjusted = reinterpret_cast<AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 *>(__this + _offset); return AsyncTaskMethodBuilder_1_GetTaskForResult_m5CF1A462822DB26CF310955638395584F9057E09(_thisAdjusted, ___result0, method); } // System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1__cctor_m8654D1109767B5ED6117AF36557E1D49005C5C60_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncTaskMethodBuilder_1__cctor_m8654D1109767B5ED6117AF36557E1D49005C5C60_MetadataUsageId); s_Il2CppMethodInitialized = true; } VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncTaskMethodBuilder_1__cctor_m8654D1109767B5ED6117AF36557E1D49005C5C60_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )); VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_0 = V_0; IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_il2cpp_TypeInfo_var); Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_1 = (( Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * (*) (VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)((VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); ((AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 11)))->set_s_defaultResultTask_0(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2_CreateValueCallback<System.Object,System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateValueCallback__ctor_m0C8279CA67355F638D6C7A3AAFFFA9CEA2570AB1_gshared (CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // TValue System.Runtime.CompilerServices.ConditionalWeakTable`2_CreateValueCallback<System.Object,System.Object>::Invoke(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CreateValueCallback_Invoke_mC5CBD7157B15A80A85110D1FBCA7AD72C8389458_gshared (CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { RuntimeObject * result = NULL; DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, targetMethod); } else { // closed typedef RuntimeObject * (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, targetMethod); } } else if (___parameterCount != 1) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ___key0); else result = GenericVirtFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ___key0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___key0); else result = VirtFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___key0); } } else { typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0); else result = GenericVirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(targetMethod, targetThis, ___key0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0); else result = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___key0) - 1), targetMethod); } if (targetThis == NULL) { typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___key0, targetMethod); } else { typedef RuntimeObject * (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, targetMethod); } } } } return result; } // System.IAsyncResult System.Runtime.CompilerServices.ConditionalWeakTable`2_CreateValueCallback<System.Object,System.Object>::BeginInvoke(TKey,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CreateValueCallback_BeginInvoke_m957E8F8C22D06351AD9573B36E7D026BC431C1D7_gshared (CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F * __this, RuntimeObject * ___key0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___key0; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // TValue System.Runtime.CompilerServices.ConditionalWeakTable`2_CreateValueCallback<System.Object,System.Object>::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CreateValueCallback_EndInvoke_m63C6B6877F8F3E5EF5B4A05234128BA9501580CE_gshared (CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return (RuntimeObject *)__result; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2__ctor_m1BF7C98CA314D99CE58778C0C661D5F1628B6563_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConditionalWeakTable_2__ctor_m1BF7C98CA314D99CE58778C0C661D5F1628B6563_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConditionalWeakTable_2__ctor_m1BF7C98CA314D99CE58778C0C661D5F1628B6563_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL); __this->set__lock_1(L_0); NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_1 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)(EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)SZArrayNew(EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13)); __this->set_data_0(L_1); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_2 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC_register_ephemeron_array_mF6745DC9E70671B69469D62488C2183A46C10729((EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)L_2, /*hidden argument*/NULL); return; } } // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Finalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Finalize_m91ED04E1A857A9FCD9812761E21F0A1456FC39EC_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConditionalWeakTable_2_Finalize_m91ED04E1A857A9FCD9812761E21F0A1456FC39EC_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConditionalWeakTable_2_Finalize_m91ED04E1A857A9FCD9812761E21F0A1456FC39EC_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) STORE_TRY_ID(methodExecutionContext, 0); IL2CPP_LEAVE(0x9, FINALLY_0002); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0002; } FINALLY_0002: { // begin finally (depth: 1) STORE_TRY_ID(methodExecutionContext, -1); NullCheck((RuntimeObject *)__this); Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380((RuntimeObject *)__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(2) } // end finally (depth: 1) IL2CPP_CLEANUP(2) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x9, IL_0009) } IL_0009: { return; } } // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::RehashWithoutResize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_RehashWithoutResize_mBE728B1A280016D22A46B47E8932515672667159_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConditionalWeakTable_2_RehashWithoutResize_mBE728B1A280016D22A46B47E8932515672667159_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; RuntimeObject * V_3 = NULL; int32_t V_4 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConditionalWeakTable_2_RehashWithoutResize_mBE728B1A280016D22A46B47E8932515672667159_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_0 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); NullCheck(L_0); V_0 = (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))); V_1 = (int32_t)0; goto IL_003b; } IL_000d: { CHECK_PAUSE_POINT; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_1 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_2 = V_1; NullCheck(L_1); RuntimeObject * L_3 = (RuntimeObject *)((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_key_0(); IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); RuntimeObject * L_4 = ((GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields*)il2cpp_codegen_static_fields_for(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var))->get_EPHEMERON_TOMBSTONE_0(); if ((!(((RuntimeObject*)(RuntimeObject *)L_3) == ((RuntimeObject*)(RuntimeObject *)L_4)))) { goto IL_0037; } } { EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_5 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_6 = V_1; NullCheck(L_5); ((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->set_key_0(NULL); } IL_0037: { int32_t L_7 = V_1; V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_003b: { int32_t L_8 = V_1; int32_t L_9 = V_0; if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000d; } } { V_2 = (int32_t)0; goto IL_010c; } IL_0046: { CHECK_PAUSE_POINT; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_10 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_11 = V_2; NullCheck(L_10); RuntimeObject * L_12 = (RuntimeObject *)((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->get_key_0(); V_3 = (RuntimeObject *)L_12; RuntimeObject * L_13 = V_3; if (!L_13) { goto IL_0108; } } { RuntimeObject * L_14 = V_3; int32_t L_15 = RuntimeHelpers_GetHashCode_mB357C67BC7D5C014F6F51FE93E200F140DF7A40B((RuntimeObject *)L_14, /*hidden argument*/NULL); int32_t L_16 = V_0; V_4 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_15&(int32_t)((int32_t)2147483647LL)))%(int32_t)L_16)); } IL_006e: { CHECK_PAUSE_POINT; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_17 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_18 = V_4; NullCheck(L_17); RuntimeObject * L_19 = (RuntimeObject *)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->get_key_0(); if (L_19) { goto IL_00de; } } { EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_20 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_21 = V_4; NullCheck(L_20); RuntimeObject * L_22 = V_3; ((L_20)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_21)))->set_key_0(L_22); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_23 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_24 = V_4; NullCheck(L_23); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_25 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_26 = V_2; NullCheck(L_25); RuntimeObject * L_27 = (RuntimeObject *)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_value_1(); ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->set_value_1(L_27); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_28 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_29 = V_2; NullCheck(L_28); ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->set_key_0(NULL); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_30 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_31 = V_2; NullCheck(L_30); ((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->set_value_1(NULL); goto IL_0108; } IL_00de: { EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_32 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_33 = V_4; NullCheck(L_32); RuntimeObject * L_34 = (RuntimeObject *)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->get_key_0(); RuntimeObject * L_35 = V_3; if ((((RuntimeObject*)(RuntimeObject *)L_34) == ((RuntimeObject*)(RuntimeObject *)L_35))) { goto IL_0108; } } { int32_t L_36 = V_4; int32_t L_37 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); V_4 = (int32_t)L_37; int32_t L_38 = V_0; if ((!(((uint32_t)L_37) == ((uint32_t)L_38)))) { goto IL_006e; } } { V_4 = (int32_t)0; goto IL_006e; } IL_0108: { int32_t L_39 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1)); } IL_010c: { int32_t L_40 = V_2; int32_t L_41 = V_0; if ((((int32_t)L_40) < ((int32_t)L_41))) { goto IL_0046; } } { return; } } // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::RecomputeSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_RecomputeSize_m7E1820E6AF43FE02FAAC116D609B358930AAE23D_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConditionalWeakTable_2_RecomputeSize_m7E1820E6AF43FE02FAAC116D609B358930AAE23D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConditionalWeakTable_2_RecomputeSize_m7E1820E6AF43FE02FAAC116D609B358930AAE23D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { __this->set_size_2(0); V_0 = (int32_t)0; goto IL_0030; } IL_000b: { CHECK_PAUSE_POINT; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_0 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_1 = V_0; NullCheck(L_0); RuntimeObject * L_2 = (RuntimeObject *)((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)))->get_key_0(); if (!L_2) { goto IL_002c; } } { int32_t L_3 = (int32_t)__this->get_size_2(); __this->set_size_2(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); } IL_002c: { int32_t L_4 = V_0; V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_0030: { int32_t L_5 = V_0; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_6 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); NullCheck(L_6); if ((((int32_t)L_5) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_000b; } } { return; } } // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Rehash() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Rehash_m2C5F0FFA6D63F510DB4F61FD728DFA4D1674DCE0_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConditionalWeakTable_2_Rehash_m2C5F0FFA6D63F510DB4F61FD728DFA4D1674DCE0_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* V_1 = NULL; int32_t V_2 = 0; RuntimeObject * V_3 = NULL; RuntimeObject * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; RuntimeObject * V_9 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConditionalWeakTable_2_Rehash_m2C5F0FFA6D63F510DB4F61FD728DFA4D1674DCE0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *)__this); (( void (*) (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); int32_t L_0 = (int32_t)__this->get_size_2(); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)((float)((float)(((float)((float)L_0)))/(float)(0.7f))))))<<(int32_t)1))|(int32_t)1)), /*hidden argument*/NULL); V_0 = (uint32_t)L_1; uint32_t L_2 = V_0; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_3 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); NullCheck(L_3); if ((!(((float)(((float)((float)(((double)((uint32_t)L_2))))))) > ((float)((float)il2cpp_codegen_multiply((float)(((float)((float)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))), (float)(0.5f))))))) { goto IL_004d; } } { uint32_t L_4 = V_0; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_5 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); NullCheck(L_5); if ((!(((float)(((float)((float)(((double)((uint32_t)L_4))))))) < ((float)((float)il2cpp_codegen_multiply((float)(((float)((float)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))), (float)(1.1f))))))) { goto IL_004d; } } { NullCheck((ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *)__this); (( void (*) (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return; } IL_004d: { uint32_t L_6 = V_0; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_7 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)(EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)SZArrayNew(EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10_il2cpp_TypeInfo_var, (uint32_t)L_6); V_1 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)L_7; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_8 = V_1; IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC_register_ephemeron_array_mF6745DC9E70671B69469D62488C2183A46C10729((EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)L_8, /*hidden argument*/NULL); __this->set_size_2(0); V_2 = (int32_t)0; goto IL_011c; } IL_0068: { CHECK_PAUSE_POINT; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_9 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_10 = V_2; NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_0(); V_3 = (RuntimeObject *)L_11; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_12 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_13 = V_2; NullCheck(L_12); RuntimeObject * L_14 = (RuntimeObject *)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->get_value_1(); V_4 = (RuntimeObject *)L_14; RuntimeObject * L_15 = V_3; if (!L_15) { goto IL_0118; } } { RuntimeObject * L_16 = V_3; IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); RuntimeObject * L_17 = ((GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields*)il2cpp_codegen_static_fields_for(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var))->get_EPHEMERON_TOMBSTONE_0(); if ((((RuntimeObject*)(RuntimeObject *)L_16) == ((RuntimeObject*)(RuntimeObject *)L_17))) { goto IL_0118; } } { EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_18 = V_1; NullCheck(L_18); V_5 = (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))); V_8 = (int32_t)(-1); RuntimeObject * L_19 = V_3; int32_t L_20 = RuntimeHelpers_GetHashCode_mB357C67BC7D5C014F6F51FE93E200F140DF7A40B((RuntimeObject *)L_19, /*hidden argument*/NULL); int32_t L_21 = V_5; int32_t L_22 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_20&(int32_t)((int32_t)2147483647LL)))%(int32_t)L_21)); V_7 = (int32_t)L_22; V_6 = (int32_t)L_22; } IL_00b7: { CHECK_PAUSE_POINT; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_23 = V_1; int32_t L_24 = V_6; NullCheck(L_23); RuntimeObject * L_25 = (RuntimeObject *)((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->get_key_0(); V_9 = (RuntimeObject *)L_25; RuntimeObject * L_26 = V_9; if (!L_26) { goto IL_00d3; } } { RuntimeObject * L_27 = V_9; IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); RuntimeObject * L_28 = ((GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields*)il2cpp_codegen_static_fields_for(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var))->get_EPHEMERON_TOMBSTONE_0(); if ((!(((RuntimeObject*)(RuntimeObject *)L_27) == ((RuntimeObject*)(RuntimeObject *)L_28)))) { goto IL_00d9; } } IL_00d3: { int32_t L_29 = V_6; V_8 = (int32_t)L_29; goto IL_00ed; } IL_00d9: { int32_t L_30 = V_6; int32_t L_31 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); V_6 = (int32_t)L_31; int32_t L_32 = V_5; if ((!(((uint32_t)L_31) == ((uint32_t)L_32)))) { goto IL_00e7; } } { V_6 = (int32_t)0; } IL_00e7: { int32_t L_33 = V_6; int32_t L_34 = V_7; if ((!(((uint32_t)L_33) == ((uint32_t)L_34)))) { goto IL_00b7; } } IL_00ed: { EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_35 = V_1; int32_t L_36 = V_8; NullCheck(L_35); RuntimeObject * L_37 = V_3; ((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->set_key_0(L_37); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_38 = V_1; int32_t L_39 = V_8; NullCheck(L_38); RuntimeObject * L_40 = V_4; ((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->set_value_1(L_40); int32_t L_41 = (int32_t)__this->get_size_2(); __this->set_size_2(((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1))); } IL_0118: { int32_t L_42 = V_2; V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_011c: { int32_t L_43 = V_2; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_44 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); NullCheck(L_44); if ((((int32_t)L_43) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_44)->max_length))))))) { goto IL_0068; } } { EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_45 = V_1; __this->set_data_0(L_45); return; } } // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; RuntimeObject * V_6 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_1, (String_t*)_stringLiteralDCDC6806A4E290FA615A75A1499A7DF9A8192743, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_RuntimeMethod_var); } IL_0018: { RuntimeObject * L_2 = (RuntimeObject *)__this->get__lock_1(); V_0 = (RuntimeObject *)L_2; V_1 = (bool)0; } IL_0021: try { // begin try (depth: 1) STORE_TRY_ID(methodExecutionContext, 0); { RuntimeObject * L_3 = V_0; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5((RuntimeObject *)L_3, (bool*)(bool*)(&V_1), /*hidden argument*/NULL); int32_t L_4 = (int32_t)__this->get_size_2(); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_5 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); NullCheck(L_5); if ((!(((float)(((float)((float)L_4)))) >= ((float)((float)il2cpp_codegen_multiply((float)(((float)((float)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))), (float)(0.7f))))))) { goto IL_0047; } } IL_0041: { NullCheck((ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *)__this); (( void (*) (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); } IL_0047: { EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_6 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); NullCheck(L_6); V_2 = (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))); V_5 = (int32_t)(-1); RuntimeObject * L_7 = ___key0; int32_t L_8 = RuntimeHelpers_GetHashCode_mB357C67BC7D5C014F6F51FE93E200F140DF7A40B((RuntimeObject *)L_7, /*hidden argument*/NULL); int32_t L_9 = V_2; int32_t L_10 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)2147483647LL)))%(int32_t)L_9)); V_4 = (int32_t)L_10; V_3 = (int32_t)L_10; } IL_006a: { CHECK_PAUSE_POINT; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_11 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_12 = V_3; NullCheck(L_11); RuntimeObject * L_13 = (RuntimeObject *)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_key_0(); V_6 = (RuntimeObject *)L_13; RuntimeObject * L_14 = V_6; if (L_14) { goto IL_008b; } } IL_0081: { int32_t L_15 = V_5; if ((!(((uint32_t)L_15) == ((uint32_t)(-1))))) { goto IL_00c7; } } IL_0086: { int32_t L_16 = V_3; V_5 = (int32_t)L_16; goto IL_00c7; } IL_008b: { RuntimeObject * L_17 = V_6; IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); RuntimeObject * L_18 = ((GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields*)il2cpp_codegen_static_fields_for(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var))->get_EPHEMERON_TOMBSTONE_0(); if ((!(((RuntimeObject*)(RuntimeObject *)L_17) == ((RuntimeObject*)(RuntimeObject *)L_18)))) { goto IL_009e; } } IL_0094: { int32_t L_19 = V_5; if ((!(((uint32_t)L_19) == ((uint32_t)(-1))))) { goto IL_009e; } } IL_0099: { int32_t L_20 = V_3; V_5 = (int32_t)L_20; goto IL_00b8; } IL_009e: { RuntimeObject * L_21 = V_6; RuntimeObject * L_22 = ___key0; if ((!(((RuntimeObject*)(RuntimeObject *)L_21) == ((RuntimeObject*)(RuntimeObject *)L_22)))) { goto IL_00b8; } } IL_00a8: { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_23 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_23, (String_t*)_stringLiteral8404BFE291F6723B2FE5235E7AA3C6B87813046A, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_RuntimeMethod_var); } IL_00b8: { int32_t L_24 = V_3; int32_t L_25 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); V_3 = (int32_t)L_25; int32_t L_26 = V_2; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { goto IL_00c2; } } IL_00c0: { V_3 = (int32_t)0; } IL_00c2: { int32_t L_27 = V_3; int32_t L_28 = V_4; if ((!(((uint32_t)L_27) == ((uint32_t)L_28)))) { goto IL_006a; } } IL_00c7: { EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_29 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_30 = V_5; NullCheck(L_29); RuntimeObject * L_31 = ___key0; ((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->set_key_0(L_31); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_32 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_33 = V_5; NullCheck(L_32); RuntimeObject * L_34 = ___value1; ((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->set_value_1(L_34); int32_t L_35 = (int32_t)__this->get_size_2(); __this->set_size_2(((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1))); IL2CPP_LEAVE(0x111, FINALLY_0107); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0107; } FINALLY_0107: { // begin finally (depth: 1) STORE_TRY_ID(methodExecutionContext, -1); { bool L_36 = V_1; if (!L_36) { goto IL_0110; } } IL_010a: { RuntimeObject * L_37 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2((RuntimeObject *)L_37, /*hidden argument*/NULL); } IL_0110: { IL2CPP_END_FINALLY(263) } } // end finally (depth: 1) IL2CPP_CLEANUP(263) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x111, IL_0111) } IL_0111: { return; } } // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; RuntimeObject * V_5 = NULL; bool V_6 = false; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 3); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_1, (String_t*)_stringLiteralDCDC6806A4E290FA615A75A1499A7DF9A8192743, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_RuntimeMethod_var); } IL_0018: { RuntimeObject * L_2 = (RuntimeObject *)__this->get__lock_1(); V_0 = (RuntimeObject *)L_2; V_1 = (bool)0; } IL_0021: try { // begin try (depth: 1) STORE_TRY_ID(methodExecutionContext, 0); { RuntimeObject * L_3 = V_0; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5((RuntimeObject *)L_3, (bool*)(bool*)(&V_1), /*hidden argument*/NULL); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_4 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); NullCheck(L_4); V_2 = (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))); RuntimeObject * L_5 = ___key0; int32_t L_6 = RuntimeHelpers_GetHashCode_mB357C67BC7D5C014F6F51FE93E200F140DF7A40B((RuntimeObject *)L_5, /*hidden argument*/NULL); int32_t L_7 = V_2; int32_t L_8 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6&(int32_t)((int32_t)2147483647LL)))%(int32_t)L_7)); V_4 = (int32_t)L_8; V_3 = (int32_t)L_8; } IL_0049: { CHECK_PAUSE_POINT; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_9 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_10 = V_3; NullCheck(L_9); RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_key_0(); V_5 = (RuntimeObject *)L_11; RuntimeObject * L_12 = V_5; RuntimeObject * L_13 = ___key0; if ((!(((RuntimeObject*)(RuntimeObject *)L_12) == ((RuntimeObject*)(RuntimeObject *)L_13)))) { goto IL_00a1; } } IL_0066: { EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_14 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_15 = V_3; NullCheck(L_14); IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); RuntimeObject * L_16 = ((GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_StaticFields*)il2cpp_codegen_static_fields_for(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var))->get_EPHEMERON_TOMBSTONE_0(); ((L_14)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_15)))->set_key_0(L_16); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_17 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_18 = V_3; NullCheck(L_17); ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->set_value_1(NULL); int32_t L_19 = (int32_t)__this->get_size_2(); __this->set_size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1))); V_6 = (bool)1; IL2CPP_LEAVE(0xC4, FINALLY_00b8); } IL_00a1: { RuntimeObject * L_20 = V_5; if (L_20) { goto IL_00a7; } } IL_00a5: { IL2CPP_LEAVE(0xC2, FINALLY_00b8); } IL_00a7: { int32_t L_21 = V_3; int32_t L_22 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); V_3 = (int32_t)L_22; int32_t L_23 = V_2; if ((!(((uint32_t)L_22) == ((uint32_t)L_23)))) { goto IL_00b1; } } IL_00af: { V_3 = (int32_t)0; } IL_00b1: { int32_t L_24 = V_3; int32_t L_25 = V_4; if ((!(((uint32_t)L_24) == ((uint32_t)L_25)))) { goto IL_0049; } } IL_00b6: { IL2CPP_LEAVE(0xC2, FINALLY_00b8); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b8; } FINALLY_00b8: { // begin finally (depth: 1) STORE_TRY_ID(methodExecutionContext, -1); { bool L_26 = V_1; if (!L_26) { goto IL_00c1; } } IL_00bb: { RuntimeObject * L_27 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2((RuntimeObject *)L_27, /*hidden argument*/NULL); } IL_00c1: { IL2CPP_END_FINALLY(184) } } // end finally (depth: 1) IL2CPP_CLEANUP(184) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xC4, IL_00c4) IL2CPP_JUMP_TBL(0xC2, IL_00c2) } IL_00c2: { return (bool)0; } IL_00c4: { bool L_28 = V_6; return (bool)L_28; } } // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; RuntimeObject * V_5 = NULL; bool V_6 = false; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 3); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_1, (String_t*)_stringLiteralDCDC6806A4E290FA615A75A1499A7DF9A8192743, (String_t*)_stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_RuntimeMethod_var); } IL_0018: { RuntimeObject ** L_2 = ___value1; il2cpp_codegen_initobj(L_2, sizeof(RuntimeObject *)); RuntimeObject * L_3 = (RuntimeObject *)__this->get__lock_1(); V_0 = (RuntimeObject *)L_3; V_1 = (bool)0; } IL_0028: try { // begin try (depth: 1) STORE_TRY_ID(methodExecutionContext, 0); { RuntimeObject * L_4 = V_0; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5((RuntimeObject *)L_4, (bool*)(bool*)(&V_1), /*hidden argument*/NULL); EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_5 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); NullCheck(L_5); V_2 = (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))); RuntimeObject * L_6 = ___key0; int32_t L_7 = RuntimeHelpers_GetHashCode_mB357C67BC7D5C014F6F51FE93E200F140DF7A40B((RuntimeObject *)L_6, /*hidden argument*/NULL); int32_t L_8 = V_2; int32_t L_9 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7&(int32_t)((int32_t)2147483647LL)))%(int32_t)L_8)); V_4 = (int32_t)L_9; V_3 = (int32_t)L_9; } IL_0050: { CHECK_PAUSE_POINT; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_10 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_11 = V_3; NullCheck(L_10); RuntimeObject * L_12 = (RuntimeObject *)((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->get_key_0(); V_5 = (RuntimeObject *)L_12; RuntimeObject * L_13 = V_5; RuntimeObject * L_14 = ___key0; if ((!(((RuntimeObject*)(RuntimeObject *)L_13) == ((RuntimeObject*)(RuntimeObject *)L_14)))) { goto IL_008e; } } IL_006d: { RuntimeObject ** L_15 = ___value1; EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_16 = (EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10*)__this->get_data_0(); int32_t L_17 = V_3; NullCheck(L_16); RuntimeObject * L_18 = (RuntimeObject *)((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_value_1(); *(RuntimeObject **)L_15 = ((RuntimeObject *)Castclass((RuntimeObject*)L_18, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_15, (void*)((RuntimeObject *)Castclass((RuntimeObject*)L_18, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4)))); V_6 = (bool)1; IL2CPP_LEAVE(0xB1, FINALLY_00a5); } IL_008e: { RuntimeObject * L_19 = V_5; if (L_19) { goto IL_0094; } } IL_0092: { IL2CPP_LEAVE(0xAF, FINALLY_00a5); } IL_0094: { int32_t L_20 = V_3; int32_t L_21 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); V_3 = (int32_t)L_21; int32_t L_22 = V_2; if ((!(((uint32_t)L_21) == ((uint32_t)L_22)))) { goto IL_009e; } } IL_009c: { V_3 = (int32_t)0; } IL_009e: { int32_t L_23 = V_3; int32_t L_24 = V_4; if ((!(((uint32_t)L_23) == ((uint32_t)L_24)))) { goto IL_0050; } } IL_00a3: { IL2CPP_LEAVE(0xAF, FINALLY_00a5); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00a5; } FINALLY_00a5: { // begin finally (depth: 1) STORE_TRY_ID(methodExecutionContext, -1); { bool L_25 = V_1; if (!L_25) { goto IL_00ae; } } IL_00a8: { RuntimeObject * L_26 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2((RuntimeObject *)L_26, /*hidden argument*/NULL); } IL_00ae: { IL2CPP_END_FINALLY(165) } } // end finally (depth: 1) IL2CPP_CLEANUP(165) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xB1, IL_00b1) IL2CPP_JUMP_TBL(0xAF, IL_00af) } IL_00af: { return (bool)0; } IL_00b1: { bool L_27 = V_6; return (bool)L_27; } } // TValue System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::GetValue(TKey,System.Runtime.CompilerServices.ConditionalWeakTable`2_CreateValueCallback<TKey,TValue>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConditionalWeakTable_2_GetValue_m838D9EF0BF4891909CA39673B6057E0E913AB829_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * ___key0, CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F * ___createValueCallback1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConditionalWeakTable_2_GetValue_m838D9EF0BF4891909CA39673B6057E0E913AB829_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; bool V_2 = false; RuntimeObject * V_3 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConditionalWeakTable_2_GetValue_m838D9EF0BF4891909CA39673B6057E0E913AB829_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F * L_0 = ___createValueCallback1; if (L_0) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_1, (String_t*)_stringLiteralEBCD63F14EF28CDE705FE1FC1E3B163BB1FCAC0B, (String_t*)_stringLiteralFB9F492624E1928628EDA9AEDEE3233A32388E42, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ConditionalWeakTable_2_GetValue_m838D9EF0BF4891909CA39673B6057E0E913AB829_RuntimeMethod_var); } IL_0013: { RuntimeObject * L_2 = (RuntimeObject *)__this->get__lock_1(); V_1 = (RuntimeObject *)L_2; V_2 = (bool)0; } IL_001c: try { // begin try (depth: 1) STORE_TRY_ID(methodExecutionContext, 0); { RuntimeObject * L_3 = V_1; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5((RuntimeObject *)L_3, (bool*)(bool*)(&V_2), /*hidden argument*/NULL); RuntimeObject * L_4 = ___key0; NullCheck((ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *)__this); bool L_5 = (( bool (*) (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *, RuntimeObject *, RuntimeObject **, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *)__this, (RuntimeObject *)L_4, (RuntimeObject **)(RuntimeObject **)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); if (!L_5) { goto IL_0033; } } IL_002f: { RuntimeObject * L_6 = V_0; V_3 = (RuntimeObject *)L_6; IL2CPP_LEAVE(0x51, FINALLY_0045); } IL_0033: { CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F * L_7 = ___createValueCallback1; RuntimeObject * L_8 = ___key0; NullCheck((CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F *)L_7); RuntimeObject * L_9 = (( RuntimeObject * (*) (CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)->methodPointer)((CreateValueCallback_tBCCB4685658A4B0DE8153A79A7E365983D58381F *)L_7, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); V_0 = (RuntimeObject *)L_9; RuntimeObject * L_10 = ___key0; RuntimeObject * L_11 = V_0; NullCheck((ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *)__this); (( void (*) (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 *)__this, (RuntimeObject *)L_10, (RuntimeObject *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); IL2CPP_LEAVE(0x4F, FINALLY_0045); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0045; } FINALLY_0045: { // begin finally (depth: 1) STORE_TRY_ID(methodExecutionContext, -1); { bool L_12 = V_2; if (!L_12) { goto IL_004e; } } IL_0048: { RuntimeObject * L_13 = V_1; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2((RuntimeObject *)L_13, /*hidden argument*/NULL); } IL_004e: { IL2CPP_END_FINALLY(69) } } // end finally (depth: 1) IL2CPP_CLEANUP(69) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x51, IL_0051) IL2CPP_JUMP_TBL(0x4F, IL_004f) } IL_004f: { RuntimeObject * L_14 = V_0; return (RuntimeObject *)L_14; } IL_0051: { RuntimeObject * L_15 = V_3; return (RuntimeObject *)L_15; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mBC2C82388746A0B33A7CC359CB90AB34F4CB0F80_gshared (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter__ctor_mBC2C82388746A0B33A7CC359CB90AB34F4CB0F80_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter__ctor_mBC2C82388746A0B33A7CC359CB90AB34F4CB0F80_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = ___task0; __this->set_m_task_0(L_0); bool L_1 = ___continueOnCapturedContext1; __this->set_m_continueOnCapturedContext_1(L_1); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_mBC2C82388746A0B33A7CC359CB90AB34F4CB0F80_AdjustorThunk (RuntimeObject * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 *>(__this + _offset); ConfiguredTaskAwaiter__ctor_mBC2C82388746A0B33A7CC359CB90AB34F4CB0F80(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method); } // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Boolean>::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m3106B5C67EF6270B9DB4B5E1C5C687BCAA446F24_gshared (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_get_IsCompleted_m3106B5C67EF6270B9DB4B5E1C5C687BCAA446F24_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_get_IsCompleted_m3106B5C67EF6270B9DB4B5E1C5C687BCAA446F24_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0); bool L_1 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); return (bool)L_1; } } IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_m3106B5C67EF6270B9DB4B5E1C5C687BCAA446F24_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 *>(__this + _offset); return ConfiguredTaskAwaiter_get_IsCompleted_m3106B5C67EF6270B9DB4B5E1C5C687BCAA446F24(_thisAdjusted, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Boolean>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m52A95CEFA755CAAEE1E8755101ACA45A295A7A35_gshared (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_UnsafeOnCompleted_m52A95CEFA755CAAEE1E8755101ACA45A295A7A35_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_UnsafeOnCompleted_m52A95CEFA755CAAEE1E8755101ACA45A295A7A35_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this->get_m_task_0(); Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_1 = ___continuation0; bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1(); TaskAwaiter_OnCompletedInternal_m2D91F596B0BF61EF0213B36C2F3EF520851783C3((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)L_1, (bool)L_2, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m52A95CEFA755CAAEE1E8755101ACA45A295A7A35_AdjustorThunk (RuntimeObject * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 *>(__this + _offset); ConfiguredTaskAwaiter_UnsafeOnCompleted_m52A95CEFA755CAAEE1E8755101ACA45A295A7A35(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Boolean>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_GetResult_mC2B7B126733CDE385D61F2036F9D0668B36F171B_gshared (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_GetResult_mC2B7B126733CDE385D61F2036F9D0668B36F171B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_GetResult_mC2B7B126733CDE385D61F2036F9D0668B36F171B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_mE371CFCA15DE9618E07CB6751C588335FCE62F6D((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_1 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this->get_m_task_0(); NullCheck((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_1); bool L_2 = (( bool (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (bool)L_2; } } IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_GetResult_mC2B7B126733CDE385D61F2036F9D0668B36F171B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 *>(__this + _offset); return ConfiguredTaskAwaiter_GetResult_mC2B7B126733CDE385D61F2036F9D0668B36F171B(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mFD356296FDD56905A728A7EF64E95DA08F0CDE26_gshared (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter__ctor_mFD356296FDD56905A728A7EF64E95DA08F0CDE26_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter__ctor_mFD356296FDD56905A728A7EF64E95DA08F0CDE26_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_0 = ___task0; __this->set_m_task_0(L_0); bool L_1 = ___continueOnCapturedContext1; __this->set_m_continueOnCapturedContext_1(L_1); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_mFD356296FDD56905A728A7EF64E95DA08F0CDE26_AdjustorThunk (RuntimeObject * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *>(__this + _offset); ConfiguredTaskAwaiter__ctor_mFD356296FDD56905A728A7EF64E95DA08F0CDE26(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method); } // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_gshared (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_0 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0); bool L_1 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); return (bool)L_1; } } IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *>(__this + _offset); return ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92(_thisAdjusted, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Int32>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m51FAB5E9A9B65CADB2FC226EDDA77B18E003AD60_gshared (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_UnsafeOnCompleted_m51FAB5E9A9B65CADB2FC226EDDA77B18E003AD60_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_UnsafeOnCompleted_m51FAB5E9A9B65CADB2FC226EDDA77B18E003AD60_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_0 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this->get_m_task_0(); Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_1 = ___continuation0; bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1(); TaskAwaiter_OnCompletedInternal_m2D91F596B0BF61EF0213B36C2F3EF520851783C3((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)L_1, (bool)L_2, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m51FAB5E9A9B65CADB2FC226EDDA77B18E003AD60_AdjustorThunk (RuntimeObject * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *>(__this + _offset); ConfiguredTaskAwaiter_UnsafeOnCompleted_m51FAB5E9A9B65CADB2FC226EDDA77B18E003AD60(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Int32>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_gshared (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_0 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_mE371CFCA15DE9618E07CB6751C588335FCE62F6D((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_1 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this->get_m_task_0(); NullCheck((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)L_1); int32_t L_2 = (( int32_t (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *>(__this + _offset); return ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mFE77210335876C9788ECDD3C5393C4636B39A00B_gshared (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter__ctor_mFE77210335876C9788ECDD3C5393C4636B39A00B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter__ctor_mFE77210335876C9788ECDD3C5393C4636B39A00B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = ___task0; __this->set_m_task_0(L_0); bool L_1 = ___continueOnCapturedContext1; __this->set_m_continueOnCapturedContext_1(L_1); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_mFE77210335876C9788ECDD3C5393C4636B39A00B_AdjustorThunk (RuntimeObject * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E *>(__this + _offset); ConfiguredTaskAwaiter__ctor_mFE77210335876C9788ECDD3C5393C4636B39A00B(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method); } // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Object>::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586_gshared (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0); bool L_1 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); return (bool)L_1; } } IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E *>(__this + _offset); return ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586(_thisAdjusted, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Object>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m4839332C5C05D22963CEA62A1FEE699C68109404_gshared (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_UnsafeOnCompleted_m4839332C5C05D22963CEA62A1FEE699C68109404_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_UnsafeOnCompleted_m4839332C5C05D22963CEA62A1FEE699C68109404_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_1 = ___continuation0; bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1(); TaskAwaiter_OnCompletedInternal_m2D91F596B0BF61EF0213B36C2F3EF520851783C3((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)L_1, (bool)L_2, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m4839332C5C05D22963CEA62A1FEE699C68109404_AdjustorThunk (RuntimeObject * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E *>(__this + _offset); ConfiguredTaskAwaiter_UnsafeOnCompleted_m4839332C5C05D22963CEA62A1FEE699C68109404(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Object>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E_gshared (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_mE371CFCA15DE9618E07CB6751C588335FCE62F6D((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_1 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_1); RuntimeObject * L_2 = (( RuntimeObject * (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (RuntimeObject *)L_2; } } IL2CPP_EXTERN_C RuntimeObject * ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E *>(__this + _offset); return ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m0E48D705E5FED5CC83670FA7A2B32702BBE20840_gshared (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter__ctor_m0E48D705E5FED5CC83670FA7A2B32702BBE20840_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter__ctor_m0E48D705E5FED5CC83670FA7A2B32702BBE20840_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = ___task0; __this->set_m_task_0(L_0); bool L_1 = ___continueOnCapturedContext1; __this->set_m_continueOnCapturedContext_1(L_1); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_m0E48D705E5FED5CC83670FA7A2B32702BBE20840_AdjustorThunk (RuntimeObject * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 *>(__this + _offset); ConfiguredTaskAwaiter__ctor_m0E48D705E5FED5CC83670FA7A2B32702BBE20840(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method); } // System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m1429B429A92D467192E16F1291BAA5761706EAB0_gshared (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_get_IsCompleted_m1429B429A92D467192E16F1291BAA5761706EAB0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_get_IsCompleted_m1429B429A92D467192E16F1291BAA5761706EAB0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0); bool L_1 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); return (bool)L_1; } } IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_m1429B429A92D467192E16F1291BAA5761706EAB0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 *>(__this + _offset); return ConfiguredTaskAwaiter_get_IsCompleted_m1429B429A92D467192E16F1291BAA5761706EAB0(_thisAdjusted, method); } // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_mA3AA09BD7CC25D9F838DF9BBBF200B41C65BBD57_gshared (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_UnsafeOnCompleted_mA3AA09BD7CC25D9F838DF9BBBF200B41C65BBD57_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_UnsafeOnCompleted_mA3AA09BD7CC25D9F838DF9BBBF200B41C65BBD57_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)__this->get_m_task_0(); Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_1 = ___continuation0; bool L_2 = (bool)__this->get_m_continueOnCapturedContext_1(); TaskAwaiter_OnCompletedInternal_m2D91F596B0BF61EF0213B36C2F3EF520851783C3((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)L_1, (bool)L_2, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_mA3AA09BD7CC25D9F838DF9BBBF200B41C65BBD57_AdjustorThunk (RuntimeObject * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 *>(__this + _offset); ConfiguredTaskAwaiter_UnsafeOnCompleted_mA3AA09BD7CC25D9F838DF9BBBF200B41C65BBD57(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ConfiguredTaskAwaiter_GetResult_mE6DE53E996B30ABB828D43811259EC164DDC607B_gshared (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaiter_GetResult_mE6DE53E996B30ABB828D43811259EC164DDC607B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaiter_GetResult_mE6DE53E996B30ABB828D43811259EC164DDC607B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_mE371CFCA15DE9618E07CB6751C588335FCE62F6D((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_1 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)__this->get_m_task_0(); NullCheck((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_1); VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_2 = (( VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )L_2; } } IL2CPP_EXTERN_C VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ConfiguredTaskAwaiter_GetResult_mE6DE53E996B30ABB828D43811259EC164DDC607B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 *>(__this + _offset); return ConfiguredTaskAwaiter_GetResult_mE6DE53E996B30ABB828D43811259EC164DDC607B(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mFB57BDDFCD7717F4EFBA0C41312C99E8E24D31C7_gshared (ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1__ctor_mFB57BDDFCD7717F4EFBA0C41312C99E8E24D31C7_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1__ctor_mFB57BDDFCD7717F4EFBA0C41312C99E8E24D31C7_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = ___task0; bool L_1 = ___continueOnCapturedContext1; ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 L_2; memset((&L_2), 0, sizeof(L_2)); ConfiguredTaskAwaiter__ctor_mBC2C82388746A0B33A7CC359CB90AB34F4CB0F80((&L_2), (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_m_configuredTaskAwaiter_0(L_2); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_mFB57BDDFCD7717F4EFBA0C41312C99E8E24D31C7_AdjustorThunk (RuntimeObject * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 *>(__this + _offset); ConfiguredTaskAwaitable_1__ctor_mFB57BDDFCD7717F4EFBA0C41312C99E8E24D31C7(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method); } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_gshared (ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 L_0 = (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 )__this->get_m_configuredTaskAwaiter_0(); return (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 )L_0; } } IL2CPP_EXTERN_C ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 *>(__this + _offset); return ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_inline(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m9038EF920A0F90A746627FF394F3A44ED51CFB21_gshared (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1__ctor_m9038EF920A0F90A746627FF394F3A44ED51CFB21_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1__ctor_m9038EF920A0F90A746627FF394F3A44ED51CFB21_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_0 = ___task0; bool L_1 = ___continueOnCapturedContext1; ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E L_2; memset((&L_2), 0, sizeof(L_2)); ConfiguredTaskAwaiter__ctor_mFD356296FDD56905A728A7EF64E95DA08F0CDE26((&L_2), (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_m_configuredTaskAwaiter_0(L_2); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_m9038EF920A0F90A746627FF394F3A44ED51CFB21_AdjustorThunk (RuntimeObject * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A *>(__this + _offset); ConfiguredTaskAwaitable_1__ctor_m9038EF920A0F90A746627FF394F3A44ED51CFB21(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method); } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_gshared (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E L_0 = (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E )__this->get_m_configuredTaskAwaiter_0(); return (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E )L_0; } } IL2CPP_EXTERN_C ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A *>(__this + _offset); return ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_inline(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mB82ADF237AE2CA3076F32A86D153EBD7B339E3B7_gshared (ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1__ctor_mB82ADF237AE2CA3076F32A86D153EBD7B339E3B7_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1__ctor_mB82ADF237AE2CA3076F32A86D153EBD7B339E3B7_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = ___task0; bool L_1 = ___continueOnCapturedContext1; ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E L_2; memset((&L_2), 0, sizeof(L_2)); ConfiguredTaskAwaiter__ctor_mFE77210335876C9788ECDD3C5393C4636B39A00B((&L_2), (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_m_configuredTaskAwaiter_0(L_2); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_mB82ADF237AE2CA3076F32A86D153EBD7B339E3B7_AdjustorThunk (RuntimeObject * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 *>(__this + _offset); ConfiguredTaskAwaitable_1__ctor_mB82ADF237AE2CA3076F32A86D153EBD7B339E3B7(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method); } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_gshared (ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E L_0 = (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E )__this->get_m_configuredTaskAwaiter_0(); return (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E )L_0; } } IL2CPP_EXTERN_C ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 *>(__this + _offset); return ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_inline(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mAD28136B3EBB7A59923B02CD31DE0E0DB4B69FA7_gshared (ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1__ctor_mAD28136B3EBB7A59923B02CD31DE0E0DB4B69FA7_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1__ctor_mAD28136B3EBB7A59923B02CD31DE0E0DB4B69FA7_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = ___task0; bool L_1 = ___continueOnCapturedContext1; ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 L_2; memset((&L_2), 0, sizeof(L_2)); ConfiguredTaskAwaiter__ctor_m0E48D705E5FED5CC83670FA7A2B32702BBE20840((&L_2), (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); __this->set_m_configuredTaskAwaiter_0(L_2); return; } } IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_mAD28136B3EBB7A59923B02CD31DE0E0DB4B69FA7_AdjustorThunk (RuntimeObject * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, bool ___continueOnCapturedContext1, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 *>(__this + _offset); ConfiguredTaskAwaitable_1__ctor_mAD28136B3EBB7A59923B02CD31DE0E0DB4B69FA7(_thisAdjusted, ___task0, ___continueOnCapturedContext1, method); } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1_ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_gshared (ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 L_0 = (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 )__this->get_m_configuredTaskAwaiter_0(); return (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 )L_0; } } IL2CPP_EXTERN_C ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 * _thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 *>(__this + _offset); return ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_inline(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_gshared (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_AdjustorThunk (RuntimeObject * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 *>(__this + _offset); TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_inline(_thisAdjusted, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m682D0FAFEEB8268BB1EC46583C9F93A15999E743_gshared (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1_UnsafeOnCompleted_m682D0FAFEEB8268BB1EC46583C9F93A15999E743_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1_UnsafeOnCompleted_m682D0FAFEEB8268BB1EC46583C9F93A15999E743_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this->get_m_task_0(); Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_1 = ___continuation0; TaskAwaiter_OnCompletedInternal_m2D91F596B0BF61EF0213B36C2F3EF520851783C3((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1_UnsafeOnCompleted_m682D0FAFEEB8268BB1EC46583C9F93A15999E743_AdjustorThunk (RuntimeObject * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 *>(__this + _offset); TaskAwaiter_1_UnsafeOnCompleted_m682D0FAFEEB8268BB1EC46583C9F93A15999E743(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskAwaiter_1_GetResult_m77546DD82B46E6BAAAA79AB5F1BBCD2567E0F7F8_gshared (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1_GetResult_m77546DD82B46E6BAAAA79AB5F1BBCD2567E0F7F8_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1_GetResult_m77546DD82B46E6BAAAA79AB5F1BBCD2567E0F7F8_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_mE371CFCA15DE9618E07CB6751C588335FCE62F6D((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_1 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this->get_m_task_0(); NullCheck((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_1); bool L_2 = (( bool (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (bool)L_2; } } IL2CPP_EXTERN_C bool TaskAwaiter_1_GetResult_m77546DD82B46E6BAAAA79AB5F1BBCD2567E0F7F8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 *>(__this + _offset); return TaskAwaiter_1_GetResult_m77546DD82B46E6BAAAA79AB5F1BBCD2567E0F7F8(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_gshared (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_AdjustorThunk (RuntimeObject * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 *>(__this + _offset); TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_inline(_thisAdjusted, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m8D75DA13F52ABD6D5ACD823594F6A5CD43BE2A3E_gshared (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1_UnsafeOnCompleted_m8D75DA13F52ABD6D5ACD823594F6A5CD43BE2A3E_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1_UnsafeOnCompleted_m8D75DA13F52ABD6D5ACD823594F6A5CD43BE2A3E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_0 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this->get_m_task_0(); Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_1 = ___continuation0; TaskAwaiter_OnCompletedInternal_m2D91F596B0BF61EF0213B36C2F3EF520851783C3((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1_UnsafeOnCompleted_m8D75DA13F52ABD6D5ACD823594F6A5CD43BE2A3E_AdjustorThunk (RuntimeObject * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 *>(__this + _offset); TaskAwaiter_1_UnsafeOnCompleted_m8D75DA13F52ABD6D5ACD823594F6A5CD43BE2A3E(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_gshared (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_0 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_mE371CFCA15DE9618E07CB6751C588335FCE62F6D((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_1 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this->get_m_task_0(); NullCheck((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)L_1); int32_t L_2 = (( int32_t (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (int32_t)L_2; } } IL2CPP_EXTERN_C int32_t TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 *>(__this + _offset); return TaskAwaiter_1_GetResult_m0E9661BE4684BA278EE9C6A4EE23FF62AEC86FB9(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_gshared (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_AdjustorThunk (RuntimeObject * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 *>(__this + _offset); TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_inline(_thisAdjusted, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_m4204CC2DE0200E2EFA43C485022F816D27298975_gshared (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1_UnsafeOnCompleted_m4204CC2DE0200E2EFA43C485022F816D27298975_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1_UnsafeOnCompleted_m4204CC2DE0200E2EFA43C485022F816D27298975_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_1 = ___continuation0; TaskAwaiter_OnCompletedInternal_m2D91F596B0BF61EF0213B36C2F3EF520851783C3((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1_UnsafeOnCompleted_m4204CC2DE0200E2EFA43C485022F816D27298975_AdjustorThunk (RuntimeObject * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 *>(__this + _offset); TaskAwaiter_1_UnsafeOnCompleted_m4204CC2DE0200E2EFA43C485022F816D27298975(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TaskAwaiter_1_GetResult_m9E148849CD4747E1BDD831E4FB2D7ECFA13C11C8_gshared (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1_GetResult_m9E148849CD4747E1BDD831E4FB2D7ECFA13C11C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1_GetResult_m9E148849CD4747E1BDD831E4FB2D7ECFA13C11C8_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_mE371CFCA15DE9618E07CB6751C588335FCE62F6D((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_1 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_1); RuntimeObject * L_2 = (( RuntimeObject * (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (RuntimeObject *)L_2; } } IL2CPP_EXTERN_C RuntimeObject * TaskAwaiter_1_GetResult_m9E148849CD4747E1BDD831E4FB2D7ECFA13C11C8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 *>(__this + _offset); return TaskAwaiter_1_GetResult_m9E148849CD4747E1BDD831E4FB2D7ECFA13C11C8(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_gshared (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_AdjustorThunk (RuntimeObject * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE *>(__this + _offset); TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_inline(_thisAdjusted, ___task0, method); } // System.Void System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::UnsafeOnCompleted(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_1_UnsafeOnCompleted_mCD78FE2109BECF3B49ABCC367C9A1304BD390A98_gshared (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1_UnsafeOnCompleted_mCD78FE2109BECF3B49ABCC367C9A1304BD390A98_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1_UnsafeOnCompleted_mCD78FE2109BECF3B49ABCC367C9A1304BD390A98_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)__this->get_m_task_0(); Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_1 = ___continuation0; TaskAwaiter_OnCompletedInternal_m2D91F596B0BF61EF0213B36C2F3EF520851783C3((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)L_1, (bool)1, (bool)0, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void TaskAwaiter_1_UnsafeOnCompleted_mCD78FE2109BECF3B49ABCC367C9A1304BD390A98_AdjustorThunk (RuntimeObject * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___continuation0, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE *>(__this + _offset); TaskAwaiter_1_UnsafeOnCompleted_mCD78FE2109BECF3B49ABCC367C9A1304BD390A98(_thisAdjusted, ___continuation0, method); } // TResult System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>::GetResult() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 TaskAwaiter_1_GetResult_m9653F7144240DCB33FCDAC21DE6A89FD12F58BA5_gshared (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1_GetResult_m9653F7144240DCB33FCDAC21DE6A89FD12F58BA5_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1_GetResult_m9653F7144240DCB33FCDAC21DE6A89FD12F58BA5_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)__this->get_m_task_0(); TaskAwaiter_ValidateEnd_mE371CFCA15DE9618E07CB6751C588335FCE62F6D((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_1 = (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)__this->get_m_task_0(); NullCheck((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_1); VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_2 = (( VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); return (VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )L_2; } } IL2CPP_EXTERN_C VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 TaskAwaiter_1_GetResult_m9653F7144240DCB33FCDAC21DE6A89FD12F58BA5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * _thisAdjusted = reinterpret_cast<TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE *>(__this + _offset); return TaskAwaiter_1_GetResult_m9653F7144240DCB33FCDAC21DE6A89FD12F58BA5(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.RuntimeType_ListBuilder`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBuilder_1__ctor_m732FB66A81E20018611D91961EFC856084C6596E_gshared (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ListBuilder_1__ctor_m732FB66A81E20018611D91961EFC856084C6596E_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ListBuilder_1__ctor_m732FB66A81E20018611D91961EFC856084C6596E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { __this->set__items_0((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL); RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of__item_1(); il2cpp_codegen_initobj(L_0, sizeof(RuntimeObject *)); __this->set__count_2(0); int32_t L_1 = ___capacity0; __this->set__capacity_3(L_1); return; } } IL2CPP_EXTERN_C void ListBuilder_1__ctor_m732FB66A81E20018611D91961EFC856084C6596E_AdjustorThunk (RuntimeObject * __this, int32_t ___capacity0, const RuntimeMethod* method) { int32_t _offset = 1; ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *>(__this + _offset); ListBuilder_1__ctor_m732FB66A81E20018611D91961EFC856084C6596E(_thisAdjusted, ___capacity0, method); } // T System.RuntimeType_ListBuilder`1<System.Object>::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ListBuilder_1_get_Item_m440ACBC3F6764B4992840EEEC1CCA9AFD3A5886D_gshared (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ListBuilder_1_get_Item_m440ACBC3F6764B4992840EEEC1CCA9AFD3A5886D_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ListBuilder_1_get_Item_m440ACBC3F6764B4992840EEEC1CCA9AFD3A5886D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_0(); if (L_0) { goto IL_000f; } } { RuntimeObject * L_1 = (RuntimeObject *)__this->get__item_1(); return (RuntimeObject *)L_1; } IL_000f: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_0(); int32_t L_3 = ___index0; NullCheck(L_2); int32_t L_4 = L_3; RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); return (RuntimeObject *)L_5; } } IL2CPP_EXTERN_C RuntimeObject * ListBuilder_1_get_Item_m440ACBC3F6764B4992840EEEC1CCA9AFD3A5886D_AdjustorThunk (RuntimeObject * __this, int32_t ___index0, const RuntimeMethod* method) { int32_t _offset = 1; ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *>(__this + _offset); return ListBuilder_1_get_Item_m440ACBC3F6764B4992840EEEC1CCA9AFD3A5886D(_thisAdjusted, ___index0, method); } // T[] System.RuntimeType_ListBuilder`1<System.Object>::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ListBuilder_1_ToArray_m9DAACFD0ECFE92359885E585A3BE6EE34A43798E_gshared (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ListBuilder_1_ToArray_m9DAACFD0ECFE92359885E585A3BE6EE34A43798E_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ListBuilder_1_ToArray_m9DAACFD0ECFE92359885E585A3BE6EE34A43798E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get__count_2(); if (L_0) { goto IL_000e; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ((EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->get_Value_0(); return (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_1; } IL_000e: { int32_t L_2 = (int32_t)__this->get__count_2(); if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_002b; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_3; RuntimeObject * L_5 = (RuntimeObject *)__this->get__item_1(); NullCheck(L_4); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5); return (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_4; } IL_002b: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)__this->get_address_of__items_0(); int32_t L_7 = (int32_t)__this->get__count_2(); (( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)L_6, (int32_t)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_8 = (int32_t)__this->get__count_2(); __this->set__capacity_3(L_8); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_0(); return (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_9; } } IL2CPP_EXTERN_C ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ListBuilder_1_ToArray_m9DAACFD0ECFE92359885E585A3BE6EE34A43798E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *>(__this + _offset); return ListBuilder_1_ToArray_m9DAACFD0ECFE92359885E585A3BE6EE34A43798E(_thisAdjusted, method); } // System.Void System.RuntimeType_ListBuilder`1<System.Object>::CopyTo(System.Object[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBuilder_1_CopyTo_m88C60144CC6606D734A5522D4EC6027CE1E01FAE_gshared (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ListBuilder_1_CopyTo_m88C60144CC6606D734A5522D4EC6027CE1E01FAE_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ListBuilder_1_CopyTo_m88C60144CC6606D734A5522D4EC6027CE1E01FAE_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get__count_2(); if (L_0) { goto IL_0009; } } { return; } IL_0009: { int32_t L_1 = (int32_t)__this->get__count_2(); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0021; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0; int32_t L_3 = ___index1; RuntimeObject * L_4 = (RuntimeObject *)__this->get__item_1(); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_4); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RuntimeObject *)L_4); return; } IL_0021: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ___array0; int32_t L_7 = ___index1; int32_t L_8 = (int32_t)__this->get__count_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_5, (int32_t)0, (RuntimeArray *)(RuntimeArray *)L_6, (int32_t)L_7, (int32_t)L_8, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void ListBuilder_1_CopyTo_m88C60144CC6606D734A5522D4EC6027CE1E01FAE_AdjustorThunk (RuntimeObject * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___index1, const RuntimeMethod* method) { int32_t _offset = 1; ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *>(__this + _offset); ListBuilder_1_CopyTo_m88C60144CC6606D734A5522D4EC6027CE1E01FAE(_thisAdjusted, ___array0, ___index1, method); } // System.Int32 System.RuntimeType_ListBuilder`1<System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_gshared (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get__count_2(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *>(__this + _offset); return ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_inline(_thisAdjusted, method); } // System.Void System.RuntimeType_ListBuilder`1<System.Object>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListBuilder_1_Add_m42B66384FC0CD58D994246D40CB4F473D3E639A4_gshared (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ListBuilder_1_Add_m42B66384FC0CD58D994246D40CB4F473D3E639A4_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ListBuilder_1_Add_m42B66384FC0CD58D994246D40CB4F473D3E639A4_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get__count_2(); if (L_0) { goto IL_0011; } } { RuntimeObject * L_1 = ___item0; __this->set__item_1(L_1); goto IL_008b; } IL_0011: { int32_t L_2 = (int32_t)__this->get__count_2(); if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_004f; } } { int32_t L_3 = (int32_t)__this->get__capacity_3(); if ((((int32_t)L_3) >= ((int32_t)2))) { goto IL_002a; } } { __this->set__capacity_3(4); } IL_002a: { int32_t L_4 = (int32_t)__this->get__capacity_3(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), (uint32_t)L_4); __this->set__items_0(L_5); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_0(); RuntimeObject * L_7 = (RuntimeObject *)__this->get__item_1(); NullCheck(L_6); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7); goto IL_0079; } IL_004f: { int32_t L_8 = (int32_t)__this->get__capacity_3(); int32_t L_9 = (int32_t)__this->get__count_2(); if ((!(((uint32_t)L_8) == ((uint32_t)L_9)))) { goto IL_0079; } } { int32_t L_10 = (int32_t)__this->get__capacity_3(); V_0 = (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_10)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_11 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)__this->get_address_of__items_0(); int32_t L_12 = V_0; (( void (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)L_11, (int32_t)L_12, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); int32_t L_13 = V_0; __this->set__capacity_3(L_13); } IL_0079: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_0(); int32_t L_15 = (int32_t)__this->get__count_2(); RuntimeObject * L_16 = ___item0; NullCheck(L_14); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (RuntimeObject *)L_16); } IL_008b: { int32_t L_17 = (int32_t)__this->get__count_2(); __this->set__count_2(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); return; } } IL2CPP_EXTERN_C void ListBuilder_1_Add_m42B66384FC0CD58D994246D40CB4F473D3E639A4_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { int32_t _offset = 1; ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * _thisAdjusted = reinterpret_cast<ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 *>(__this + _offset); ListBuilder_1_Add_m42B66384FC0CD58D994246D40CB4F473D3E639A4(_thisAdjusted, ___item0, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.System_LazyDebugView`1<System.Object>::.ctor(System.Lazy`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void System_LazyDebugView_1__ctor_m1636869EA2A7A9AAB65981F91825BEF2AF1CDCAC_gshared (System_LazyDebugView_1_t90CC9A5347F59FD5AC8F840F4052F6D2FCEFC4D5 * __this, Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 * ___lazy0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (System_LazyDebugView_1__ctor_m1636869EA2A7A9AAB65981F91825BEF2AF1CDCAC_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, System_LazyDebugView_1__ctor_m1636869EA2A7A9AAB65981F91825BEF2AF1CDCAC_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 * L_0 = ___lazy0; __this->set_m_lazy_0(L_0); return; } } // System.Boolean System.System_LazyDebugView`1<System.Object>::get_IsValueCreated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool System_LazyDebugView_1_get_IsValueCreated_m6F297C78C8583EF3EE0F2E1171AD02C900163D0D_gshared (System_LazyDebugView_1_t90CC9A5347F59FD5AC8F840F4052F6D2FCEFC4D5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (System_LazyDebugView_1_get_IsValueCreated_m6F297C78C8583EF3EE0F2E1171AD02C900163D0D_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, System_LazyDebugView_1_get_IsValueCreated_m6F297C78C8583EF3EE0F2E1171AD02C900163D0D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 * L_0 = (Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)__this->get_m_lazy_0(); NullCheck((Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)L_0); bool L_1 = (( bool (*) (Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (bool)L_1; } } // T System.System_LazyDebugView`1<System.Object>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * System_LazyDebugView_1_get_Value_m5612E9AE365565A58A964C47FB45C2C57F270725_gshared (System_LazyDebugView_1_t90CC9A5347F59FD5AC8F840F4052F6D2FCEFC4D5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (System_LazyDebugView_1_get_Value_m5612E9AE365565A58A964C47FB45C2C57F270725_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, System_LazyDebugView_1_get_Value_m5612E9AE365565A58A964C47FB45C2C57F270725_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 * L_0 = (Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)__this->get_m_lazy_0(); NullCheck((Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)L_0); RuntimeObject * L_1 = (( RuntimeObject * (*) (Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); return (RuntimeObject *)L_1; } } // System.Threading.LazyThreadSafetyMode System.System_LazyDebugView`1<System.Object>::get_Mode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t System_LazyDebugView_1_get_Mode_m9562B46E49883D23DE4CE2FB3320248125AC7879_gshared (System_LazyDebugView_1_t90CC9A5347F59FD5AC8F840F4052F6D2FCEFC4D5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (System_LazyDebugView_1_get_Mode_m9562B46E49883D23DE4CE2FB3320248125AC7879_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, System_LazyDebugView_1_get_Mode_m9562B46E49883D23DE4CE2FB3320248125AC7879_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 * L_0 = (Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)__this->get_m_lazy_0(); NullCheck((Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)L_0); int32_t L_1 = (( int32_t (*) (Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (int32_t)L_1; } } // System.Boolean System.System_LazyDebugView`1<System.Object>::get_IsValueFaulted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool System_LazyDebugView_1_get_IsValueFaulted_mE7C6E437833846730D0C9A5040A1C781101072E0_gshared (System_LazyDebugView_1_t90CC9A5347F59FD5AC8F840F4052F6D2FCEFC4D5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (System_LazyDebugView_1_get_IsValueFaulted_mE7C6E437833846730D0C9A5040A1C781101072E0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, System_LazyDebugView_1_get_IsValueFaulted_mE7C6E437833846730D0C9A5040A1C781101072E0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 * L_0 = (Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)__this->get_m_lazy_0(); NullCheck((Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)L_0); bool L_1 = (( bool (*) (Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Lazy_1_t71F054A6BEAC691000784099D483C92D8C113AE7 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // T System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::get_PreviousValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_gshared (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CPreviousValueU3Ek__BackingField_0(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * _thisAdjusted = reinterpret_cast<AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *>(__this + _offset); return AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_inline(_thisAdjusted, method); } // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_PreviousValue(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_gshared (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___value0; __this->set_U3CPreviousValueU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * _thisAdjusted = reinterpret_cast<AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *>(__this + _offset); AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_inline(_thisAdjusted, ___value0, method); } // T System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::get_CurrentValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_gshared (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CCurrentValueU3Ek__BackingField_1(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C RuntimeObject * AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * _thisAdjusted = reinterpret_cast<AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *>(__this + _offset); return AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_inline(_thisAdjusted, method); } // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_CurrentValue(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_gshared (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___value0; __this->set_U3CCurrentValueU3Ek__BackingField_1(L_0); return; } } IL2CPP_EXTERN_C void AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * _thisAdjusted = reinterpret_cast<AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *>(__this + _offset); AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_inline(_thisAdjusted, ___value0, method); } // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::set_ThreadContextChanged(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_gshared (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = ___value0; __this->set_U3CThreadContextChangedU3Ek__BackingField_2(L_0); return; } } IL2CPP_EXTERN_C void AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * _thisAdjusted = reinterpret_cast<AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *>(__this + _offset); AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_inline(_thisAdjusted, ___value0, method); } // System.Void System.Threading.AsyncLocalValueChangedArgs`1<System.Object>::.ctor(T,T,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1__ctor_m35C870EB8F451D9D0916F75F48C8FD4B08AD1FF8_gshared (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, RuntimeObject * ___previousValue0, RuntimeObject * ___currentValue1, bool ___contextChanged2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocalValueChangedArgs_1__ctor_m35C870EB8F451D9D0916F75F48C8FD4B08AD1FF8_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocalValueChangedArgs_1__ctor_m35C870EB8F451D9D0916F75F48C8FD4B08AD1FF8_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj(__this, sizeof(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D )); RuntimeObject * L_0 = ___previousValue0; AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_inline((AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *)(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *)__this, (RuntimeObject *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)); RuntimeObject * L_1 = ___currentValue1; AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_inline((AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *)(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *)__this, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); bool L_2 = ___contextChanged2; AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_inline((AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *)(AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *)__this, (bool)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)); return; } } IL2CPP_EXTERN_C void AsyncLocalValueChangedArgs_1__ctor_m35C870EB8F451D9D0916F75F48C8FD4B08AD1FF8_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___previousValue0, RuntimeObject * ___currentValue1, bool ___contextChanged2, const RuntimeMethod* method) { int32_t _offset = 1; AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * _thisAdjusted = reinterpret_cast<AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D *>(__this + _offset); AsyncLocalValueChangedArgs_1__ctor_m35C870EB8F451D9D0916F75F48C8FD4B08AD1FF8(_thisAdjusted, ___previousValue0, ___currentValue1, ___contextChanged2, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.AsyncLocal`1<System.Object>::.ctor(System.Action`1<System.Threading.AsyncLocalValueChangedArgs`1<T>>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncLocal_1__ctor_mBF520B58E9E752F59538039C7EB57E879F5AE8A2_gshared (AsyncLocal_1_tB3967B9BB037A3D4C437E7F0773AFF68802723D9 * __this, Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 * ___valueChangedHandler0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocal_1__ctor_mBF520B58E9E752F59538039C7EB57E879F5AE8A2_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocal_1__ctor_mBF520B58E9E752F59538039C7EB57E879F5AE8A2_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 * L_0 = ___valueChangedHandler0; __this->set_m_valueChangedHandler_0(L_0); return; } } // T System.Threading.AsyncLocal`1<System.Object>::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AsyncLocal_1_get_Value_m37DD33E11005742D98ABE36550991DF58CEE24E6_gshared (AsyncLocal_1_tB3967B9BB037A3D4C437E7F0773AFF68802723D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocal_1_get_Value_m37DD33E11005742D98ABE36550991DF58CEE24E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocal_1_get_Value_m37DD33E11005742D98ABE36550991DF58CEE24E6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ExecutionContext_GetLocalValue_m3763707975927902B9366A1126178DE56063F5E8((RuntimeObject*)__this, /*hidden argument*/NULL); V_0 = (RuntimeObject *)L_0; RuntimeObject * L_1 = V_0; if (!L_1) { goto IL_0011; } } { RuntimeObject * L_2 = V_0; return (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_2, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); } IL_0011: { il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject *)); RuntimeObject * L_3 = V_1; return (RuntimeObject *)L_3; } } // System.Void System.Threading.AsyncLocal`1<System.Object>::set_Value(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncLocal_1_set_Value_m8D6AFEFFA7271575D6B9F60F8F812407431BA2C9_gshared (AsyncLocal_1_tB3967B9BB037A3D4C437E7F0773AFF68802723D9 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocal_1_set_Value_m8D6AFEFFA7271575D6B9F60F8F812407431BA2C9_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocal_1_set_Value_m8D6AFEFFA7271575D6B9F60F8F812407431BA2C9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___value0; Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 * L_1 = (Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 *)__this->get_m_valueChangedHandler_0(); IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var); ExecutionContext_SetLocalValue_mA568451E76B8EA7EBB6B7BD58D5CB91E50D89193((RuntimeObject*)__this, (RuntimeObject *)L_0, (bool)((!(((RuntimeObject*)(Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), /*hidden argument*/NULL); return; } } // System.Void System.Threading.AsyncLocal`1<System.Object>::System.Threading.IAsyncLocal.OnValueChanged(System.Object,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncLocal_1_System_Threading_IAsyncLocal_OnValueChanged_mBD7888E1EB5B5ACBBF150908E671E458E8A0EFA1_gshared (AsyncLocal_1_tB3967B9BB037A3D4C437E7F0773AFF68802723D9 * __this, RuntimeObject * ___previousValueObj0, RuntimeObject * ___currentValueObj1, bool ___contextChanged2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocal_1_System_Threading_IAsyncLocal_OnValueChanged_mBD7888E1EB5B5ACBBF150908E671E458E8A0EFA1_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject * V_2 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocal_1_System_Threading_IAsyncLocal_OnValueChanged_mBD7888E1EB5B5ACBBF150908E671E458E8A0EFA1_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; RuntimeObject * G_B3_0 = NULL; RuntimeObject * G_B6_0 = NULL; { RuntimeObject * L_0 = ___previousValueObj0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___previousValueObj0; G_B3_0 = ((RuntimeObject *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); goto IL_0014; } IL_000b: { il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *)); RuntimeObject * L_2 = V_2; G_B3_0 = L_2; } IL_0014: { V_0 = (RuntimeObject *)G_B3_0; RuntimeObject * L_3 = ___currentValueObj1; if (!L_3) { goto IL_0020; } } { RuntimeObject * L_4 = ___currentValueObj1; G_B6_0 = ((RuntimeObject *)Castclass((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0))); goto IL_0029; } IL_0020: { il2cpp_codegen_initobj((&V_2), sizeof(RuntimeObject *)); RuntimeObject * L_5 = V_2; G_B6_0 = L_5; } IL_0029: { V_1 = (RuntimeObject *)G_B6_0; Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 * L_6 = (Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 *)__this->get_m_valueChangedHandler_0(); RuntimeObject * L_7 = V_0; RuntimeObject * L_8 = V_1; bool L_9 = ___contextChanged2; AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D L_10; memset((&L_10), 0, sizeof(L_10)); AsyncLocalValueChangedArgs_1__ctor_m35C870EB8F451D9D0916F75F48C8FD4B08AD1FF8((&L_10), (RuntimeObject *)L_7, (RuntimeObject *)L_8, (bool)L_9, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); NullCheck((Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 *)L_6); (( void (*) (Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 *, AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Action_1_tC9C78235CE090A8C814E2C458627F15C33AF0180 *)L_6, (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D )L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<T>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparselyPopulatedArrayAddInfo_1__ctor_m1A9D946CCFA8A499F78A0BF45E83C3E51E8AD481_gshared (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * __this, SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * ___source0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArrayAddInfo_1__ctor_m1A9D946CCFA8A499F78A0BF45E83C3E51E8AD481_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArrayAddInfo_1__ctor_m1A9D946CCFA8A499F78A0BF45E83C3E51E8AD481_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_0 = ___source0; __this->set_m_source_0(L_0); int32_t L_1 = ___index1; __this->set_m_index_1(L_1); return; } } IL2CPP_EXTERN_C void SparselyPopulatedArrayAddInfo_1__ctor_m1A9D946CCFA8A499F78A0BF45E83C3E51E8AD481_AdjustorThunk (RuntimeObject * __this, SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * ___source0, int32_t ___index1, const RuntimeMethod* method) { int32_t _offset = 1; SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * _thisAdjusted = reinterpret_cast<SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B *>(__this + _offset); SparselyPopulatedArrayAddInfo_1__ctor_m1A9D946CCFA8A499F78A0BF45E83C3E51E8AD481(_thisAdjusted, ___source0, ___index1, method); } // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_gshared (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_0 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)__this->get_m_source_0(); return (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_0; } } IL2CPP_EXTERN_C SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * _thisAdjusted = reinterpret_cast<SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B *>(__this + _offset); return SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_inline(_thisAdjusted, method); } // System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_gshared (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_m_index_1(); return (int32_t)L_0; } } IL2CPP_EXTERN_C int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * _thisAdjusted = reinterpret_cast<SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B *>(__this + _offset); return SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_inline(_thisAdjusted, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparselyPopulatedArrayFragment_1__ctor_m410909B1376FED0939FF033141563FBDE4FCFD2A_gshared (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * __this, int32_t ___size0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArrayFragment_1__ctor_m410909B1376FED0939FF033141563FBDE4FCFD2A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArrayFragment_1__ctor_m410909B1376FED0939FF033141563FBDE4FCFD2A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = ___size0; NullCheck((SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)__this); (( void (*) (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *, int32_t, SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)__this, (int32_t)L_0, (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::.ctor(System.Int32,System.Threading.SparselyPopulatedArrayFragment`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparselyPopulatedArrayFragment_1__ctor_m6BA064F85BABCC878437B61DDC0A2C4B2715800A_gshared (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * __this, int32_t ___size0, SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * ___prev1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArrayFragment_1__ctor_m6BA064F85BABCC878437B61DDC0A2C4B2715800A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArrayFragment_1__ctor_m6BA064F85BABCC878437B61DDC0A2C4B2715800A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___size0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), (uint32_t)L_0); __this->set_m_elements_0(L_1); int32_t L_2 = ___size0; il2cpp_codegen_memory_barrier(); __this->set_m_freeCount_1(L_2); SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_3 = ___prev1; il2cpp_codegen_memory_barrier(); __this->set_m_prev_3(L_3); return; } } // T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SparselyPopulatedArrayFragment_1_get_Item_m8250124614B9A0DC4F0CAF035E9978BB9990077B_gshared (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArrayFragment_1_get_Item_m8250124614B9A0DC4F0CAF035E9978BB9990077B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArrayFragment_1_get_Item_m8250124614B9A0DC4F0CAF035E9978BB9990077B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get_m_elements_0(); int32_t L_1 = ___index0; NullCheck(L_0); RuntimeObject * L_2 = VolatileRead((RuntimeObject **)(RuntimeObject **)((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)))); return (RuntimeObject *)L_2; } } // System.Int32 System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayFragment_1_get_Length_mBF5C58CC3C4F7647E4CCA1C246108F532B90DFC9_gshared (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArrayFragment_1_get_Length_mBF5C58CC3C4F7647E4CCA1C246108F532B90DFC9_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArrayFragment_1_get_Length_mBF5C58CC3C4F7647E4CCA1C246108F532B90DFC9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get_m_elements_0(); NullCheck(L_0); return (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))); } } // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Prev() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * SparselyPopulatedArrayFragment_1_get_Prev_m5C5B855EDCF34FAE3DAA3A550AFD4BADFAB05B0A_gshared (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArrayFragment_1_get_Prev_m5C5B855EDCF34FAE3DAA3A550AFD4BADFAB05B0A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArrayFragment_1_get_Prev_m5C5B855EDCF34FAE3DAA3A550AFD4BADFAB05B0A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_0 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)__this->get_m_prev_3(); il2cpp_codegen_memory_barrier(); return (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_0; } } // T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::SafeAtomicRemove(System.Int32,T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m1AB1FDBC0781375CA9B068017B5491D9EE2349E7_gshared (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * __this, int32_t ___index0, RuntimeObject * ___expectedElement1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m1AB1FDBC0781375CA9B068017B5491D9EE2349E7_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m1AB1FDBC0781375CA9B068017B5491D9EE2349E7_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; RuntimeObject * G_B2_0 = NULL; RuntimeObject * G_B1_0 = NULL; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get_m_elements_0(); int32_t L_1 = ___index0; NullCheck(L_0); il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_2 = V_0; RuntimeObject * L_3 = ___expectedElement1; RuntimeObject * L_4 = InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1))), (RuntimeObject *)L_2, (RuntimeObject *)L_3); RuntimeObject * L_5 = (RuntimeObject *)L_4; G_B1_0 = L_5; if (!L_5) { G_B2_0 = L_5; goto IL_0035; } } { int32_t L_6 = (int32_t)__this->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); __this->set_m_freeCount_1(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1))); G_B2_0 = G_B1_0; } IL_0035: { return (RuntimeObject *)G_B2_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.SparselyPopulatedArray`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparselyPopulatedArray_1__ctor_m7A1F6A2953F75F7D0F45688384401330C117232D_gshared (SparselyPopulatedArray_1_t93BFED0AE376D58EC4ECF029A2E97C5D7CA80395 * __this, int32_t ___initialSize0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArray_1__ctor_m7A1F6A2953F75F7D0F45688384401330C117232D_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArray_1__ctor_m7A1F6A2953F75F7D0F45688384401330C117232D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___initialSize0; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_1 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); (( void (*) (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(L_1, (int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)); il2cpp_codegen_memory_barrier(); __this->set_m_tail_0(L_1); return; } } // System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::get_Tail() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * SparselyPopulatedArray_1_get_Tail_mA2AA0F79FF9906A900DDCF2B49DC6D435B5A2CB5_gshared (SparselyPopulatedArray_1_t93BFED0AE376D58EC4ECF029A2E97C5D7CA80395 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArray_1_get_Tail_mA2AA0F79FF9906A900DDCF2B49DC6D435B5A2CB5_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArray_1_get_Tail_mA2AA0F79FF9906A900DDCF2B49DC6D435B5A2CB5_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_0 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)__this->get_m_tail_0(); il2cpp_codegen_memory_barrier(); return (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_0; } } // System.Threading.SparselyPopulatedArrayAddInfo`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B SparselyPopulatedArray_1_Add_m469C4150738A88088CC4259E8A69434FD7FBB7B7_gshared (SparselyPopulatedArray_1_t93BFED0AE376D58EC4ECF029A2E97C5D7CA80395 * __this, RuntimeObject * ___element0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArray_1_Add_m469C4150738A88088CC4259E8A69434FD7FBB7B7_MetadataUsageId); s_Il2CppMethodInitialized = true; } SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * V_0 = NULL; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * V_1 = NULL; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; RuntimeObject * V_7 = NULL; int32_t V_8 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArray_1_Add_m469C4150738A88088CC4259E8A69434FD7FBB7B7_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * G_B15_0 = NULL; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * G_B14_0 = NULL; int32_t G_B16_0 = 0; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * G_B16_1 = NULL; int32_t G_B24_0 = 0; IL_0000: { CHECK_PAUSE_POINT; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_0 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)__this->get_m_tail_0(); il2cpp_codegen_memory_barrier(); V_0 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_0; goto IL_001d; } IL_000b: { CHECK_PAUSE_POINT; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_1 = V_0; NullCheck(L_1); SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_2 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_1->get_m_next_2(); il2cpp_codegen_memory_barrier(); SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_3 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_2; V_0 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_3; il2cpp_codegen_memory_barrier(); __this->set_m_tail_0(L_3); } IL_001d: { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_4 = V_0; NullCheck(L_4); SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_5 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_4->get_m_next_2(); il2cpp_codegen_memory_barrier(); if (L_5) { goto IL_000b; } } { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_6 = V_0; V_1 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_6; goto IL_0115; } IL_002e: { CHECK_PAUSE_POINT; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_7 = V_1; NullCheck(L_7); int32_t L_8 = (int32_t)L_7->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_8) >= ((int32_t)1))) { goto IL_004b; } } { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_9 = V_1; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_10 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_9; NullCheck(L_10); int32_t L_11 = (int32_t)L_10->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_10); il2cpp_codegen_memory_barrier(); L_10->set_m_freeCount_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1))); } IL_004b: { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_12 = V_1; NullCheck(L_12); int32_t L_13 = (int32_t)L_12->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_13) > ((int32_t)0))) { goto IL_0065; } } { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_14 = V_1; NullCheck(L_14); int32_t L_15 = (int32_t)L_14->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_15) >= ((int32_t)((int32_t)-10)))) { goto IL_010c; } } IL_0065: { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_16 = V_1; NullCheck((SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_16); int32_t L_17 = (( int32_t (*) (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); V_3 = (int32_t)L_17; int32_t L_18 = V_3; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_19 = V_1; NullCheck(L_19); int32_t L_20 = (int32_t)L_19->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); int32_t L_21 = V_3; V_4 = (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_20))%(int32_t)L_21)); int32_t L_22 = V_4; if ((((int32_t)L_22) >= ((int32_t)0))) { goto IL_0094; } } { V_4 = (int32_t)0; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_23 = V_1; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_24 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_23; NullCheck(L_24); int32_t L_25 = (int32_t)L_24->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_24); il2cpp_codegen_memory_barrier(); L_24->set_m_freeCount_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1))); } IL_0094: { V_5 = (int32_t)0; goto IL_0107; } IL_0099: { CHECK_PAUSE_POINT; int32_t L_26 = V_4; int32_t L_27 = V_5; int32_t L_28 = V_3; V_6 = (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27))%(int32_t)L_28)); SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_29 = V_1; NullCheck(L_29); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_29->get_m_elements_0(); int32_t L_31 = V_6; NullCheck(L_30); int32_t L_32 = L_31; RuntimeObject * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); if (L_33) { goto IL_0101; } } { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_34 = V_1; NullCheck(L_34); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_34->get_m_elements_0(); int32_t L_36 = V_6; NullCheck(L_35); RuntimeObject * L_37 = ___element0; il2cpp_codegen_initobj((&V_7), sizeof(RuntimeObject *)); RuntimeObject * L_38 = V_7; RuntimeObject * L_39 = InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(RuntimeObject **)((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36))), (RuntimeObject *)L_37, (RuntimeObject *)L_38); if (L_39) { goto IL_0101; } } { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_40 = V_1; NullCheck(L_40); int32_t L_41 = (int32_t)L_40->get_m_freeCount_1(); il2cpp_codegen_memory_barrier(); V_8 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1)); SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_42 = V_1; int32_t L_43 = V_8; G_B14_0 = L_42; if ((((int32_t)L_43) > ((int32_t)0))) { G_B15_0 = L_42; goto IL_00ef; } } { G_B16_0 = 0; G_B16_1 = G_B14_0; goto IL_00f1; } IL_00ef: { int32_t L_44 = V_8; G_B16_0 = L_44; G_B16_1 = G_B15_0; } IL_00f1: { NullCheck(G_B16_1); il2cpp_codegen_memory_barrier(); G_B16_1->set_m_freeCount_1(G_B16_0); SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_45 = V_1; int32_t L_46 = V_6; SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B L_47; memset((&L_47), 0, sizeof(L_47)); SparselyPopulatedArrayAddInfo_1__ctor_m1A9D946CCFA8A499F78A0BF45E83C3E51E8AD481((&L_47), (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_45, (int32_t)L_46, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 6)); return (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B )L_47; } IL_0101: { int32_t L_48 = V_5; V_5 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1)); } IL_0107: { int32_t L_49 = V_5; int32_t L_50 = V_3; if ((((int32_t)L_49) < ((int32_t)L_50))) { goto IL_0099; } } IL_010c: { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_51 = V_1; NullCheck(L_51); SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_52 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_51->get_m_prev_3(); il2cpp_codegen_memory_barrier(); V_1 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_52; } IL_0115: { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_53 = V_1; if (L_53) { goto IL_002e; } } { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_54 = V_0; NullCheck(L_54); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_55 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_54->get_m_elements_0(); NullCheck(L_55); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_55)->max_length))))) == ((int32_t)((int32_t)4096)))) { goto IL_0136; } } { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_56 = V_0; NullCheck(L_56); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_57 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_56->get_m_elements_0(); NullCheck(L_57); G_B24_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_57)->max_length)))), (int32_t)2)); goto IL_013b; } IL_0136: { G_B24_0 = ((int32_t)4096); } IL_013b: { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_58 = V_0; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_59 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0)); (( void (*) (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *, int32_t, SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)(L_59, (int32_t)G_B24_0, (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_58, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); V_2 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_59; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_60 = V_0; NullCheck(L_60); SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 ** L_61 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 **)L_60->get_address_of_m_next_2(); il2cpp_codegen_memory_barrier(); SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_62 = V_2; SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_63 = InterlockedCompareExchangeImpl<SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *>((SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 **)(SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 **)L_61, (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_62, (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)NULL); if (L_63) { goto IL_0000; } } { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_64 = V_2; il2cpp_codegen_memory_barrier(); __this->set_m_tail_0(L_64); goto IL_0000; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Shared`1<System.Object>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shared_1__ctor_mCF3BC894D80B61B1BE65133DA767D1B3D88933F2_gshared (Shared_1_t3C840CE94736A1E7956649E5C170991F41D4066A * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Shared_1__ctor_mCF3BC894D80B61B1BE65133DA767D1B3D88933F2_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Shared_1__ctor_mCF3BC894D80B61B1BE65133DA767D1B3D88933F2_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); RuntimeObject * L_0 = ___value0; __this->set_Value_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration>::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Shared_1__ctor_mAFCC38C207B2F85CB2AE05C7C866B8169EAAE24A_gshared (Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 * __this, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Shared_1__ctor_mAFCC38C207B2F85CB2AE05C7C866B8169EAAE24A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Shared_1__ctor_mAFCC38C207B2F85CB2AE05C7C866B8169EAAE24A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_0 = ___value0; __this->set_Value_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::.ctor(System.Threading.Tasks.Task`1<TResult>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemThreadingTasks_FutureDebugView_1__ctor_mDB74B9D5A57303DF8AA1CA557EFAD476590D75CA_gshared (SystemThreadingTasks_FutureDebugView_1_tACDCA09E414A7545E866CBB23AAFD88303AFC295 * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SystemThreadingTasks_FutureDebugView_1__ctor_mDB74B9D5A57303DF8AA1CA557EFAD476590D75CA_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SystemThreadingTasks_FutureDebugView_1__ctor_mDB74B9D5A57303DF8AA1CA557EFAD476590D75CA_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } // TResult System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SystemThreadingTasks_FutureDebugView_1_get_Result_mB187333B3B34BA6E21E7A2E27BF01FCF4B3857EF_gshared (SystemThreadingTasks_FutureDebugView_1_tACDCA09E414A7545E866CBB23AAFD88303AFC295 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SystemThreadingTasks_FutureDebugView_1_get_Result_mB187333B3B34BA6E21E7A2E27BF01FCF4B3857EF_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SystemThreadingTasks_FutureDebugView_1_get_Result_mB187333B3B34BA6E21E7A2E27BF01FCF4B3857EF_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0); int32_t L_1 = Task_get_Status_mE2F9041915F88BAD55956426FDCB259F29D468C1((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) == ((int32_t)5))) { goto IL_0018; } } { il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *)); RuntimeObject * L_2 = V_0; return (RuntimeObject *)L_2; } IL_0018: { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_3 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_3); RuntimeObject * L_4 = (( RuntimeObject * (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return (RuntimeObject *)L_4; } } // System.Object System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_AsyncState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SystemThreadingTasks_FutureDebugView_1_get_AsyncState_m0D3FE981463F7D5D97232FAB96BE343A1BCC3D6D_gshared (SystemThreadingTasks_FutureDebugView_1_tACDCA09E414A7545E866CBB23AAFD88303AFC295 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SystemThreadingTasks_FutureDebugView_1_get_AsyncState_m0D3FE981463F7D5D97232FAB96BE343A1BCC3D6D_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SystemThreadingTasks_FutureDebugView_1_get_AsyncState_m0D3FE981463F7D5D97232FAB96BE343A1BCC3D6D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0); RuntimeObject * L_1 = Task_get_AsyncState_mEE6996D21AD9F92E34A30FA73A7D31A5BCE42657_inline((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); return (RuntimeObject *)L_1; } } // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_CreationOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemThreadingTasks_FutureDebugView_1_get_CreationOptions_m3A5827B7FED8876042CD32BCC2C3EC614EA1CA7E_gshared (SystemThreadingTasks_FutureDebugView_1_tACDCA09E414A7545E866CBB23AAFD88303AFC295 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SystemThreadingTasks_FutureDebugView_1_get_CreationOptions_m3A5827B7FED8876042CD32BCC2C3EC614EA1CA7E_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SystemThreadingTasks_FutureDebugView_1_get_CreationOptions_m3A5827B7FED8876042CD32BCC2C3EC614EA1CA7E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0); int32_t L_1 = Task_get_CreationOptions_m1013CF6F9F645BFA03F13F89DFA749ADABA541C8((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); return (int32_t)L_1; } } // System.Exception System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_Exception() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * SystemThreadingTasks_FutureDebugView_1_get_Exception_m4016937C440FA3A4FCED5F5922B251632B7FD3A6_gshared (SystemThreadingTasks_FutureDebugView_1_tACDCA09E414A7545E866CBB23AAFD88303AFC295 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SystemThreadingTasks_FutureDebugView_1_get_Exception_m4016937C440FA3A4FCED5F5922B251632B7FD3A6_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SystemThreadingTasks_FutureDebugView_1_get_Exception_m4016937C440FA3A4FCED5F5922B251632B7FD3A6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0); AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_1 = Task_get_Exception_mA61AAD3E52CBEB631D1956217B521456E7960B95((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); return (Exception_t *)L_1; } } // System.Int32 System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemThreadingTasks_FutureDebugView_1_get_Id_mC5BE695A71E0B17CB62F699E26DA26605F043919_gshared (SystemThreadingTasks_FutureDebugView_1_tACDCA09E414A7545E866CBB23AAFD88303AFC295 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SystemThreadingTasks_FutureDebugView_1_get_Id_mC5BE695A71E0B17CB62F699E26DA26605F043919_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SystemThreadingTasks_FutureDebugView_1_get_Id_mC5BE695A71E0B17CB62F699E26DA26605F043919_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0); int32_t L_1 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); return (int32_t)L_1; } } // System.Boolean System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_CancellationPending() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SystemThreadingTasks_FutureDebugView_1_get_CancellationPending_m50E1DDDC8FF602F705CF56FA863A79497979B94F_gshared (SystemThreadingTasks_FutureDebugView_1_tACDCA09E414A7545E866CBB23AAFD88303AFC295 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SystemThreadingTasks_FutureDebugView_1_get_CancellationPending_m50E1DDDC8FF602F705CF56FA863A79497979B94F_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SystemThreadingTasks_FutureDebugView_1_get_CancellationPending_m50E1DDDC8FF602F705CF56FA863A79497979B94F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0); int32_t L_1 = Task_get_Status_mE2F9041915F88BAD55956426FDCB259F29D468C1((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_0022; } } { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_2 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_2); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_3 = Task_get_CancellationToken_m3E8D0E96EEC38EC70AEE5F876AF8A0517B463D75((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_2, /*hidden argument*/NULL); V_0 = (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_3; bool L_4 = CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(&V_0), /*hidden argument*/NULL); return (bool)L_4; } IL_0022: { return (bool)0; } } // System.Threading.Tasks.TaskStatus System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>::get_Status() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SystemThreadingTasks_FutureDebugView_1_get_Status_m029BABAE9B49403CB52EB87424A469212CFB12BE_gshared (SystemThreadingTasks_FutureDebugView_1_tACDCA09E414A7545E866CBB23AAFD88303AFC295 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SystemThreadingTasks_FutureDebugView_1_get_Status_m029BABAE9B49403CB52EB87424A469212CFB12BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SystemThreadingTasks_FutureDebugView_1_get_Status_m029BABAE9B49403CB52EB87424A469212CFB12BE_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this->get_m_task_0(); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0); int32_t L_1 = Task_get_Status_mE2F9041915F88BAD55956426FDCB259F29D468C1((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_0, /*hidden argument*/NULL); return (int32_t)L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskFactory`1<System.Boolean>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m81726078B90345F0D7A7F23D10FB1DF21C641C07_gshared (TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_1__ctor_m81726078B90345F0D7A7F23D10FB1DF21C641C07_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskFactory_1__ctor_m81726078B90345F0D7A7F23D10FB1DF21C641C07_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = V_0; NullCheck((TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 *)__this); (( void (*) (TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , int32_t, int32_t, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 *)__this, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Threading.Tasks.TaskFactory`1<System.Boolean>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m6C8BE3015F8F6264840E6A5665455D5325E44CE5_gshared (TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_1__ctor_m6C8BE3015F8F6264840E6A5665455D5325E44CE5_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskFactory_1__ctor_m6C8BE3015F8F6264840E6A5665455D5325E44CE5_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___continuationOptions2; TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640((int32_t)L_0, /*hidden argument*/NULL); int32_t L_1 = ___creationOptions1; TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370((int32_t)L_1, /*hidden argument*/NULL); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = ___cancellationToken0; __this->set_m_defaultCancellationToken_0(L_2); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_3 = ___scheduler3; __this->set_m_defaultScheduler_1(L_3); int32_t L_4 = ___creationOptions1; __this->set_m_defaultCreationOptions_2(L_4); int32_t L_5 = ___continuationOptions2; __this->set_m_defaultContinuationOptions_3(L_5); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskFactory`1<System.Int32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_mCB70351ED04D84754138596AE15CE1BE07662688_gshared (TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_1__ctor_mCB70351ED04D84754138596AE15CE1BE07662688_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskFactory_1__ctor_mCB70351ED04D84754138596AE15CE1BE07662688_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = V_0; NullCheck((TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 *)__this); (( void (*) (TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , int32_t, int32_t, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 *)__this, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Threading.Tasks.TaskFactory`1<System.Int32>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m24B0BDC6C1997B01AF4AE2076109F12FAE651359_gshared (TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_1__ctor_m24B0BDC6C1997B01AF4AE2076109F12FAE651359_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskFactory_1__ctor_m24B0BDC6C1997B01AF4AE2076109F12FAE651359_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___continuationOptions2; TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640((int32_t)L_0, /*hidden argument*/NULL); int32_t L_1 = ___creationOptions1; TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370((int32_t)L_1, /*hidden argument*/NULL); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = ___cancellationToken0; __this->set_m_defaultCancellationToken_0(L_2); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_3 = ___scheduler3; __this->set_m_defaultScheduler_1(L_3); int32_t L_4 = ___creationOptions1; __this->set_m_defaultCreationOptions_2(L_4); int32_t L_5 = ___continuationOptions2; __this->set_m_defaultContinuationOptions_3(L_5); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskFactory`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_mF7EBABF76BCDC881D5A7FAB3EC46335DAEB404BB_gshared (TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_1__ctor_mF7EBABF76BCDC881D5A7FAB3EC46335DAEB404BB_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskFactory_1__ctor_mF7EBABF76BCDC881D5A7FAB3EC46335DAEB404BB_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = V_0; NullCheck((TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C *)__this); (( void (*) (TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , int32_t, int32_t, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C *)__this, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Threading.Tasks.TaskFactory`1<System.Object>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m264753C2342B426F8ABF7184580DCCE10EA239C4_gshared (TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_1__ctor_m264753C2342B426F8ABF7184580DCCE10EA239C4_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskFactory_1__ctor_m264753C2342B426F8ABF7184580DCCE10EA239C4_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___continuationOptions2; TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640((int32_t)L_0, /*hidden argument*/NULL); int32_t L_1 = ___creationOptions1; TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370((int32_t)L_1, /*hidden argument*/NULL); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = ___cancellationToken0; __this->set_m_defaultCancellationToken_0(L_2); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_3 = ___scheduler3; __this->set_m_defaultScheduler_1(L_3); int32_t L_4 = ___creationOptions1; __this->set_m_defaultCreationOptions_2(L_4); int32_t L_5 = ___continuationOptions2; __this->set_m_defaultContinuationOptions_3(L_5); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_m41A6F0A24C1A6B40A42112AEE3C519D55C19B947_gshared (TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_1__ctor_m41A6F0A24C1A6B40A42112AEE3C519D55C19B947_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskFactory_1__ctor_m41A6F0A24C1A6B40A42112AEE3C519D55C19B947_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = V_0; NullCheck((TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D *)__this); (( void (*) (TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , int32_t, int32_t, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D *)__this, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_0, (int32_t)0, (int32_t)0, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); return; } } // System.Void System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_1__ctor_mF0CF0F845F7DAD367609B618C7CFB8751BDE0251_gshared (TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_1__ctor_mF0CF0F845F7DAD367609B618C7CFB8751BDE0251_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskFactory_1__ctor_mF0CF0F845F7DAD367609B618C7CFB8751BDE0251_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); int32_t L_0 = ___continuationOptions2; TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640((int32_t)L_0, /*hidden argument*/NULL); int32_t L_1 = ___creationOptions1; TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370((int32_t)L_1, /*hidden argument*/NULL); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = ___cancellationToken0; __this->set_m_defaultCancellationToken_0(L_2); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_3 = ___scheduler3; __this->set_m_defaultScheduler_1(L_3); int32_t L_4 = ___creationOptions1; __this->set_m_defaultCreationOptions_2(L_4); int32_t L_5 = ___continuationOptions2; __this->set_m_defaultContinuationOptions_3(L_5); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task`1_<>c<System.Boolean>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mD10BEC9FAFD3552DDB9FF483CCFD7F6699C36D20_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__cctor_mD10BEC9FAFD3552DDB9FF483CCFD7F6699C36D20_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec__cctor_mD10BEC9FAFD3552DDB9FF483CCFD7F6699C36D20_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5 * L_0 = (U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)); (( void (*) (U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); ((U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->set_U3CU3E9_0(L_0); return; } } // System.Void System.Threading.Tasks.Task`1_<>c<System.Boolean>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m38624AEE489E484C88102D32E2757B630841CF24_gshared (U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__ctor_m38624AEE489E484C88102D32E2757B630841CF24_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec__ctor_m38624AEE489E484C88102D32E2757B630841CF24_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1_<>c<System.Boolean>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * U3CU3Ec_U3C_cctorU3Eb__64_0_m772E3C0036762E0FE901B45A1BE3F005355C0D0C_gshared (U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5 * __this, Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * ___completed0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__64_0_m772E3C0036762E0FE901B45A1BE3F005355C0D0C_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec_U3C_cctorU3Eb__64_0_m772E3C0036762E0FE901B45A1BE3F005355C0D0C_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * L_0 = ___completed0; NullCheck((Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 *)L_0); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = Task_1_get_Result_m723545759DF19A9171742042E0610CAF7E9C3568((Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 *)L_0, /*hidden argument*/Task_1_get_Result_m723545759DF19A9171742042E0610CAF7E9C3568_RuntimeMethod_var); return (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task`1_<>c<System.Int32>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m50CFD009EBEE56D078E9600E0A0706D18977484A_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m50CFD009EBEE56D078E9600E0A0706D18977484A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec__cctor_m50CFD009EBEE56D078E9600E0A0706D18977484A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5 * L_0 = (U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)); (( void (*) (U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); ((U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->set_U3CU3E9_0(L_0); return; } } // System.Void System.Threading.Tasks.Task`1_<>c<System.Int32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mB1669AAE5AD5631E68DAA10DB87C9B340EDF2DE5_gshared (U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__ctor_mB1669AAE5AD5631E68DAA10DB87C9B340EDF2DE5_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec__ctor_mB1669AAE5AD5631E68DAA10DB87C9B340EDF2DE5_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1_<>c<System.Int32>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * U3CU3Ec_U3C_cctorU3Eb__64_0_mBDCCDBE549EA6CA48D2D1F3EB018791C6391166B_gshared (U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5 * __this, Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * ___completed0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__64_0_mBDCCDBE549EA6CA48D2D1F3EB018791C6391166B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec_U3C_cctorU3Eb__64_0_mBDCCDBE549EA6CA48D2D1F3EB018791C6391166B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * L_0 = ___completed0; NullCheck((Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 *)L_0); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = Task_1_get_Result_m723545759DF19A9171742042E0610CAF7E9C3568((Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 *)L_0, /*hidden argument*/Task_1_get_Result_m723545759DF19A9171742042E0610CAF7E9C3568_RuntimeMethod_var); return (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task`1_<>c<System.Object>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m560F0C908B4C534050E4AEDF477E06F305ABC000_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m560F0C908B4C534050E4AEDF477E06F305ABC000_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec__cctor_m560F0C908B4C534050E4AEDF477E06F305ABC000_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4 * L_0 = (U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)); (( void (*) (U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); ((U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->set_U3CU3E9_0(L_0); return; } } // System.Void System.Threading.Tasks.Task`1_<>c<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m0EB02C13EE46DC6FCC797FA3876DA8AB2FB5FA93_gshared (U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__ctor_m0EB02C13EE46DC6FCC797FA3876DA8AB2FB5FA93_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec__ctor_m0EB02C13EE46DC6FCC797FA3876DA8AB2FB5FA93_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1_<>c<System.Object>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * U3CU3Ec_U3C_cctorU3Eb__64_0_m933EE40969AAD17F3625204FB1ECF2105BFA3DC3_gshared (U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4 * __this, Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * ___completed0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__64_0_m933EE40969AAD17F3625204FB1ECF2105BFA3DC3_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec_U3C_cctorU3Eb__64_0_m933EE40969AAD17F3625204FB1ECF2105BFA3DC3_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * L_0 = ___completed0; NullCheck((Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 *)L_0); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = Task_1_get_Result_m723545759DF19A9171742042E0610CAF7E9C3568((Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 *)L_0, /*hidden argument*/Task_1_get_Result_m723545759DF19A9171742042E0610CAF7E9C3568_RuntimeMethod_var); return (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task`1_<>c<System.Threading.Tasks.VoidTaskResult>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m6505B87C516A190EC07E4861911C3123119AD05A_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m6505B87C516A190EC07E4861911C3123119AD05A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec__cctor_m6505B87C516A190EC07E4861911C3123119AD05A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893 * L_0 = (U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0)); (( void (*) (U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1)); ((U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->set_U3CU3E9_0(L_0); return; } } // System.Void System.Threading.Tasks.Task`1_<>c<System.Threading.Tasks.VoidTaskResult>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mA23DBC22818F0D9EBFC6BF1DADB358EDA82414B9_gshared (U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__ctor_mA23DBC22818F0D9EBFC6BF1DADB358EDA82414B9_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec__ctor_mA23DBC22818F0D9EBFC6BF1DADB358EDA82414B9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((RuntimeObject *)__this); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0((RuntimeObject *)__this, /*hidden argument*/NULL); return; } } // System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task`1_<>c<System.Threading.Tasks.VoidTaskResult>::<.cctor>b__64_0(System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * U3CU3Ec_U3C_cctorU3Eb__64_0_mB4EA2EFED31C2B44F2439B6CC9D956DABE18C579_gshared (U3CU3Ec_t08F2DBEFC89AC9DC915D17B4BBD89DDA5A459893 * __this, Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * ___completed0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__64_0_mB4EA2EFED31C2B44F2439B6CC9D956DABE18C579_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, U3CU3Ec_U3C_cctorU3Eb__64_0_mB4EA2EFED31C2B44F2439B6CC9D956DABE18C579_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * L_0 = ___completed0; NullCheck((Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 *)L_0); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = Task_1_get_Result_m723545759DF19A9171742042E0610CAF7E9C3568((Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 *)L_0, /*hidden argument*/Task_1_get_Result_m723545759DF19A9171742042E0610CAF7E9C3568_RuntimeMethod_var); return (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)((Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 3))); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m7891CB01EB20826147070EA4906F804ACF5402E0_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m7891CB01EB20826147070EA4906F804ACF5402E0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m7891CB01EB20826147070EA4906F804ACF5402E0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m8E1D8C0B00CDBC75BE82736DC129396F79B7A84D((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m0A3A6225A5B5378BB8B6CB10C248F7904FA91BF4_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, bool ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m0A3A6225A5B5378BB8B6CB10C248F7904FA91BF4_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m0A3A6225A5B5378BB8B6CB10C248F7904FA91BF4_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m61EE08D52F4C76A4D8E44B826F02724920D3425B((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)0, (int32_t)0, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_0, /*hidden argument*/NULL); bool L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m3A414F98FA833365D5DFA9DBBFD275B886CDFEAD_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, bool ___canceled0, bool ___result1, int32_t ___creationOptions2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___ct3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m3A414F98FA833365D5DFA9DBBFD275B886CDFEAD_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m3A414F98FA833365D5DFA9DBBFD275B886CDFEAD_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = ___canceled0; int32_t L_1 = ___creationOptions2; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = ___ct3; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m61EE08D52F4C76A4D8E44B826F02724920D3425B((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)L_0, (int32_t)L_1, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_2, /*hidden argument*/NULL); bool L_3 = ___canceled0; if (L_3) { goto IL_0014; } } { bool L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_mB7D5AA53007C0310ED213C0008D89E1942E5F629_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * ___function0, RuntimeObject * ___state1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_mB7D5AA53007C0310ED213C0008D89E1942E5F629_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_mB7D5AA53007C0310ED213C0008D89E1942E5F629_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_0 = ___function0; RuntimeObject * L_1 = ___state1; int32_t L_2 = ___creationOptions3; IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_3 = Task_InternalCurrentIfAttached_mA6A2C11F69612C4A960BC1FC6BD4E4D181D26A3B((int32_t)L_2, /*hidden argument*/NULL); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_4 = ___cancellationToken2; int32_t L_5 = ___creationOptions3; NullCheck((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this); (( void (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, Delegate_t *, RuntimeObject *, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , int32_t, int32_t, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_3, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_4, (int32_t)L_5, (int32_t)0, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); V_0 = (int32_t)1; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_PossiblyCaptureContext_m0DB8D1ADD84B044BEBC0A692E45577D2B7ADFDA8((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m87E6AE95DBC2E864EC279359D3918B3B51ED8D37_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, Delegate_t * ___valueSelector0, RuntimeObject * ___state1, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___parent2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m87E6AE95DBC2E864EC279359D3918B3B51ED8D37_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m87E6AE95DBC2E864EC279359D3918B3B51ED8D37_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Delegate_t * L_0 = ___valueSelector0; RuntimeObject * L_1 = ___state1; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_2 = ___parent2; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_3 = ___cancellationToken3; int32_t L_4 = ___creationOptions4; int32_t L_5 = ___internalOptions5; TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_6 = ___scheduler6; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m0769EBAC32FC56E43AA3EA4697369AD1C68508CC((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_2, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)L_6, /*hidden argument*/NULL); int32_t L_7 = ___internalOptions5; if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048)))) { goto IL_0030; } } { String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteralB074C920DAB17C140FA8E906179F603DBCE3EC79, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, (String_t*)_stringLiteral699B142A794903652E588B3D75019329F77A9209, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Task_1__ctor_m87E6AE95DBC2E864EC279359D3918B3B51ED8D37_RuntimeMethod_var); } IL_0030: { return; } } // System.String System.Threading.Tasks.Task`1<System.Boolean>::get_DebuggerDisplayResultDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayResultDescription_mFFA5DCF72FAEB415244ACCDF76B8E552DC72E233_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_DebuggerDisplayResultDescription_mFFA5DCF72FAEB415244ACCDF76B8E552DC72E233_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_DebuggerDisplayResultDescription_mFFA5DCF72FAEB415244ACCDF76B8E552DC72E233_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsRanToCompletion_mCCFB04975336938D365F65C71C75A38CFE3721BC((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral1EF7700DEF2F08593CD7569A4AE5AE2D9B84F07B, /*hidden argument*/NULL); return (String_t*)L_1; } IL_0013: { bool L_2 = (bool)__this->get_m_result_22(); bool L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_3); String_t* L_5 = String_Concat_m798542DE19B3F02DC4F4B777BB2E73169F129DE1((RuntimeObject *)L_4, /*hidden argument*/NULL); return (String_t*)L_5; } } // System.String System.Threading.Tasks.Task`1<System.Boolean>::get_DebuggerDisplayMethodDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayMethodDescription_m80AC347CA4971A596AE432B94DFF5860665A9FAA_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_DebuggerDisplayMethodDescription_m80AC347CA4971A596AE432B94DFF5860665A9FAA_MetadataUsageId); s_Il2CppMethodInitialized = true; } Delegate_t * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_DebuggerDisplayMethodDescription_m80AC347CA4971A596AE432B94DFF5860665A9FAA_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_action_5(); V_0 = (Delegate_t *)((Delegate_t *)Castclass((RuntimeObject*)L_0, Delegate_t_il2cpp_TypeInfo_var)); Delegate_t * L_1 = V_0; if (L_1) { goto IL_0015; } } { return (String_t*)_stringLiteralF33F6BBE3C398D35275BA44A4895220984E8D4A6; } IL_0015: { Delegate_t * L_2 = V_0; NullCheck((Delegate_t *)L_2); MethodInfo_t * L_3 = Delegate_get_Method_m0AC85D2B0C4CA63C471BC37FFDC3A5EA1E8ED048((Delegate_t *)L_2, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3); return (String_t*)L_4; } } // System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_mFC68BAD2AD67B63EF8E248E06F6C1819EF13A10E_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, bool ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetResult_mFC68BAD2AD67B63EF8E248E06F6C1819EF13A10E_MetadataUsageId); s_Il2CppMethodInitialized = true; } ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetResult_mFC68BAD2AD67B63EF8E248E06F6C1819EF13A10E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (!L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_1 = Task_AtomicStateUpdate_m8453A8B2D404F085626BC0BCFCB2593AA373F530((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_1) { goto IL_0057; } } { bool L_2 = ___result0; __this->set_m_result_22(L_2); int32_t* L_3 = (int32_t*)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_address_of_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); int32_t L_4 = (int32_t)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); Interlocked_Exchange_mD5CC61AF0F002355912FAAF84F26BE93639B5FD5((int32_t*)(int32_t*)L_3, (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216))), /*hidden argument*/NULL); ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * L_5 = (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_contingentProperties_15(); il2cpp_codegen_memory_barrier(); V_0 = (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)L_5; ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * L_6 = V_0; if (!L_6) { goto IL_004f; } } { ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * L_7 = V_0; NullCheck((ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)L_7); ContingentProperties_SetCompleted_m3CB1941CBE9F1D241A2AFA4E3F739C98B493E6DE((ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)L_7, /*hidden argument*/NULL); } IL_004f: { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_FinishStageThree_m543744E8C5DFC94B2F2898998663C85617999E32((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); return (bool)1; } IL_0057: { return (bool)0; } } // TResult System.Threading.Tasks.Task`1<System.Boolean>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_get_Result_m45FAB4C705F7450AA70A3D1AC57F5FE7587D87AE_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_Result_m45FAB4C705F7450AA70A3D1AC57F5FE7587D87AE_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_Result_m45FAB4C705F7450AA70A3D1AC57F5FE7587D87AE_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_mEC26269ABD71D03847D81120160D2106C2B3D581_inline((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000f; } } { bool L_1 = (bool)__this->get_m_result_22(); return (bool)L_1; } IL_000f: { NullCheck((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this); bool L_2 = (( bool (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (bool)L_2; } } // TResult System.Threading.Tasks.Task`1<System.Boolean>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_get_ResultOnSuccess_mA573D5AD0C0B331815A82D31C4D4928DED52C575_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_ResultOnSuccess_mA573D5AD0C0B331815A82D31C4D4928DED52C575_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_ResultOnSuccess_mA573D5AD0C0B331815A82D31C4D4928DED52C575_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_m_result_22(); return (bool)L_0; } } // TResult System.Threading.Tasks.Task`1<System.Boolean>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_GetResultCore_m7C02E4418D32F519D55AE8DF42759C02688B3953_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, bool ___waitCompletionNotification0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_GetResultCore_m7C02E4418D32F519D55AE8DF42759C02688B3953_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_GetResultCore_m7C02E4418D32F519D55AE8DF42759C02688B3953_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0019; } } { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_InternalWait_m7F1436A365C066C8D9BDEB6740118206B0EFAD45((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)(-1), (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, /*hidden argument*/NULL); } IL_0019: { bool L_2 = ___waitCompletionNotification0; if (!L_2) { goto IL_0023; } } { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_NotifyDebuggerOfWaitCompletionIfNecessary_m71ACB838EB1988C1436F99C7EB0C819D9F025E2A((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); } IL_0023: { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_3 = Task_get_IsRanToCompletion_mCCFB04975336938D365F65C71C75A38CFE3721BC((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_3) { goto IL_0032; } } { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_ThrowIfExceptional_m57A30F74DDD3039C2EB41FA235A897626CE23A37((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)1, /*hidden argument*/NULL); } IL_0032: { bool L_4 = (bool)__this->get_m_result_22(); return (bool)L_4; } } // System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m7707A1E606F28CF340B48150E98D0D7EDD44EB69_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetException_m7707A1E606F28CF340B48150E98D0D7EDD44EB69_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetException_m7707A1E606F28CF340B48150E98D0D7EDD44EB69_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { V_0 = (bool)0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_EnsureContingentPropertiesInitialized_mFEF35F7CCA43B6FC6843167E62779F6C09100475((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)1, /*hidden argument*/NULL); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_AtomicStateUpdate_m8453A8B2D404F085626BC0BCFCB2593AA373F530((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_0) { goto IL_002c; } } { RuntimeObject * L_1 = ___exceptionObject0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_AddException_m07648B13C5D6B6517EEC4C84D5C022965ED1AE54((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (RuntimeObject *)L_1, /*hidden argument*/NULL); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_Finish_m3CBED2C27D7A1E20A9D2A659D4DEA38FCC47DF8F((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)0, /*hidden argument*/NULL); V_0 = (bool)1; } IL_002c: { bool L_2 = V_0; return (bool)L_2; } } // System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mD749E76D7E6FA3AB266A4EA52A42D86494D4A237_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___tokenToRecord0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetCanceled_mD749E76D7E6FA3AB266A4EA52A42D86494D4A237_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetCanceled_mD749E76D7E6FA3AB266A4EA52A42D86494D4A237_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = ___tokenToRecord0; NullCheck((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this); bool L_1 = (( bool (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.Boolean>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mDB8ECFE83613228B10AC4F3BC9FE73A8686F85CC_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetCanceled_mDB8ECFE83613228B10AC4F3BC9FE73A8686F85CC_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetCanceled_mDB8ECFE83613228B10AC4F3BC9FE73A8686F85CC_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { V_0 = (bool)0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_AtomicStateUpdate_m8453A8B2D404F085626BC0BCFCB2593AA373F530((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_0) { goto IL_0024; } } { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = ___tokenToRecord0; RuntimeObject * L_2 = ___cancellationException1; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_RecordInternalCancellationRequest_m013F01E4EAD86112C78A242191F3A3887F0A15BB((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_CancellationCleanupLogic_m85636A9F2412CDC73F9CFC7CEB87A3C48ECF6BB2((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0024: { bool L_3 = V_0; return (bool)L_3; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m08CF8E48F076997870E45BC7AA065A65AF7FE8BF_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_InnerInvoke_m08CF8E48F076997870E45BC7AA065A65AF7FE8BF_MetadataUsageId); s_Il2CppMethodInitialized = true; } Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 * V_0 = NULL; Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * V_1 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_InnerInvoke_m08CF8E48F076997870E45BC7AA065A65AF7FE8BF_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_action_5(); V_0 = (Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 *)((Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 * L_2 = V_0; NullCheck((Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 *)L_2); bool L_3 = (( bool (*) (Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_1_t4ABD6DAD480574F152452DD6B9C9A55F4F6655F1 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_m_result_22(L_3); return; } IL_001c: { RuntimeObject * L_4 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_action_5(); V_1 = (Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *)((Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))); Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *)L_6); bool L_8 = (( bool (*) (Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t4B4B1E74248F38404B56001A709D81142DE730CC *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 Task_1_GetAwaiter_mACFDCEB6FCFDFCFADAD84AB06A6DC16BAE77948E_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_GetAwaiter_mACFDCEB6FCFDFCFADAD84AB06A6DC16BAE77948E_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_GetAwaiter_mACFDCEB6FCFDFCFADAD84AB06A6DC16BAE77948E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_inline((&L_0), (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Boolean>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 Task_1_ConfigureAwait_mAB7D38722C432C9FB07D4BE72C9B964D5476810A_gshared (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_ConfigureAwait_mAB7D38722C432C9FB07D4BE72C9B964D5476810A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_ConfigureAwait_mAB7D38722C432C9FB07D4BE72C9B964D5476810A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_mFB57BDDFCD7717F4EFBA0C41312C99E8E24D31C7((&L_1), (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return (ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.Boolean>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_mB6C10F48526D783AC04DA5A0138366BE1074BD03_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__cctor_mB6C10F48526D783AC04DA5A0138366BE1074BD03_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__cctor_mB6C10F48526D783AC04DA5A0138366BE1074BD03_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 * L_0 = (TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)); (( void (*) (TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); ((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)); U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5 * L_1 = ((U3CU3Ec_tD71A5F96A3431AAA33048231782AA3E1406CFCC5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)))->get_U3CU3E9_0(); Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C * L_2 = (Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_TaskWhenAnyCast_24(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m99E038A55993AA4AEB326D8DF036B42506038010_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m99E038A55993AA4AEB326D8DF036B42506038010_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m99E038A55993AA4AEB326D8DF036B42506038010_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m8E1D8C0B00CDBC75BE82736DC129396F79B7A84D((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m296739F870489EEFB5452CB0CA922094E914BE89_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, int32_t ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m296739F870489EEFB5452CB0CA922094E914BE89_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m296739F870489EEFB5452CB0CA922094E914BE89_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m61EE08D52F4C76A4D8E44B826F02724920D3425B((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)0, (int32_t)0, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_0, /*hidden argument*/NULL); int32_t L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m0C8160A512539A2BA41821CFD126F247FEDAE7FD_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, bool ___canceled0, int32_t ___result1, int32_t ___creationOptions2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___ct3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m0C8160A512539A2BA41821CFD126F247FEDAE7FD_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m0C8160A512539A2BA41821CFD126F247FEDAE7FD_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = ___canceled0; int32_t L_1 = ___creationOptions2; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = ___ct3; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m61EE08D52F4C76A4D8E44B826F02724920D3425B((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)L_0, (int32_t)L_1, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_2, /*hidden argument*/NULL); bool L_3 = ___canceled0; if (L_3) { goto IL_0014; } } { int32_t L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_m204E1CC1F2D6FFDB95821FF3E91C102C6CFACB4F_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ___function0, RuntimeObject * ___state1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m204E1CC1F2D6FFDB95821FF3E91C102C6CFACB4F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m204E1CC1F2D6FFDB95821FF3E91C102C6CFACB4F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_0 = ___function0; RuntimeObject * L_1 = ___state1; int32_t L_2 = ___creationOptions3; IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_3 = Task_InternalCurrentIfAttached_mA6A2C11F69612C4A960BC1FC6BD4E4D181D26A3B((int32_t)L_2, /*hidden argument*/NULL); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_4 = ___cancellationToken2; int32_t L_5 = ___creationOptions3; NullCheck((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this); (( void (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, Delegate_t *, RuntimeObject *, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , int32_t, int32_t, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_3, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_4, (int32_t)L_5, (int32_t)0, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); V_0 = (int32_t)1; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_PossiblyCaptureContext_m0DB8D1ADD84B044BEBC0A692E45577D2B7ADFDA8((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m547E9FC9104980C9A31340A40C5DBD6ED0EF9662_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, Delegate_t * ___valueSelector0, RuntimeObject * ___state1, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___parent2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m547E9FC9104980C9A31340A40C5DBD6ED0EF9662_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m547E9FC9104980C9A31340A40C5DBD6ED0EF9662_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Delegate_t * L_0 = ___valueSelector0; RuntimeObject * L_1 = ___state1; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_2 = ___parent2; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_3 = ___cancellationToken3; int32_t L_4 = ___creationOptions4; int32_t L_5 = ___internalOptions5; TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_6 = ___scheduler6; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m0769EBAC32FC56E43AA3EA4697369AD1C68508CC((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_2, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)L_6, /*hidden argument*/NULL); int32_t L_7 = ___internalOptions5; if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048)))) { goto IL_0030; } } { String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteralB074C920DAB17C140FA8E906179F603DBCE3EC79, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, (String_t*)_stringLiteral699B142A794903652E588B3D75019329F77A9209, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Task_1__ctor_m547E9FC9104980C9A31340A40C5DBD6ED0EF9662_RuntimeMethod_var); } IL_0030: { return; } } // System.String System.Threading.Tasks.Task`1<System.Int32>::get_DebuggerDisplayResultDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayResultDescription_m99D5522BDAF99C53DDFE796ED685C58B61A20BD0_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_DebuggerDisplayResultDescription_m99D5522BDAF99C53DDFE796ED685C58B61A20BD0_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_DebuggerDisplayResultDescription_m99D5522BDAF99C53DDFE796ED685C58B61A20BD0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsRanToCompletion_mCCFB04975336938D365F65C71C75A38CFE3721BC((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral1EF7700DEF2F08593CD7569A4AE5AE2D9B84F07B, /*hidden argument*/NULL); return (String_t*)L_1; } IL_0013: { int32_t L_2 = (int32_t)__this->get_m_result_22(); int32_t L_3 = L_2; RuntimeObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_3); String_t* L_5 = String_Concat_m798542DE19B3F02DC4F4B777BB2E73169F129DE1((RuntimeObject *)L_4, /*hidden argument*/NULL); return (String_t*)L_5; } } // System.String System.Threading.Tasks.Task`1<System.Int32>::get_DebuggerDisplayMethodDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayMethodDescription_m6A350CE8815D0723DDFC7D94AAA0FE49074D47F3_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_DebuggerDisplayMethodDescription_m6A350CE8815D0723DDFC7D94AAA0FE49074D47F3_MetadataUsageId); s_Il2CppMethodInitialized = true; } Delegate_t * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_DebuggerDisplayMethodDescription_m6A350CE8815D0723DDFC7D94AAA0FE49074D47F3_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_action_5(); V_0 = (Delegate_t *)((Delegate_t *)Castclass((RuntimeObject*)L_0, Delegate_t_il2cpp_TypeInfo_var)); Delegate_t * L_1 = V_0; if (L_1) { goto IL_0015; } } { return (String_t*)_stringLiteralF33F6BBE3C398D35275BA44A4895220984E8D4A6; } IL_0015: { Delegate_t * L_2 = V_0; NullCheck((Delegate_t *)L_2); MethodInfo_t * L_3 = Delegate_get_Method_m0AC85D2B0C4CA63C471BC37FFDC3A5EA1E8ED048((Delegate_t *)L_2, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3); return (String_t*)L_4; } } // System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m38F5C35F41BC393435AC1CF161290BA66B27D3F6_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, int32_t ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetResult_m38F5C35F41BC393435AC1CF161290BA66B27D3F6_MetadataUsageId); s_Il2CppMethodInitialized = true; } ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetResult_m38F5C35F41BC393435AC1CF161290BA66B27D3F6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (!L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_1 = Task_AtomicStateUpdate_m8453A8B2D404F085626BC0BCFCB2593AA373F530((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_1) { goto IL_0057; } } { int32_t L_2 = ___result0; __this->set_m_result_22(L_2); int32_t* L_3 = (int32_t*)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_address_of_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); int32_t L_4 = (int32_t)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); Interlocked_Exchange_mD5CC61AF0F002355912FAAF84F26BE93639B5FD5((int32_t*)(int32_t*)L_3, (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216))), /*hidden argument*/NULL); ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * L_5 = (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_contingentProperties_15(); il2cpp_codegen_memory_barrier(); V_0 = (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)L_5; ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * L_6 = V_0; if (!L_6) { goto IL_004f; } } { ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * L_7 = V_0; NullCheck((ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)L_7); ContingentProperties_SetCompleted_m3CB1941CBE9F1D241A2AFA4E3F739C98B493E6DE((ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)L_7, /*hidden argument*/NULL); } IL_004f: { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_FinishStageThree_m543744E8C5DFC94B2F2898998663C85617999E32((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); return (bool)1; } IL_0057: { return (bool)0; } } // TResult System.Threading.Tasks.Task`1<System.Int32>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_mEC26269ABD71D03847D81120160D2106C2B3D581_inline((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000f; } } { int32_t L_1 = (int32_t)__this->get_m_result_22(); return (int32_t)L_1; } IL_000f: { NullCheck((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this); int32_t L_2 = (( int32_t (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (int32_t)L_2; } } // TResult System.Threading.Tasks.Task`1<System.Int32>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_1_get_ResultOnSuccess_m843D91F8565061877BE801921DFB8C39112B1FBE_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_ResultOnSuccess_m843D91F8565061877BE801921DFB8C39112B1FBE_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_ResultOnSuccess_m843D91F8565061877BE801921DFB8C39112B1FBE_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_m_result_22(); return (int32_t)L_0; } } // TResult System.Threading.Tasks.Task`1<System.Int32>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_1_GetResultCore_mD5A626240E7764CDCE20ECA29E4AD60C72956A96_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, bool ___waitCompletionNotification0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_GetResultCore_mD5A626240E7764CDCE20ECA29E4AD60C72956A96_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_GetResultCore_mD5A626240E7764CDCE20ECA29E4AD60C72956A96_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0019; } } { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_InternalWait_m7F1436A365C066C8D9BDEB6740118206B0EFAD45((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)(-1), (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, /*hidden argument*/NULL); } IL_0019: { bool L_2 = ___waitCompletionNotification0; if (!L_2) { goto IL_0023; } } { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_NotifyDebuggerOfWaitCompletionIfNecessary_m71ACB838EB1988C1436F99C7EB0C819D9F025E2A((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); } IL_0023: { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_3 = Task_get_IsRanToCompletion_mCCFB04975336938D365F65C71C75A38CFE3721BC((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_3) { goto IL_0032; } } { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_ThrowIfExceptional_m57A30F74DDD3039C2EB41FA235A897626CE23A37((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)1, /*hidden argument*/NULL); } IL_0032: { int32_t L_4 = (int32_t)__this->get_m_result_22(); return (int32_t)L_4; } } // System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_mF98ADB3D7D0CA8874536F59F62D2DAE11093AD45_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetException_mF98ADB3D7D0CA8874536F59F62D2DAE11093AD45_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetException_mF98ADB3D7D0CA8874536F59F62D2DAE11093AD45_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { V_0 = (bool)0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_EnsureContingentPropertiesInitialized_mFEF35F7CCA43B6FC6843167E62779F6C09100475((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)1, /*hidden argument*/NULL); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_AtomicStateUpdate_m8453A8B2D404F085626BC0BCFCB2593AA373F530((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_0) { goto IL_002c; } } { RuntimeObject * L_1 = ___exceptionObject0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_AddException_m07648B13C5D6B6517EEC4C84D5C022965ED1AE54((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (RuntimeObject *)L_1, /*hidden argument*/NULL); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_Finish_m3CBED2C27D7A1E20A9D2A659D4DEA38FCC47DF8F((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)0, /*hidden argument*/NULL); V_0 = (bool)1; } IL_002c: { bool L_2 = V_0; return (bool)L_2; } } // System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m14A73C54A1A5FDFB9C9A6E5E8E7AFB2166E629A8_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___tokenToRecord0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetCanceled_m14A73C54A1A5FDFB9C9A6E5E8E7AFB2166E629A8_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetCanceled_m14A73C54A1A5FDFB9C9A6E5E8E7AFB2166E629A8_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = ___tokenToRecord0; NullCheck((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this); bool L_1 = (( bool (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.Int32>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mEE19AE4EEF9946C551126531BEEB24385A75336E_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetCanceled_mEE19AE4EEF9946C551126531BEEB24385A75336E_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetCanceled_mEE19AE4EEF9946C551126531BEEB24385A75336E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { V_0 = (bool)0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_AtomicStateUpdate_m8453A8B2D404F085626BC0BCFCB2593AA373F530((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_0) { goto IL_0024; } } { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = ___tokenToRecord0; RuntimeObject * L_2 = ___cancellationException1; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_RecordInternalCancellationRequest_m013F01E4EAD86112C78A242191F3A3887F0A15BB((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_CancellationCleanupLogic_m85636A9F2412CDC73F9CFC7CEB87A3C48ECF6BB2((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0024: { bool L_3 = V_0; return (bool)L_3; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m5642BBCE224B9FA860D2741A00E0C582057B7A67_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_InnerInvoke_m5642BBCE224B9FA860D2741A00E0C582057B7A67_MetadataUsageId); s_Il2CppMethodInitialized = true; } Func_1_t30631A63BE46FE93700939B764202D360449FE30 * V_0 = NULL; Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * V_1 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_InnerInvoke_m5642BBCE224B9FA860D2741A00E0C582057B7A67_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_action_5(); V_0 = (Func_1_t30631A63BE46FE93700939B764202D360449FE30 *)((Func_1_t30631A63BE46FE93700939B764202D360449FE30 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Func_1_t30631A63BE46FE93700939B764202D360449FE30 * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_t30631A63BE46FE93700939B764202D360449FE30 * L_2 = V_0; NullCheck((Func_1_t30631A63BE46FE93700939B764202D360449FE30 *)L_2); int32_t L_3 = (( int32_t (*) (Func_1_t30631A63BE46FE93700939B764202D360449FE30 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_1_t30631A63BE46FE93700939B764202D360449FE30 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_m_result_22(L_3); return; } IL_001c: { RuntimeObject * L_4 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_action_5(); V_1 = (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *)((Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))); Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *)L_6); int32_t L_8 = (( int32_t (*) (Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_GetAwaiter_m1790A95348F068EC872F396AA1FF0D4154A657D3_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_inline((&L_0), (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Int32>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_m9038EF920A0F90A746627FF394F3A44ED51CFB21((&L_1), (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.Int32>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_m2FA7F8AA88B303EAA88BEA4456B41782D1AF6D94_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__cctor_m2FA7F8AA88B303EAA88BEA4456B41782D1AF6D94_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__cctor_m2FA7F8AA88B303EAA88BEA4456B41782D1AF6D94_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * L_0 = (TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)); (( void (*) (TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); ((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)); U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5 * L_1 = ((U3CU3Ec_tDCD27E8533B3D5DC0E3468291A2728F7B5000DC5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)))->get_U3CU3E9_0(); Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * L_2 = (Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_TaskWhenAnyCast_24(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m6DAC1732E56024E32076DEE1A3863F17635A8944_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m6DAC1732E56024E32076DEE1A3863F17635A8944_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m6DAC1732E56024E32076DEE1A3863F17635A8944_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m8E1D8C0B00CDBC75BE82736DC129396F79B7A84D((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m853EDDB7B8743654CF53E235439CD8E404BF9DF7_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m853EDDB7B8743654CF53E235439CD8E404BF9DF7_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m853EDDB7B8743654CF53E235439CD8E404BF9DF7_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m61EE08D52F4C76A4D8E44B826F02724920D3425B((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)0, (int32_t)0, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_0, /*hidden argument*/NULL); RuntimeObject * L_1 = ___result0; __this->set_m_result_22(L_1); return; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Boolean,TResult,System.Threading.Tasks.TaskCreationOptions,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m3418D05E6E80990C18478A5EC60290D71B493EB3_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, bool ___canceled0, RuntimeObject * ___result1, int32_t ___creationOptions2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___ct3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m3418D05E6E80990C18478A5EC60290D71B493EB3_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m3418D05E6E80990C18478A5EC60290D71B493EB3_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = ___canceled0; int32_t L_1 = ___creationOptions2; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = ___ct3; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m61EE08D52F4C76A4D8E44B826F02724920D3425B((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)L_0, (int32_t)L_1, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_2, /*hidden argument*/NULL); bool L_3 = ___canceled0; if (L_3) { goto IL_0014; } } { RuntimeObject * L_4 = ___result1; __this->set_m_result_22(L_4); } IL_0014: { return; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Func`2<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_1__ctor_m3533BD867272C008F003BC8B763A0803A4C77C47_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ___function0, RuntimeObject * ___state1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken2, int32_t ___creationOptions3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m3533BD867272C008F003BC8B763A0803A4C77C47_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m3533BD867272C008F003BC8B763A0803A4C77C47_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_0 = ___function0; RuntimeObject * L_1 = ___state1; int32_t L_2 = ___creationOptions3; IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_3 = Task_InternalCurrentIfAttached_mA6A2C11F69612C4A960BC1FC6BD4E4D181D26A3B((int32_t)L_2, /*hidden argument*/NULL); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_4 = ___cancellationToken2; int32_t L_5 = ___creationOptions3; NullCheck((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this); (( void (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, Delegate_t *, RuntimeObject *, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , int32_t, int32_t, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_3, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_4, (int32_t)L_5, (int32_t)0, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)); V_0 = (int32_t)1; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_PossiblyCaptureContext_m0DB8D1ADD84B044BEBC0A692E45577D2B7ADFDA8((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t*)(int32_t*)(&V_0), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor(System.Delegate,System.Object,System.Threading.Tasks.Task,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m294345A83D9CAC9B7198CA662BA64B776B5A8B23_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, Delegate_t * ___valueSelector0, RuntimeObject * ___state1, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___parent2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken3, int32_t ___creationOptions4, int32_t ___internalOptions5, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__ctor_m294345A83D9CAC9B7198CA662BA64B776B5A8B23_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__ctor_m294345A83D9CAC9B7198CA662BA64B776B5A8B23_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Delegate_t * L_0 = ___valueSelector0; RuntimeObject * L_1 = ___state1; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_2 = ___parent2; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_3 = ___cancellationToken3; int32_t L_4 = ___creationOptions4; int32_t L_5 = ___internalOptions5; TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_6 = ___scheduler6; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task__ctor_m0769EBAC32FC56E43AA3EA4697369AD1C68508CC((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (Delegate_t *)L_0, (RuntimeObject *)L_1, (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)L_2, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_3, (int32_t)L_4, (int32_t)L_5, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)L_6, /*hidden argument*/NULL); int32_t L_7 = ___internalOptions5; if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)2048)))) { goto IL_0030; } } { String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteralB074C920DAB17C140FA8E906179F603DBCE3EC79, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, (String_t*)_stringLiteral699B142A794903652E588B3D75019329F77A9209, (String_t*)L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Task_1__ctor_m294345A83D9CAC9B7198CA662BA64B776B5A8B23_RuntimeMethod_var); } IL_0030: { return; } } // System.String System.Threading.Tasks.Task`1<System.Object>::get_DebuggerDisplayResultDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayResultDescription_m30CC009921E9D0DFBBA0B29183170DAACB6B3A76_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_DebuggerDisplayResultDescription_m30CC009921E9D0DFBBA0B29183170DAACB6B3A76_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_DebuggerDisplayResultDescription_m30CC009921E9D0DFBBA0B29183170DAACB6B3A76_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsRanToCompletion_mCCFB04975336938D365F65C71C75A38CFE3721BC((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0013; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9((String_t*)_stringLiteral1EF7700DEF2F08593CD7569A4AE5AE2D9B84F07B, /*hidden argument*/NULL); return (String_t*)L_1; } IL_0013: { RuntimeObject * L_2 = (RuntimeObject *)__this->get_m_result_22(); String_t* L_3 = String_Concat_m798542DE19B3F02DC4F4B777BB2E73169F129DE1((RuntimeObject *)L_2, /*hidden argument*/NULL); return (String_t*)L_3; } } // System.String System.Threading.Tasks.Task`1<System.Object>::get_DebuggerDisplayMethodDescription() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Task_1_get_DebuggerDisplayMethodDescription_m383B1D03069496E6DAD88DC7C13EA8F3307BB144_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_DebuggerDisplayMethodDescription_m383B1D03069496E6DAD88DC7C13EA8F3307BB144_MetadataUsageId); s_Il2CppMethodInitialized = true; } Delegate_t * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_DebuggerDisplayMethodDescription_m383B1D03069496E6DAD88DC7C13EA8F3307BB144_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_action_5(); V_0 = (Delegate_t *)((Delegate_t *)Castclass((RuntimeObject*)L_0, Delegate_t_il2cpp_TypeInfo_var)); Delegate_t * L_1 = V_0; if (L_1) { goto IL_0015; } } { return (String_t*)_stringLiteralF33F6BBE3C398D35275BA44A4895220984E8D4A6; } IL_0015: { Delegate_t * L_2 = V_0; NullCheck((Delegate_t *)L_2); MethodInfo_t * L_3 = Delegate_get_Method_m0AC85D2B0C4CA63C471BC37FFDC3A5EA1E8ED048((Delegate_t *)L_2, /*hidden argument*/NULL); NullCheck((RuntimeObject *)L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_3); return (String_t*)L_4; } } // System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m4FE4E07EBB0BA224341A4946FE2C4A813BD8AF64_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, RuntimeObject * ___result0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetResult_m4FE4E07EBB0BA224341A4946FE2C4A813BD8AF64_MetadataUsageId); s_Il2CppMethodInitialized = true; } ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * V_0 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetResult_m4FE4E07EBB0BA224341A4946FE2C4A813BD8AF64_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (!L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_1 = Task_AtomicStateUpdate_m8453A8B2D404F085626BC0BCFCB2593AA373F530((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_1) { goto IL_0057; } } { RuntimeObject * L_2 = ___result0; __this->set_m_result_22(L_2); int32_t* L_3 = (int32_t*)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_address_of_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); int32_t L_4 = (int32_t)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); Interlocked_Exchange_mD5CC61AF0F002355912FAAF84F26BE93639B5FD5((int32_t*)(int32_t*)L_3, (int32_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)16777216))), /*hidden argument*/NULL); ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * L_5 = (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_contingentProperties_15(); il2cpp_codegen_memory_barrier(); V_0 = (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)L_5; ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * L_6 = V_0; if (!L_6) { goto IL_004f; } } { ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * L_7 = V_0; NullCheck((ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)L_7); ContingentProperties_SetCompleted_m3CB1941CBE9F1D241A2AFA4E3F739C98B493E6DE((ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)L_7, /*hidden argument*/NULL); } IL_004f: { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_FinishStageThree_m543744E8C5DFC94B2F2898998663C85617999E32((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); return (bool)1; } IL_0057: { return (bool)0; } } // TResult System.Threading.Tasks.Task`1<System.Object>::get_Result() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Task_1_get_Result_m653E95E70604B69D29BC9679AA4588ED82AD01D7_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_Result_m653E95E70604B69D29BC9679AA4588ED82AD01D7_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_Result_m653E95E70604B69D29BC9679AA4588ED82AD01D7_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_mEC26269ABD71D03847D81120160D2106C2B3D581_inline((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_000f; } } { RuntimeObject * L_1 = (RuntimeObject *)__this->get_m_result_22(); return (RuntimeObject *)L_1; } IL_000f: { NullCheck((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this); RuntimeObject * L_2 = (( RuntimeObject * (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this, (bool)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)); return (RuntimeObject *)L_2; } } // TResult System.Threading.Tasks.Task`1<System.Object>::get_ResultOnSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Task_1_get_ResultOnSuccess_m3419E1D24207ACE1FF958CBC46316229F42F10E3_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_get_ResultOnSuccess_m3419E1D24207ACE1FF958CBC46316229F42F10E3_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_get_ResultOnSuccess_m3419E1D24207ACE1FF958CBC46316229F42F10E3_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)__this->get_m_result_22(); return (RuntimeObject *)L_0; } } // TResult System.Threading.Tasks.Task`1<System.Object>::GetResultCore(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Task_1_GetResultCore_m8EBE0B8753DCE615F51B03FDC34AF2A84635DD32_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, bool ___waitCompletionNotification0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_GetResultCore_m8EBE0B8753DCE615F51B03FDC34AF2A84635DD32_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_GetResultCore_m8EBE0B8753DCE615F51B03FDC34AF2A84635DD32_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_0) { goto IL_0019; } } { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_InternalWait_m7F1436A365C066C8D9BDEB6740118206B0EFAD45((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)(-1), (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, /*hidden argument*/NULL); } IL_0019: { bool L_2 = ___waitCompletionNotification0; if (!L_2) { goto IL_0023; } } { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_NotifyDebuggerOfWaitCompletionIfNecessary_m71ACB838EB1988C1436F99C7EB0C819D9F025E2A((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); } IL_0023: { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_3 = Task_get_IsRanToCompletion_mCCFB04975336938D365F65C71C75A38CFE3721BC((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); if (L_3) { goto IL_0032; } } { NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_ThrowIfExceptional_m57A30F74DDD3039C2EB41FA235A897626CE23A37((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)1, /*hidden argument*/NULL); } IL_0032: { RuntimeObject * L_4 = (RuntimeObject *)__this->get_m_result_22(); return (RuntimeObject *)L_4; } } // System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetException_m251DD9D833C7000B3F41D2F4708CA419C64FED94_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetException_m251DD9D833C7000B3F41D2F4708CA419C64FED94_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetException_m251DD9D833C7000B3F41D2F4708CA419C64FED94_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { V_0 = (bool)0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_EnsureContingentPropertiesInitialized_mFEF35F7CCA43B6FC6843167E62779F6C09100475((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)1, /*hidden argument*/NULL); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_AtomicStateUpdate_m8453A8B2D404F085626BC0BCFCB2593AA373F530((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_0) { goto IL_002c; } } { RuntimeObject * L_1 = ___exceptionObject0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_AddException_m07648B13C5D6B6517EEC4C84D5C022965ED1AE54((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (RuntimeObject *)L_1, /*hidden argument*/NULL); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_Finish_m3CBED2C27D7A1E20A9D2A659D4DEA38FCC47DF8F((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (bool)0, /*hidden argument*/NULL); V_0 = (bool)1; } IL_002c: { bool L_2 = V_0; return (bool)L_2; } } // System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m1B45215C2A32476781C0D2F7C5A50ED7EC8A4B33_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___tokenToRecord0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetCanceled_m1B45215C2A32476781C0D2F7C5A50ED7EC8A4B33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetCanceled_m1B45215C2A32476781C0D2F7C5A50ED7EC8A4B33_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = ___tokenToRecord0; NullCheck((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this); bool L_1 = (( bool (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_0, (RuntimeObject *)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)); return (bool)L_1; } } // System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetCanceled(System.Threading.CancellationToken,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_m734D6894721B115F2DB33F0343824A622226014A_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___tokenToRecord0, RuntimeObject * ___cancellationException1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_TrySetCanceled_m734D6894721B115F2DB33F0343824A622226014A_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_TrySetCanceled_m734D6894721B115F2DB33F0343824A622226014A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { V_0 = (bool)0; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); bool L_0 = Task_AtomicStateUpdate_m8453A8B2D404F085626BC0BCFCB2593AA373F530((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (int32_t)((int32_t)67108864), (int32_t)((int32_t)90177536), /*hidden argument*/NULL); if (!L_0) { goto IL_0024; } } { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = ___tokenToRecord0; RuntimeObject * L_2 = ___cancellationException1; NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_RecordInternalCancellationRequest_m013F01E4EAD86112C78A242191F3A3887F0A15BB((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, (RuntimeObject *)L_2, /*hidden argument*/NULL); NullCheck((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this); Task_CancellationCleanupLogic_m85636A9F2412CDC73F9CFC7CEB87A3C48ECF6BB2((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this, /*hidden argument*/NULL); V_0 = (bool)1; } IL_0024: { bool L_3 = V_0; return (bool)L_3; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::InnerInvoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1_InnerInvoke_m555C0E2791E25E4AD24D7486CB08C1C6C7B2C95B_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_InnerInvoke_m555C0E2791E25E4AD24D7486CB08C1C6C7B2C95B_MetadataUsageId); s_Il2CppMethodInitialized = true; } Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * V_0 = NULL; Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * V_1 = NULL; DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_InnerInvoke_m555C0E2791E25E4AD24D7486CB08C1C6C7B2C95B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_action_5(); V_0 = (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)((Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 4))); Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_1 = V_0; if (!L_1) { goto IL_001c; } } { Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 * L_2 = V_0; NullCheck((Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)L_2); RuntimeObject * L_3 = (( RuntimeObject * (*) (Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)->methodPointer)((Func_1_t59BE545225A69AFD7B2056D169D0083051F6D386 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 5)); __this->set_m_result_22(L_3); return; } IL_001c: { RuntimeObject * L_4 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_action_5(); V_1 = (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *)((Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *)IsInst((RuntimeObject*)L_4, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 6))); Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_5 = V_1; if (!L_5) { goto IL_003e; } } { Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_6 = V_1; RuntimeObject * L_7 = (RuntimeObject *)((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)__this)->get_m_stateObject_6(); NullCheck((Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *)L_6); RuntimeObject * L_8 = (( RuntimeObject * (*) (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)->methodPointer)((Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *)L_6, (RuntimeObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 7)); __this->set_m_result_22(L_8); return; } IL_003e: { return; } } // System.Runtime.CompilerServices.TaskAwaiter`1<TResult> System.Threading.Tasks.Task`1<System.Object>::GetAwaiter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 Task_1_GetAwaiter_m9C50610C6F05C1DA9BFA67201CB570F1DE040817_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_GetAwaiter_m9C50610C6F05C1DA9BFA67201CB570F1DE040817_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_GetAwaiter_m9C50610C6F05C1DA9BFA67201CB570F1DE040817_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 L_0; memset((&L_0), 0, sizeof(L_0)); TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_inline((&L_0), (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 9)); return (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 )L_0; } } // System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<TResult> System.Threading.Tasks.Task`1<System.Object>::ConfigureAwait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 Task_1_ConfigureAwait_m60DD864D9488EACBA6C087E87E448797C1C8B76B_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, bool ___continueOnCapturedContext0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1_ConfigureAwait_m60DD864D9488EACBA6C087E87E448797C1C8B76B_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1_ConfigureAwait_m60DD864D9488EACBA6C087E87E448797C1C8B76B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = ___continueOnCapturedContext0; ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 L_1; memset((&L_1), 0, sizeof(L_1)); ConfiguredTaskAwaitable_1__ctor_mB82ADF237AE2CA3076F32A86D153EBD7B339E3B7((&L_1), (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)__this, (bool)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 11)); return (ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 )L_1; } } // System.Void System.Threading.Tasks.Task`1<System.Object>::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__cctor_m2403A9EF37EF932D4F21DF2D79590ECFEE1BC9F9_gshared (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_1__cctor_m2403A9EF37EF932D4F21DF2D79590ECFEE1BC9F9_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_1__cctor_m2403A9EF37EF932D4F21DF2D79590ECFEE1BC9F9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C * L_0 = (TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 12)); (( void (*) (TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 13)); ((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_s_Factory_23(L_0); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)); U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4 * L_1 = ((U3CU3Ec_t6DA6385CAAB5CFB768B2244E61BDA7A3B499F2E4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 15)))->get_U3CU3E9_0(); Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD * L_2 = (Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 17)); (( void (*) (Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD *, RuntimeObject *, intptr_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)->methodPointer)(L_2, (RuntimeObject *)L_1, (intptr_t)((intptr_t)IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 16)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 18)); ((Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 14)))->set_TaskWhenAnyCast_24(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66_inline (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, OperationCanceledException_get_CancellationToken_mE0079552C3600A6DB8324958CA288DB19AF05B66_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = __this->get__cancellationToken_17(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Task_get_AsyncState_mEE6996D21AD9F92E34A30FA73A7D31A5BCE42657_inline (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_get_AsyncState_mEE6996D21AD9F92E34A30FA73A7D31A5BCE42657Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_get_AsyncState_mEE6996D21AD9F92E34A30FA73A7D31A5BCE42657_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = __this->get_m_stateObject_6(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_mEC26269ABD71D03847D81120160D2106C2B3D581_inline (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_mEC26269ABD71D03847D81120160D2106C2B3D581Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Task_get_IsWaitNotificationEnabledOrNotRanToCompletion_mEC26269ABD71D03847D81120160D2106C2B3D581_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = __this->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)285212672)))) == ((int32_t)((int32_t)16777216)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_gshared_inline (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2BGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_m275A31438FCDAEEE039E95D887684E04FD6ECE2B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_gshared_inline (Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_m759BCD9AE2A23A170C174907087439B7A7D0F8A2_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_value_0(); return (bool)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_gshared_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_gshared_inline (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_value_0(); return (int32_t)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_gshared_inline (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_mB0A6989529561627BBB65E6E4342DAA6549DD5A9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_gshared_inline (Nullable_1_tBCA4780CE8E9555A53CF0BA48AF742DA998C0833 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_mA591973E70B08BA8DF51199694BF3656AFF11422_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_value_0(); return (int32_t)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_gshared_inline (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_m6C7E30F1E2D85F0A4AB37F0F6685E37607F26231_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR float Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_gshared_inline (Nullable_1_tE4EDC8D5ED2772A911F67696644E6C77FA716DC0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_mF8434F4C53077E44B94029A47BF87B42311FC3E6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { float L_0 = (float)__this->get_value_0(); return (float)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_gshared_inline (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5EGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_m6043C30C0D1C3997D2F439012CDA29ADE389EC5E_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_gshared_inline (Nullable_1_t62AE259BD59BB399114FE368074265E6CE6E36BB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_m8E93A3F40A56D98A79D046D50A0C57568EC7DB50_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_0 = (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )__this->get_value_0(); return (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 )L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_gshared_inline (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_mDE2561AA29FEBD09135035959BF3C737A5A5F0C6_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_gshared_inline (Nullable_1_t2DFC28E4433268025A26E954F0249137067321B5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_mCDA5EFE603B0E62377E5021E8989914BCC661887_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A L_0 = (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A )__this->get_value_0(); return (RenderQueueRange_tDB214C96F82D0296D015DE1D0D904457591FA04A )L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_gshared_inline (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609FGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_mA397EF47A20D0DD45884DF033A1003D6EF7A609F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_gshared_inline (Nullable_1_tE9EB9BBF85C9FAB776892A7ACD50BBE4AFB1935F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_mF1B887484F203ED85FF28CB52A4781ABF22A9462_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE L_0 = (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE )__this->get_value_0(); return (RenderStateBlock_t13FB0237B00CC430D1BE51BDB60BA122264B87FE )L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_gshared_inline (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7FGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_get_HasValue_m799FAADF5BA2C9E13220149280B2951799A26D7F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_gshared_inline (Nullable_1_tCE53BD40AA999E709C1D2369B2A531373CDD89EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, Nullable_1_GetValueOrDefault_m35E99BED1252A5C9E5A0D197FCF8E3C0E2A3C2A8_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_0 = (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )__this->get_value_0(); return (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 )L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_gshared_inline (ConfiguredTaskAwaitable_1_t1BE33447D45233CB970D730E5238A5ACDDBF1B82 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48FGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1_GetAwaiter_m2EF8D361B5AFBDA824FE2D5CE4704EF99AECA48F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 L_0 = (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 )__this->get_m_configuredTaskAwaiter_0(); return (ConfiguredTaskAwaiter_t785B9A8BC038067B15BF7BC1343F623CB02FD065 )L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_gshared_inline (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DEGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E L_0 = (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E )__this->get_m_configuredTaskAwaiter_0(); return (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E )L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_gshared_inline (ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E L_0 = (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E )__this->get_m_configuredTaskAwaiter_0(); return (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E )L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_gshared_inline (ConfiguredTaskAwaitable_1_tBF6C7E1E5DE2AF3654C5691FB3AF9811B3D076C3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3BGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ConfiguredTaskAwaitable_1_GetAwaiter_m39313F8D5E6D9668C8853AD0C710E7563C478D3B_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 L_0 = (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 )__this->get_m_configuredTaskAwaiter_0(); return (ConfiguredTaskAwaiter_t5A7BFB889EC19616C3271962663CCFD263CE8CA4 )L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_gshared_inline (TaskAwaiter_1_tFD52D9BC245E2C60016F2E6F4CC4A15361418090 * __this, Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1__ctor_m078326DA7A5138138D497CB9B078D8579CF14462_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_gshared_inline (TaskAwaiter_1_t76D3FA58DD26D9E230E85DA513E242AC5927BE24 * __this, Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285CGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1__ctor_m4A4E61E7DB982E9BCA40B3EFD7FF84D8419D285C_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_gshared_inline (TaskAwaiter_1_t8CDB78D2A4D48E80C35A8FF6FC04A82B9FC35977 * __this, Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1__ctor_m965BA6A8F352B8C6133D6AAEBC60B7767AFBCCB0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_gshared_inline (TaskAwaiter_1_t2A96C6E5A8159F39BE46A120CE0712DCA38C4BCE * __this, Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, TaskAwaiter_1__ctor_mEC801EB8DC0BEA0BA3D3EBB76982C94FA66621F1_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * L_0 = ___task0; __this->set_m_task_0(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_gshared_inline (ListBuilder_1_t9EAEEF235A9750C3B9F2008C7B599DBFB1A755E0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, ListBuilder_1_get_Count_mABBE8C1EB9BD01385ED84FDA8FF03EF6FBB931B0_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get__count_2(); return (int32_t)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_gshared_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3DGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocalValueChangedArgs_1_get_PreviousValue_mA9C4C0E1D013516923CAFF73AF850F31347DAD3D_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CPreviousValueU3Ek__BackingField_0(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_gshared_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocalValueChangedArgs_1_set_PreviousValue_m0C12782FFC4F304103124CDB76094CABEE22C295_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___value0; __this->set_U3CPreviousValueU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_gshared_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocalValueChangedArgs_1_get_CurrentValue_mE7B45C05247F47070ABC5251ECF740710FB99B52_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = (RuntimeObject *)__this->get_U3CCurrentValueU3Ek__BackingField_1(); return (RuntimeObject *)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_gshared_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9Generics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocalValueChangedArgs_1_set_CurrentValue_mB8F2CB5BAA017781E6850ADA678F973718B113D9_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { RuntimeObject * L_0 = ___value0; __this->set_U3CCurrentValueU3Ek__BackingField_1(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_gshared_inline (AsyncLocalValueChangedArgs_1_t64BF6800935406CA808E9821DF12DBB72A71640D * __this, bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632FGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, AsyncLocalValueChangedArgs_1_set_ThreadContextChanged_m7EEDCE0B516827357666CCB892646065382C632F_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { bool L_0 = ___value0; __this->set_U3CThreadContextChangedU3Ek__BackingField_2(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_gshared_inline (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769AGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArrayAddInfo_1_get_Source_mF8A667348EE46E2D681AC12A74970BD3A69E769A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 * L_0 = (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)__this->get_m_source_0(); return (SparselyPopulatedArrayFragment_1_t5B09020C4A85177CB1CC2672955AAFCD411A5364 *)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_gshared_inline (SparselyPopulatedArrayAddInfo_1_tE2FD5B8C39028B875C42E17AA5865FC55F2A0C0B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54AGenerics33_MetadataUsageId); s_Il2CppMethodInitialized = true; } DECLARE_METHOD_EXEC_CTX(methodExecutionContext, SparselyPopulatedArrayAddInfo_1_get_Index_m67962DFCB592CCD200FB0BED160411FA56EED54A_RuntimeMethod_var, NULL, NULL, NULL); CHECK_PAUSE_POINT; { int32_t L_0 = (int32_t)__this->get_m_index_1(); return (int32_t)L_0; } }
[ "maitlandhamels@gmail.com" ]
maitlandhamels@gmail.com
2b2be6d0a35791944c98c66f6ad21f66c18651f1
02095cd4aeaa3a0d724f7362cdb8795fe9a81620
/oplink/algorithms/team/src/plugins/migrationTopologies/Ring_One/Ring_One.cpp
6f63041f8e724f3a6e4ce6676c02ccfc4aad1a4c
[]
no_license
PAL-ULL/software-metco
ba5123cb1423fed4a2ac678ab375728ba4bbfbc8
59edc4e49bddbd9fc7237bf2f24271bdfc8afd79
refs/heads/master
2021-04-15T04:12:56.292543
2021-03-08T13:29:14
2021-03-08T13:29:14
126,484,450
10
5
null
2020-07-21T18:43:10
2018-03-23T12:49:10
C++
UTF-8
C++
false
false
229
cpp
#include "Ring_One.h" void Ring_One::sendTo(const int myId, const int slaveIslands, vector<int> &destination){ int slave; slave = (myId + 1) % (slaveIslands + 1); if (slave == 0) slave = 1; destination.push_back(slave); }
[ "edusegre@gmail.com" ]
edusegre@gmail.com
664c1eb3d5d19e8d7a6cbd1c4c931e4d9cced7d5
6c692d65828b7bb3ccd0c53c1054108e09ba5d32
/CCInclusive_validation_Sep2018/localProducts_larsoft_v07_05_00_e17_prof/ubana/v07_05_00_01/source/ubana/UBXSec/Algorithms/FiducialVolume.cxx
533235991014d0da5155e518d99aea7a0662cad1
[]
no_license
ssfehlberg/MCC9_Validation_Codes
da4912b01f6dea84716214adc81e63866fc2225a
d1facebf62f8bdae40f0bf4e489789712f0cb8df
refs/heads/master
2021-09-26T11:13:44.824434
2018-10-25T17:22:57
2018-10-25T17:22:57
150,471,735
0
0
null
null
null
null
UTF-8
C++
false
false
3,415
cxx
#ifndef FIDUCIALVOLUME_CXX #define FIDUCIALVOLUME_CXX #include "FiducialVolume.h" #include <iostream> namespace ubana { FiducialVolume::FiducialVolume() { } void FiducialVolume::Configure(fhicl::ParameterSet const& pset, double det_half_height, double det_width, double det_length) { _border_x_low = pset.get<std::vector<double>>("BorderXLow"); _border_x_high = pset.get<std::vector<double>>("BorderXHigh"); _border_y_low = pset.get<std::vector<double>>("BorderYLow"); _border_y_high = pset.get<std::vector<double>>("BorderYHigh"); _border_z_low = pset.get<std::vector<double>>("BorderZLow"); _border_z_high = pset.get<std::vector<double>>("BorderZHigh"); if ( (_border_x_low.size() != _border_x_high.size()) || (_border_x_low.size() != _border_y_low.size()) || (_border_x_low.size() != _border_y_high.size()) || (_border_x_low.size() != _border_z_low.size()) || (_border_x_low.size() != _border_z_high.size()) ) { std::cout << "[FiducialVolume] Input vectors size mismatch." << std::endl; throw std::exception(); } _n_fv = _border_x_low.size(); _det_half_height = det_half_height; _det_width = det_width; _det_length = det_length; _configured = true; } void FiducialVolume::PrintConfig() { std::cout << "--- FiducialVolume configuration:" << std::endl; std::cout << "--- Number of fiducial volumes = " << _n_fv << std::endl; std::cout << "--- _det_half_height = " << _det_half_height << std::endl; std::cout << "--- _det_width = " << _det_width << std::endl; std::cout << "--- _det_length = " << _det_length << std::endl; for (size_t i = 0; i < _n_fv; i++) { std::cout << "--- Fiducial volume number " << i << std::endl; std::cout << "--- _border_x_low = " << _border_x_low.at(i) << std::endl; std::cout << "--- _border_x_high = " << _border_x_high.at(i) << std::endl; std::cout << "--- _border_y_low = " << _border_y_low.at(i) << std::endl; std::cout << "--- _border_y_high = " << _border_y_high.at(i) << std::endl; std::cout << "--- _border_z_low = " << _border_z_low.at(i) << std::endl; std::cout << "--- _border_z_high = " << _border_z_high.at(i) << std::endl; } } bool FiducialVolume::InFV(double* x) { return this->InFV(x[0], x[1], x[2]); } bool FiducialVolume::InFV(TVector3 x) { return this->InFV(x.X(), x.Y(), x.Z()); } bool FiducialVolume::InFV(TVector3 x1, TVector3 x2) { return (this->InFV(x1.X(), x1.Y(), x1.Z()) && this->InFV(x2.X(), x2.Y(), x2.Z())); } bool FiducialVolume::InFV(double x, double y, double z) { // Construct a vector ::geoalgo::Vector the_point(x, y, z); for (size_t i = 0; i < _n_fv; i++) { // Construct the fiducial volume ::geoalgo::AABox fidvol(_border_x_low.at(i), -1.*_det_half_height + _border_y_low.at(i), _border_z_low.at(i), _det_width - _border_x_high.at(i), _det_half_height - _border_y_high.at(i), _det_length - _border_z_high.at(i)); // Check if the vector is in the FV if(fidvol.Contain(the_point)) return true; } return false; } } #endif
[ "ssfehlberg@gmail.com" ]
ssfehlberg@gmail.com
a3e7a7b32e5e8a8a533990f9262ff64068afa56a
7bf90d58acf7cc419471bbe14144be6e6ffc007f
/test/group_public_key_context_Test.cpp
fe6ec918aa55f62f1dbffa6dc33d183a88c13511
[ "LicenseRef-scancode-warranty-disclaimer", "Apache-2.0" ]
permissive
xaptum/xtt-cpp
7bde102fb9faa8836616536c150ac32040dd529c
d82f4c33e6c67e343da70f3b73dea67c0a8bf6f1
refs/heads/master
2020-03-16T02:44:15.079434
2019-11-21T14:28:49
2019-11-21T14:28:49
132,472,024
0
3
Apache-2.0
2019-11-21T14:28:51
2018-05-07T14:25:28
C++
UTF-8
C++
false
false
9,265
cpp
/****************************************************************************** * * Copyright 2019 Xaptum, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License * *****************************************************************************/ #include <iostream> #include <vector> #include <string> #include <sstream> #include <iomanip> #include "test-utils.h" #include <xtt.hpp> #include <cstring> #include <xtt.h> void lrsw_clone(); void lrsw_deserialize_bin_together(); void lrsw_deserialize_bins_together_agree(); void lrsw_deserialize_bin_separate(); void lrsw_deserialize_text(); void lrsw_deserialize_basename_too_long(); void lrsw_deserialize_basename_bad_length(); int main() { xtt::initialize_crypto(); lrsw_clone(); lrsw_deserialize_bin_together(); lrsw_deserialize_bins_together_agree(); lrsw_deserialize_bin_separate(); lrsw_deserialize_text(); lrsw_deserialize_basename_too_long(); lrsw_deserialize_basename_bad_length(); } void lrsw_clone() { std::cout << "Starting group_public_key_context_Test::lrsw_clone...\n"; xtt::group_public_key_context_lrsw ctx; TEST_ASSERT(ctx.get()); xtt_crypto_get_random((unsigned char*)ctx.get(), sizeof(xtt_group_public_key_context)); auto cloned_ctx = ctx.clone(); TEST_ASSERT(cloned_ctx->get()); TEST_ASSERT(cloned_ctx->get() != ctx.get()); TEST_ASSERT(0 == memcmp(cloned_ctx->get(), ctx.get(), sizeof(xtt_group_public_key_context))); } void lrsw_deserialize_bin_together() { std::cout << "Starting group_public_key_context_Test::lrsw_deserialize_bin_together...\n"; std::vector<unsigned char> basename_as_bytes(23); xtt_crypto_get_random(basename_as_bytes.data(), basename_as_bytes.size()); std::vector<unsigned char> gpk_as_bytes(sizeof(xtt_daa_group_pub_key_lrsw)); xtt_crypto_get_random(gpk_as_bytes.data(), gpk_as_bytes.size()); std::vector<unsigned char> all_together(gpk_as_bytes); all_together.push_back(static_cast<unsigned char>(basename_as_bytes.size())); all_together.insert(all_together.end(), basename_as_bytes.begin(), basename_as_bytes.end()); auto maybe_ctx = xtt::group_public_key_context_lrsw::deserialize(all_together); TEST_ASSERT(maybe_ctx); TEST_ASSERT(basename_as_bytes == maybe_ctx->get_basename()); TEST_ASSERT(gpk_as_bytes == maybe_ctx->get_gpk()); auto ctx_serialized = maybe_ctx->serialize(); TEST_ASSERT(ctx_serialized.size() == gpk_as_bytes.size() + 1 + basename_as_bytes.size()); TEST_ASSERT(ctx_serialized == all_together); } void lrsw_deserialize_bins_together_agree() { std::cout << "Starting group_public_key_context_Test::lrsw_deserialize_bins_together_agree...\n"; unsigned char basename_as_bytes[23]; xtt_crypto_get_random(basename_as_bytes, sizeof(basename_as_bytes)); unsigned char gpk_as_bytes[sizeof(xtt_daa_group_pub_key_lrsw)]; xtt_crypto_get_random(gpk_as_bytes, sizeof(gpk_as_bytes)); unsigned char all_together[sizeof(gpk_as_bytes) + 1 + sizeof(basename_as_bytes)]; std::copy(gpk_as_bytes, gpk_as_bytes + sizeof(gpk_as_bytes), all_together); all_together[sizeof(gpk_as_bytes)] = sizeof(basename_as_bytes); std::copy(basename_as_bytes, basename_as_bytes + sizeof(basename_as_bytes), all_together + sizeof(gpk_as_bytes) + 1); auto maybe_ctx = xtt::group_public_key_context_lrsw::deserialize(all_together, sizeof(all_together)); TEST_ASSERT(maybe_ctx); TEST_ASSERT(maybe_ctx->get_basename().size() == sizeof(basename_as_bytes)); TEST_ASSERT(0 == memcmp(basename_as_bytes, maybe_ctx->get_basename().data(), sizeof(basename_as_bytes))); TEST_ASSERT(maybe_ctx->get_gpk().size() == sizeof(gpk_as_bytes)); TEST_ASSERT(0 == memcmp(gpk_as_bytes, maybe_ctx->get_gpk().data(), sizeof(gpk_as_bytes))); auto ctx_serialized = maybe_ctx->serialize(); TEST_ASSERT(ctx_serialized.size() == sizeof(all_together)); TEST_ASSERT(0 == memcmp(ctx_serialized.data(), all_together, sizeof(all_together))); } void lrsw_deserialize_bin_separate() { std::cout << "Starting group_public_key_context_Test::lrsw_deserialize_bin_separate...\n"; std::vector<unsigned char> basename_as_bytes(23); xtt_crypto_get_random(basename_as_bytes.data(), basename_as_bytes.size()); std::vector<unsigned char> gpk_as_bytes(sizeof(xtt_daa_group_pub_key_lrsw)); xtt_crypto_get_random(gpk_as_bytes.data(), gpk_as_bytes.size()); auto maybe_ctx = xtt::group_public_key_context_lrsw::from_gpk_and_basename(gpk_as_bytes, basename_as_bytes); TEST_ASSERT(maybe_ctx); TEST_ASSERT(basename_as_bytes == maybe_ctx->get_basename()); TEST_ASSERT(gpk_as_bytes == maybe_ctx->get_gpk()); } void lrsw_deserialize_bins_separate_agree() { std::cout << "Starting group_public_key_context_Test::lrsw_deserialize_bins_separate_agree...\n"; unsigned char basename_as_bytes[23]; xtt_crypto_get_random(basename_as_bytes, sizeof(basename_as_bytes)); unsigned char gpk_as_bytes[sizeof(xtt_daa_group_pub_key_lrsw)]; xtt_crypto_get_random(gpk_as_bytes, sizeof(gpk_as_bytes)); auto maybe_ctx = xtt::group_public_key_context_lrsw::from_gpk_and_basename(gpk_as_bytes, sizeof(gpk_as_bytes), basename_as_bytes, sizeof(basename_as_bytes)); TEST_ASSERT(maybe_ctx); TEST_ASSERT(maybe_ctx->get_basename().size() == sizeof(basename_as_bytes)); TEST_ASSERT(0 == memcmp(basename_as_bytes, maybe_ctx->get_basename().data(), sizeof(basename_as_bytes))); TEST_ASSERT(maybe_ctx->get_gpk().size() == sizeof(gpk_as_bytes)); TEST_ASSERT(0 == memcmp(gpk_as_bytes, maybe_ctx->get_gpk().data(), sizeof(gpk_as_bytes))); unsigned char all_together[sizeof(gpk_as_bytes) + 1 + sizeof(basename_as_bytes)]; std::copy(gpk_as_bytes, gpk_as_bytes + sizeof(gpk_as_bytes), all_together); all_together[sizeof(gpk_as_bytes)] = sizeof(basename_as_bytes); std::copy(basename_as_bytes, basename_as_bytes + sizeof(basename_as_bytes), all_together + sizeof(gpk_as_bytes) + 1); auto ctx_serialized = maybe_ctx->serialize(); TEST_ASSERT(ctx_serialized.size() == sizeof(all_together)); TEST_ASSERT(0 == memcmp(ctx_serialized.data(), all_together, sizeof(all_together))); } void lrsw_deserialize_text() { std::cout << "Starting group_public_key_context_Test::lrsw_deserialize_text...\n"; std::string basename_as_text = "DEADBEEFCAFE"; std::vector<unsigned char> gpk_as_bytes(sizeof(xtt_daa_group_pub_key_lrsw)); xtt_crypto_get_random(gpk_as_bytes.data(), gpk_as_bytes.size()); std::stringstream ss; ss << std::hex; for (auto& b: gpk_as_bytes) ss << std::uppercase << std::setw(2) << std::setfill('0') << (int)b; std::string gpk_as_text = ss.str(); TEST_ASSERT(gpk_as_text.length() == 2*sizeof(xtt_daa_group_pub_key_lrsw)); auto maybe_ctx = xtt::group_public_key_context_lrsw::from_gpk_and_basename(gpk_as_text, basename_as_text); TEST_ASSERT(maybe_ctx); TEST_ASSERT(basename_as_text == maybe_ctx->get_basename_as_text()); TEST_ASSERT(gpk_as_text == maybe_ctx->get_gpk_as_text()); std::cout << "GPK as string is: '" << gpk_as_text << "'\n" << "and basename as string is: '" << basename_as_text << "'\n" << "which creates a group public key context as: '" << *maybe_ctx << std::endl; } void lrsw_deserialize_basename_too_long() { std::cout << "Starting group_public_key_context_Test::lrsw_deserialize_basename_too_long...\n"; std::vector<unsigned char> basename_as_bytes(MAX_BASENAME_LENGTH+1); xtt_crypto_get_random(basename_as_bytes.data(), basename_as_bytes.size()); std::vector<unsigned char> gpk_as_bytes(sizeof(xtt_daa_group_pub_key_lrsw)); xtt_crypto_get_random(gpk_as_bytes.data(), gpk_as_bytes.size()); auto maybe_ctx = xtt::group_public_key_context_lrsw::from_gpk_and_basename(gpk_as_bytes, basename_as_bytes); TEST_ASSERT(!maybe_ctx); } void lrsw_deserialize_basename_bad_length() { std::cout << "Starting group_public_key_context_Test::lrsw_deserialize_basename_bad_length...\n"; std::vector<unsigned char> basename_as_bytes(23); xtt_crypto_get_random(basename_as_bytes.data(), basename_as_bytes.size()); std::vector<unsigned char> gpk_as_bytes(sizeof(xtt_daa_group_pub_key_lrsw)); xtt_crypto_get_random(gpk_as_bytes.data(), gpk_as_bytes.size()); std::vector<unsigned char> all_together(gpk_as_bytes); all_together.push_back(static_cast<unsigned char>(basename_as_bytes.size() + 1)); // nb. wrong size all_together.insert(all_together.end(), basename_as_bytes.begin(), basename_as_bytes.end()); auto maybe_ctx = xtt::group_public_key_context_lrsw::deserialize(all_together); TEST_ASSERT(!maybe_ctx); }
[ "zanebeckwith@gmail.com" ]
zanebeckwith@gmail.com
3b189a97e9841c35a61e451cbd647cdc4cb4d779
af69e335fc0ff9632964d061833713b672abad01
/Temp/StagingArea/Data/il2cppOutput/Mono_Security_Mono_Math_BigInteger_Kernel1402667219.h
bea6783a94b6251d0414f5a7549776b647569f5c
[]
no_license
PruthvishMShirur/Solar-System
ca143ab38cef582705f0beb76f7fef8b28e25ef9
5cf3eaa66949801aa9a34cd3cf80eeefa64d2342
refs/heads/master
2023-05-26T17:53:37.489349
2021-06-16T19:56:48
2021-06-16T19:56:48
377,611,177
0
0
null
null
null
null
UTF-8
C++
false
false
509
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Object3080106164.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Math.BigInteger/Kernel struct Kernel_t1402667220 : public Il2CppObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "42893637+PruthvishMShirur@users.noreply.github.com" ]
42893637+PruthvishMShirur@users.noreply.github.com
b516c5ed785dfe93a624655e346b218c5a31d997
1a04c571feea03f6cd91b71a58f0e3dc97df80a3
/BattleTank/Source/BattleTank/Private/TankAimingComponent.cpp
bf4481dbb88a3947c2b6162ab681f1388076e01d
[]
no_license
monkn/monkn-04_BattleTank
52d73fecffd988ad2496434c222111d0d2b39130
af5bcbd02869c95441d97febeecaa5a5bffdefc4
refs/heads/master
2021-01-11T02:20:35.050188
2016-11-14T00:29:39
2016-11-14T00:29:39
70,952,811
0
0
null
null
null
null
UTF-8
C++
false
false
3,474
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "BattleTank.h" #include "TankBarrel.h" #include "TankTurret.h" #include "Projectile.h" #include "TankAimingComponent.h" // Sets default values for this component's properties UTankAimingComponent::UTankAimingComponent() { // Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features // off to improve performance if you don't need them. bWantsBeginPlay = true; PrimaryComponentTick.bCanEverTick = true; // ... } void UTankAimingComponent::Initialise(UTankBarrel* BarrelToSet, UTankTurret* TurretToSet) { Barrel = BarrelToSet; Turret = TurretToSet; } void UTankAimingComponent::BeginPlay() { LastFireTime = FPlatformTime::Seconds(); } void UTankAimingComponent::TickComponent(float DeltaTime, enum ELevelTick TickType, FActorComponentTickFunction *ThisTickFunction) { if (RoundsLeft < 1) { FiringState = EFiringState::OutOfAmmo; } else if ((FPlatformTime::Seconds() - LastFireTime) < ReloadTimeInSeconds) { FiringState = EFiringState::Reloading; } else if (IsBarrelMoving()) { FiringState = EFiringState::Aiming; } else { FiringState = EFiringState::Locked; } } EFiringState UTankAimingComponent::GetFiringState() const { return FiringState; } void UTankAimingComponent::AimAt(FVector WorldSpaceAim) { if (!ensure(Barrel) || !ensure(Turret)) { return; } FVector OutLaunchVelocity; FVector StartLocation = Barrel->GetSocketLocation(FName("Projectile")); bool bHaveAimSolution = UGameplayStatics::SuggestProjectileVelocity( GetWorld(), OutLaunchVelocity, StartLocation, WorldSpaceAim, LaunchSpeed, false, 0, 0, ESuggestProjVelocityTraceOption::DoNotTrace ); if (bHaveAimSolution) { AimDirection = OutLaunchVelocity.GetSafeNormal(); MoveBarrelTowards(AimDirection); MoveTurretTowards(AimDirection); } else { // UE_LOG(LogTemp, Warning, TEXT("AimSolution not found")); } } void UTankAimingComponent::MoveBarrelTowards(FVector AimDirectionIn) { if (!ensure(Barrel)) { return; } auto BarrelRotator = Barrel->GetForwardVector().Rotation(); auto AimAsRotator = AimDirectionIn.Rotation(); auto DeltaRotator = AimAsRotator - BarrelRotator; Barrel->Elevate(DeltaRotator.Pitch); // TODO remove magic number } void UTankAimingComponent::MoveTurretTowards(FVector AimDirectionIn) { if (!ensure(Turret)) { return; } auto TurretRotator = Turret->GetForwardVector().Rotation(); auto AimAsRotator = AimDirectionIn.Rotation(); auto DeltaRotator = AimAsRotator - TurretRotator; if (FMath::Abs(DeltaRotator.Yaw) < 180) { Turret->Rotate(DeltaRotator.Yaw); } else { Turret->Rotate(-DeltaRotator.Yaw); } } void UTankAimingComponent::Fire() { if (!ensure(Barrel) || !ensure(ProjectileBlueprint)) { return; } if (FiringState == EFiringState::Locked || FiringState == EFiringState::Aiming) { auto Projectile = GetWorld()->SpawnActor<AProjectile>( ProjectileBlueprint, Barrel->GetSocketLocation(FName("Projectile")), Barrel->GetSocketRotation(FName("Projectile"))); Projectile->LaunchProjectile(LaunchSpeed); LastFireTime = FPlatformTime::Seconds(); RoundsLeft--; } } bool UTankAimingComponent::IsBarrelMoving() { if (!ensure(Barrel)) { return false; } return !(Barrel->GetForwardVector().Equals(AimDirection, 0.01)); } int32 UTankAimingComponent::GetRoundsLeft() const { return RoundsLeft; }
[ "monkn@users.noreply.github.com" ]
monkn@users.noreply.github.com
81f3d53cec988b4738b1c99f2ea6d78a831e4099
e5b00e7e29674734dee478d2890ad8f0461077c2
/touchtest/main.cpp
fd1e1af25617362b90e44999bbdcd8260a68f60a
[]
no_license
bgreer/TouchTable
7ee2b5a608d9d00197ca16b9de152d6af3c93a8d
1b702681a0b6ff9df29f1053ced03b77d9dd051c
refs/heads/master
2021-01-24T09:45:39.050842
2016-09-30T17:49:42
2016-09-30T17:49:42
69,526,077
0
0
null
null
null
null
UTF-8
C++
false
false
6,080
cpp
#include <iostream> #include <vector> #include <unistd.h> #include "opencv2/features2d.hpp" #include "opencv2/opencv.hpp" #include <opencv2/core/utility.hpp> #include "opencv2/cudaarithm.hpp" #include "opencv2/cudawarping.hpp" #include "opencv2/cudafilters.hpp" #include "opencv2/cudaimgproc.hpp" #include "opencv2/core.hpp" #include "opencv2/highgui.hpp" #include "opencv2/imgproc.hpp" #include "helper.h" #include "capture.h" #include "tracker.h" #define IMGW 1600 #define IMGH 896 using namespace cv; int main (int argc, char *argv[]) { Mat remapx, remapy; // for remapping Mat frame_gray(IMGH,IMGW,CV_8UC1); // gray image Mat frame_remap(IMGH,IMGW,CV_8UC1); // gray, remapped Mat canvas(IMGH,IMGW,CV_8UC3); // for drawing Mat frame_output(IMGH,IMGW,CV_8UC1); // download from gpu FileStorage fs; Capture cap(IMGW,IMGH); Tracker t; std::vector<TrackerObject*> *touch_pts; std::string *idstr; float eps = 3e-3; long index = 0; double t_lastframe, t_thisframe, t0, t1; double avgfps, min, max; cuda::GpuMat gpu_input(IMGH,IMGW,CV_8U); cuda::GpuMat gpu_raw_small(IMGH/4,IMGW/4,CV_8U); cuda::GpuMat gpu_blur_small(IMGH/4,IMGW/4,CV_8U); cuda::GpuMat gpu_raw(IMGH,IMGW,CV_8U); cuda::GpuMat gpu_remapped(IMGH,IMGW,CV_8U); cuda::GpuMat gpu_blur(IMGH,IMGW,CV_8U); cuda::GpuMat gpu_unsharp(IMGH,IMGW,CV_8U); cuda::GpuMat gpu_binary(IMGH,IMGW,CV_8U); cuda::GpuMat gpu_frame_back(IMGH,IMGW,CV_8UC1); // background image cuda::GpuMat gpu_remapx(IMGH,IMGW,CV_32FC1), gpu_remapy(IMGH,IMGW,CV_32FC1); // remapping cuda::Stream stream; // blob detector SimpleBlobDetector::Params par; par.filterByArea = true; par.minArea = 40; par.maxArea = 1000; par.filterByColor = true; par.blobColor = 255; par.filterByCircularity = false; par.filterByConvexity = false; par.filterByInertia = false; Ptr<SimpleBlobDetector> sbd = SimpleBlobDetector::create(par); std::vector<KeyPoint> keys; // input param if (argc < 2) { std::cout << "supply input param!" << std::endl; return -1; } int displaymode = atoi(argv[1]); // create window cvNamedWindow("Name", CV_WINDOW_NORMAL); cvSetWindowProperty("Name", CV_WND_PROP_FULLSCREEN, CV_WINDOW_FULLSCREEN); canvas = Scalar(0,0,0); imshow("Name", canvas); // read remapping from file fs.open("remap", cv::FileStorage::READ); fs["MapX"] >> remapx; fs["MapY"] >> remapy; fs.release(); // create gaussian blur filter Ptr<cuda::Filter> filter = cuda::createGaussianFilter(gpu_raw_small.type(), gpu_blur_small.type(), Size(17,17), 5); // upload remapping to gpu gpu_remapx.upload(remapx); gpu_remapy.upload(remapy); // initial background capture t0 = getTime(); while (getTime() - t0 < 1.0) { cap.getFrame(&frame_gray); usleep(10000); } gpu_frame_back.upload(frame_gray); std::cout << "Running.." << std::endl; t_lastframe = getTime(); avgfps = 0.0; while (1) { // upload to gpu gpu_input.upload(frame_gray, stream); // accumulate background image cuda::addWeighted(gpu_frame_back, (1.0-eps), gpu_input, eps, 0.0, gpu_frame_back, -1, stream); // subtract background cuda::subtract(gpu_frame_back, gpu_input, gpu_raw, noArray(), -1, stream); // remap cuda::remap(gpu_raw, gpu_remapped, gpu_remapx, gpu_remapy, INTER_LINEAR, BORDER_CONSTANT, Scalar(0), stream); // blur cuda::resize(gpu_remapped, gpu_raw_small, Size(IMGW/4,IMGH/4), 0, 0, INTER_LINEAR, stream); filter->apply(gpu_raw_small, gpu_blur_small, stream); cuda::resize(gpu_blur_small, gpu_blur, Size(IMGW,IMGH), 0, 0, INTER_LINEAR, stream); // subtract cuda::subtract(gpu_remapped, gpu_blur, gpu_unsharp, noArray(), -1, stream); // threshold cuda::threshold(gpu_unsharp, gpu_binary, 10, 255, THRESH_BINARY, stream); // download from gpu switch (displaymode) { case 0: gpu_input.download(frame_output, stream); break; case 1: gpu_frame_back.download(frame_output, stream); break; case 2: gpu_raw.download(frame_output, stream); break; case 3: gpu_remapped.download(frame_output, stream); break; case 4: gpu_blur.download(frame_output, stream); break; case 5: gpu_unsharp.download(frame_output, stream); break; case 6: gpu_binary.download(frame_output, stream); break; case 7: gpu_binary.download(frame_output, stream); break; case 8: gpu_binary.download(frame_output, stream); break; } // grab next frame from camera and make gray cap.getFrame(&frame_gray); stream.waitForCompletion(); // blob detect sbd->detect(frame_output, keys); t.update(&keys); // draw blobs if (displaymode == 7) { touch_pts = t.getPoints(); for (int ii=0; ii<touch_pts->size(); ii++) { circle(frame_output, (*touch_pts)[ii]->getPt(), 30, Scalar(255), 2); idstr = new std::string("ID: " + std::to_string(ii)); putText(frame_output, idstr->c_str(), (*touch_pts)[ii]->getPt() + Point_<float>(30,-30), FONT_HERSHEY_PLAIN, 2.0, Scalar(255)); delete idstr; } delete touch_pts; } else if (displaymode == 8) { touch_pts = t.getPoints(); for (int ii=0; ii<touch_pts->size(); ii++) circle(canvas, (*touch_pts)[ii]->getPt(), 15, Scalar(127*(sin((*touch_pts)[ii]->t_start*10)+0.5)+50, 127*(sin((*touch_pts)[ii]->t_start*10+1.05)+0.5)+50, 127*(sin((*touch_pts)[ii]->t_start*10+2.1)+0.5)+50), -1); frame_output = canvas; } // display imshow("Name", frame_output); t_thisframe = getTime(); avgfps += (1./(t_thisframe-t_lastframe)); t_lastframe = t_thisframe; if (index % 30 == 0 && index > 0) { //std::cout << "fps: " << avgfps/30. << std::endl; avgfps = 0.0; } if (waitKey(1) == 27) break; // esc index ++; } return 0; }
[ "benjamin.greer1@gmail.com" ]
benjamin.greer1@gmail.com
4fb7eb23ffee2c8e0892e38bd0d31ab3d340207c
83c9ece4e6b0460e25703730523456db7babe3d5
/ConEmu-alpha/src/ConEmuTh/QueueProcessor.h
01600b4bf102b8922c7e1486fd0d23a61e85fc33
[ "BSD-3-Clause" ]
permissive
rheostat2718/conemu-maximus5
e89b92ba7abb5b3e3cfb4c2e8d1240a6c91284f0
870bbe44c3c11b563a087b4fa22a2208774096db
refs/heads/master
2021-01-10T18:52:35.564980
2015-08-24T09:06:43
2015-08-24T09:06:43
41,538,033
7
1
null
null
null
null
UTF-8
C++
false
false
27,229
h
 /* Copyright (c) 2010-2011 Maximus5 All rights reserved. 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. The name of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''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 AUTHOR 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. */ #pragma once #ifndef TRY #define TRY __try #define CATCH __except(EXCEPTION_EXECUTE_HANDLER) #endif //#ifndef sizeofarray // #define sizeofarray(x) (sizeof(x)/sizeof(*x)) //#endif enum ProcessingPriority { ePriorityHighest = 0, // Этот элемент нужно обрабатывать сразу ePriorityAboveNormal, ePriorityNormal, ePriorityBelowNormal, ePriorityLowest, }; enum ProcessingStatus { eItemEmpty = 0, eItemPassed, // почти то-же что и eItemEmpty, но обработан eItemFailed, eItemRequest, eItemReady, eItemProcessing, // NOW! }; #include "../common/MSectionSimple.h" template<class T> class CQueueProcessor { private: // typedefs struct ProcessingItem { int Status; // enum ProcessingStatus int Priority;// enum ProcessingPriority HRESULT Result; // результат из ProcessItem bool Synch; // Устанавливается в true при синхронной обработке //HANDLE Ready; // Event, может использоваться для ожидания завершения DWORD Start; // Tick старта обработки // Если требуется останов обработки только активного элемента - // появился другой, высоко-приоритетный, который ожидает обработки // Эту функцию могут вызывать потомки, для ускорения реакции на // высоко-приоритетные запросы. Удаление активного элемента из // очереди не произойдет - он потом будет обработан повторно. bool StopRequested; // Информация об элементе T Item; // копия памяти из RequestItem LONG_PTR lParam; // для внутренних нужд потомков }; // Очередь обработки MSectionSimple* mpcs_Queue; int mn_Count, mn_MaxCount; int mn_WaitingCount; HANDLE mh_Waiting; // Event для передергивания нити обработчика ProcessingItem** mpp_Queue; // **, чтобы не беспокоиться об активном элементе HANDLE mh_Queue; DWORD mn_QueueId; HANDLE mh_Alive; DWORD mn_AliveTick; // Активный элемент (обрабатывается сейчас) ProcessingItem* mp_Active; // !!! В NULL не сбрасывать !!! ProcessingItem* mp_SynchRequest; // Если сейчас есть "синхронный" запрос // Запрос на Terminate нити обработки bool mb_TerminateRequested; private: // Выделить память на элементы очереди. Если элементы уже выделены - // очистка существующих не производится. Добавляются новые (пустые) // ячейки, если anInitialCount превышает mn_MaxCount // Наличие свободных ячеек функция не проверяет. // СЕКЦИЯ УЖЕ ДОЛЖНА БЫТЬ ЗАБЛОКИРОВАНА void InitializeQueue(int anInitialCount) { if (anInitialCount < mn_MaxCount && mpp_Queue) { // Уже выделено достаточно элементов return; } ProcessingItem** pp = (ProcessingItem**)calloc(anInitialCount,sizeof(ProcessingItem*)); if (mpp_Queue && mn_Count) { _ASSERTE(mn_Count <= mn_MaxCount); memmove(pp, mpp_Queue, mn_Count*sizeof(ProcessingItem*)); } if (mpp_Queue) free(mpp_Queue); mpp_Queue = pp; for(int i = mn_MaxCount; i < anInitialCount; i++) { mpp_Queue[i] = (ProcessingItem*)calloc(1,sizeof(ProcessingItem)); } mn_MaxCount = anInitialCount; // Done }; private: // Полная очистка очереди. НЕ допускается во время жизни нити! void ClearQueue() { _ASSERTE(mh_Queue==NULL || WaitForSingleObject(mh_Queue,0)==WAIT_OBJECT_0); if (mpp_Queue) { _ASSERTE(eItemEmpty == 0); for(int i = 0; i < mn_MaxCount; i++) { if (mpp_Queue[i]) { if (mpp_Queue[i]->Status != eItemEmpty && mpp_Queue[i]->Status != eItemPassed) { FreeItem(mpp_Queue[i]->Item); } free(mpp_Queue[i]); mpp_Queue[i] = NULL; } } free(mpp_Queue); mpp_Queue = NULL; } }; private: // Warning!!! Должна вызываться ВНУТРИ CriticalSection void CheckWaitingCount() { int nWaiting = 0; for(int i = 0; i < mn_Count; i++) { if (mpp_Queue[i]->Status == eItemRequest) nWaiting ++; } mn_WaitingCount = nWaiting; if (mn_WaitingCount > 0) SetEvent(mh_Waiting); else ResetEvent(mh_Waiting); } // Найти в очереди элемент (если его уже запросили) или добавить в очередь новый ProcessingItem* FindOrCreate(const T& pItem, LONG_PTR lParam, bool Synch, ProcessingPriority Priority) { if (GetCurrentThreadId() == mn_QueueId) { _ASSERTE(GetCurrentThreadId() != mn_QueueId); } int i; ProcessingItem* p = NULL; MSectionLockSimple CS; CS.Lock(mpcs_Queue); if (!mpp_Queue || !mn_MaxCount) { // Очередь еще не была инициализирована InitializeQueue(64); } else { // Если такой запрос уже сделан - просто обновить его приоритет/флаги? for(i = 0; i < mn_Count; i++) { //if (mpp_Queue[i]->Status != eItemEmpty // && mpp_Queue[i]->Status != eItemPassed // && mpp_Queue[i]->Status != eItemFailed) if (mpp_Queue[i]->Status == eItemRequest) { if (IsEqual(pItem, lParam, (mpp_Queue[i]->Item), mpp_Queue[i]->lParam)) { // Можно чуть подправить параметры mpp_Queue[i]->Priority = Priority; mpp_Queue[i]->lParam = lParam; mpp_Queue[i]->Synch = Synch; ApplyChanges(mpp_Queue[i]->Item, pItem); //SetEvent(mh_Waiting); CheckWaitingCount(); _ASSERTE(mpp_Queue[i]->Status != eItemEmpty); CS.Unlock(); //if (mpp_Queue[i]->Status == eItemRequest) -- Теоретически может быть уже выполнен, но здесь - не волнует return mpp_Queue[i]; } } else if (!p && (mpp_Queue[i]->Status == eItemEmpty || mpp_Queue[i]->Status == eItemPassed)) { p = mpp_Queue[i]; // пустой элемент, если не нашли "тот же" } } // Если "пустую" ячейку не нашли, и свободных не осталось if (p == NULL && mn_Count >= mn_MaxCount) { _ASSERTE(mn_Count == mn_MaxCount); InitializeQueue(mn_MaxCount+64); } } // Новая ячейка? if (!p) { if (mn_Count < mn_MaxCount) { p = mpp_Queue[mn_Count++]; } _ASSERTE(p != NULL); } // Копируем данные if (p) { p->Priority = Priority; p->lParam = lParam; p->Result = S_OK; p->Start = 0; p->StopRequested = false; p->Synch = Synch; CopyItem(&pItem, &p->Item); // Отпускаем _ASSERTE(p->Status == eItemEmpty || p->Status == eItemPassed); p->Status = eItemRequest; mn_WaitingCount ++; SetEvent(mh_Waiting); _ASSERTE(p->Status != eItemEmpty); } CheckWaitingCount(); CS.Unlock(); return p; }; public: CQueueProcessor() { mpcs_Queue = new MSectionSimple(true); mn_Count = mn_MaxCount = mn_WaitingCount = 0; mh_Waiting = NULL; mpp_Queue = NULL; mh_Queue = NULL; mn_QueueId = 0; mp_Active = mp_SynchRequest = NULL; mh_Alive = NULL; mn_AliveTick = NULL; mb_TerminateRequested = false; }; virtual ~CQueueProcessor() { Terminate(250); if (mh_Queue) { CloseHandle(mh_Queue); mh_Queue = NULL; } if (mh_Alive) { CloseHandle(mh_Alive); mh_Alive = NULL; } SafeDelete(mpcs_Queue); ClearQueue(); if (mh_Waiting) { CloseHandle(mh_Waiting); mh_Waiting = NULL; } }; public: // Запрос на завершение очереди void RequestTerminate() { mb_TerminateRequested = true; SetEvent(mh_Waiting); }; public: // Немедленное завершение очереди. Очереди дается nTimeout на корректный останов. void Terminate(DWORD nTimeout = INFINITE) { if (!mh_Queue) { // уже return; } // Выставить флаг RequestTerminate(); // Недопустимо if (GetCurrentThreadId() == mn_QueueId) { _ASSERTE(GetCurrentThreadId() != mn_QueueId); return; } // Дождаться завершения DWORD nWait = WaitForSingleObject(mh_Queue, nTimeout); if (nWait != WAIT_OBJECT_0) { _ASSERTE(nWait == WAIT_OBJECT_0); TerminateThread(mh_Queue, 100); } }; public: // Если понадобится определить "живость" нити обработки bool IsAlive() { if (!mh_Alive) return false; ResetEvent(mh_Alive); DWORD nDelta = (GetTickCount() - mn_AliveTick); if (nDelta < 100) return true; //TODO: Возможно придется поменять логику, посмотрим if (WaitForSingleObject(mh_Alive, 500) == WAIT_OBJECT_0) return true; return false; } public: // ВНИМАНИЕ!!! Содержимое pItem КОПИРУЕТСЯ во внутренний буфер. // При вызове ProcessItem приходит указатель на новый элемент из внутреннего буфера. // Если нужно передать дополнительный указатель - пользоваться lParam // Если Synch==true - функция ожидает завершения обработки элемента, а Priority устанавливается в ePriorityHighest // Возврат - при (Synch==true) результат ProcessItem(...) // при (Synch==false) - S_FALSE, если еще в очереди, иначе - результат ProcessItem(...) // !!! При синхронном запросе - результат возвращается через pItem. HRESULT RequestItem(bool Synch, ProcessingPriority Priority, const T pItem, LONG_PTR lParam) { HRESULT hr = CheckThread(); if (FAILED(hr)) return hr; ProcessingItem* p = FindOrCreate(pItem, lParam, Synch, Synch ? ePriorityHighest : Priority); if (!p) { _ASSERTE(p!=NULL); return E_UNEXPECTED; } _ASSERTE(p->Status != eItemEmpty); // Если хотят результат "сейчас" if (Synch) { // Если уже обработан - сразу вернем результат. if (p->Status == eItemPassed) { // Уже обработан асинхронно return p->Result; } // Установить указатель на "синхронный" запрос mp_SynchRequest = p; // Проверим, есть ли активный элемент? if (mp_Active && mp_Active != p) { // Сейчас в нити обработки обрабатывается другой элемент // Желательно остановить или отложить (если возможно) его обработку mp_Active->StopRequested = true; } //// Для удобства - назначить Event //if (p->Ready) // ResetEvent(p->Ready); //else // p->Ready = CreateEvent(NULL, FALSE, FALSE, NULL); // Ожидаем завершения DWORD nWait = -1; //HANDLE hEvents[2] = {p->Ready, mh_Queue}; while((nWait = WaitForSingleObject(mh_Queue,10)) == WAIT_TIMEOUT) { //nWait = WaitForMultipleObjects(2, hEvents, FALSE, 25); //if (nWait == (WAIT_OBJECT_0 + 1)) //{ // // Нить обработки была завершена // return E_ABORT; //} //if (p->Status == eItemPassed) //{ // // Уже обработан асинхронно // return p->Result; //} if (p->Status == eItemPassed || (p->Status == eItemFailed || p->Status == eItemReady)) { if (mp_SynchRequest == p) { mp_SynchRequest = NULL; } //CloseHandle(p->Ready); //p->Ready = NULL; //// Вернуть результат обработки (данные) //CopyItem(&p->Item, &pItem); //// И сброс нашей внутренней ячейки //memset(&p->Item, 0, sizeof(p->Item)); //p->Status = eItemEmpty; // Возврат значения return p->Result; } //if (nWait != WAIT_TIMEOUT) //{ // _ASSERTE(nWait == WAIT_TIMEOUT); // return E_ABORT; //} } // Нить обработки была завершена return E_ABORT; } // При готовности - результат возвращается через OnItemReady / OnItemFailed return S_FALSE; //if (p->Status == eItemRequest || p->Status == eItemProcessing) // return S_FALSE; // в процессе // //if (p->Status != eItemFailed && p->Status != eItemReady) //{ // _ASSERTE(p->Status == eItemFailed || p->Status == eItemReady); // return E_UNEXPECTED; //} //// Вернуть результат обработки (данные) //CopyItem(&p->Item, pItem); //// И сброс нашей внутренней ячейки //memset(&p->Item, 0, sizeof(p->Item)); //p->Status = eItemEmpty; //// Возврат значения //return p->Result; }; // Перед помещением более актуальных элементов в очередь можно // уменьшить приоритет текущих элементов на количество ступеней // альтернатива функции ResetQueue void DiscountPriority(UINT nSteps = 1) { if (mpp_Queue) { _ASSERTE(eItemEmpty == 0); // Для получения элемента - нужно заблокировать секцию MSectionLockSimple CS; CS.Lock(mpcs_Queue); for(int i = 0; i < mn_MaxCount; i++) { if (mpp_Queue[i]) { if (mpp_Queue[i]->Status != eItemEmpty && mpp_Queue[i]->Status != eItemPassed && mpp_Queue[i]->Status != eItemFailed) { int nNew = min(ePriorityLowest, (mpp_Queue[i]->Priority+nSteps)); mpp_Queue[i]->Priority = nNew; } } } CheckWaitingCount(); // Больше не требуется CS.Unlock(); } }; // Очищаются все ячейки, с приоритетом равным или ниже указанного // альтернатива функции DiscountPriority void ResetQueue(ProcessingPriority priority = ePriorityHighest) { // -- Сначала - останов -- не будем //Terminate(); // сброс ячеек, удовлетворяющих условию if (mpp_Queue) { _ASSERTE(eItemEmpty == 0); // Для получения следующего элемента - нужно заблокировать секцию MSectionLockSimple CS; CS.Lock(mpcs_Queue); for (int i = 0; i < mn_MaxCount; i++) { if (mpp_Queue[i]) { if (mpp_Queue[i]->Status != eItemEmpty mpp_Queue[i]->Status != eItemPassed && mpp_Queue[i]->Status != eItemProcessing && mpp_Queue[i]->Priority >= priority ) { FreeItem(&mpp_Queue[i]->Item); } memset(mpp_Queue[i], 0, sizeof(ProcessingItem)); } } CheckWaitingCount(); // Больше не требуется CS.Unlock(); } //mn_Count = 0; -- !!! нельзя !!! }; // Если требуется останов обработки только активного элемента - // появился другой, высоко-приоритетный, который ожидает обработки // Эту функцию могут вызывать потомки, для ускорения реакции на // высоко-приоритетные запросы. Удаление активного элемента из // очереди не произойдет - он потом будет обработан повторно. virtual bool IsStopRequested(const T& pItem) { _ASSERTE(mp_Active && pItem == mp_Active->Item); if (!mp_Active) return false; return mp_Active->StopRequested; }; protected: /* *** Подлежит! обязательному переопределению в потомках *** */ // Обработка элемента. Функция должна возвращать: // S_OK - Элемент успешно обработан, будет установлен статус eItemReady // S_FALSE - ошибка обработки, будет установлен статус eItemFailed // FAILED()- статус eItemFailed И нить обработчика будет ЗАВЕРШЕНА virtual HRESULT ProcessItem(T& pItem, LONG_PTR lParam) { return E_NOINTERFACE; }; protected: /* *** Можно переопределить в потомках *** */ // Вызывается при успешном завершении обработки элемента при асинхронной обработке. // Если элемент обработан успешно (Status == eItemReady), вызывается OnItemReady virtual void OnItemReady(T& pItem, LONG_PTR lParam) { return; }; // Иначе (Status == eItemFailed) - OnItemFailed virtual void OnItemFailed(T& pItem, LONG_PTR lParam) { return; }; // После завершения этих функций ячейка стирается! protected: /* *** Можно переопределить в потомках *** */ // Если требуется останов всех запросов и выход из нити обработчика virtual bool IsTerminationRequested() { return mb_TerminateRequested; }; // Здесь потомок может выполнить CoInitialize например virtual HRESULT OnThreadStarted() { return S_OK; } // Здесь потомок может выполнить CoUninitialize например virtual void OnThreadStopped() { return; }; // Если требуются специфические действия по копированию элемента - переопределить virtual void CopyItem(const T* pSrc, T* pDst) { if (pSrc != pDst) memmove(pDst, pSrc, sizeof(T)); }; // Если элемент уже был запрошен с другими параметрами, а сейчас пришел новый запрос virtual void ApplyChanges(T& pDst, const T& pSrc) { return; } // Можно переопределить для изменения логики сравнения (используется при поиске) virtual bool IsEqual(const T& pItem1, LONG_PTR lParam1, const T& pItem2, LONG_PTR lParam2) { int i = memcmp(pItem1, pItem2, sizeof(T)); return (i == 0) && (lParam1 == lParam2); }; // Если в T определены какие-то указатели - освободить их virtual void FreeItem(const T& pItem) { return; }; // Если элемент потерял актуальность - стал НЕ высокоприоритетным virtual bool CheckHighPriority(const T& pItem) { // Перекрыть в потомке и вернуть false, если, например, был запрос // для текущей картинки, но пользователь уже улистал с нее на другую return true; }; protected: /* *** Эти функции не переопредяются *** */ HRESULT ProcessItem(ProcessingItem* p) { HRESULT hr = E_FAIL; TRY { // Собственно, обработка. Выполняется в потомке hr = ProcessItem(p->Item, p->lParam); } CATCH { hr = E_UNEXPECTED; } return hr; } bool ProcessingStep() { // мы живы mn_AliveTick = GetTickCount(); SetEvent(mh_Alive); // Кого будем обрабатывать ProcessingItem* p = NULL; if (WaitForSingleObject(mh_Waiting, 50) == WAIT_TIMEOUT) { //_ASSERTE(mn_WaitingCount==0); if (mn_WaitingCount == 0) return false; // true==Terminate } // Для получения следующего элемента - нужно заблокировать секцию MSectionLockSimple CS; CS.Lock(mpcs_Queue); // Следующий? if (mp_SynchRequest == NULL) { // Найти требующуюся ячейку for (int piority = ePriorityHighest; piority <= ePriorityLowest; piority++) { for (int i = 0; i < mn_Count; i++) { if (piority <= ePriorityAboveNormal && mpp_Queue[i]->Priority <= piority) { if (!CheckHighPriority(mpp_Queue[i]->Item)) { // элемент перестал быть высокоприоритетным mpp_Queue[i]->Priority = ePriorityNormal; continue; } } if (mpp_Queue[i]->Status == eItemRequest // Найти "запрашиваемый" // с соответствующим приоритетом && (mpp_Queue[i]->Priority == piority || piority == ePriorityLowest)) { p = mpp_Queue[i]; break; } } // Если нашли - сразу выйдем if (p) break; } // Может этот элемент уже попросили пропустить? if (p && p->StopRequested) { p->StopRequested = false; p = NULL; } } // Может пока искали пришел "синхронный" запрос? if (mp_SynchRequest) { p = mp_SynchRequest; mp_SynchRequest = NULL; // сразу сбросить, больше не нужен } if (p) // Сразу установим статус, до вызода из секции { p->Status = eItemProcessing; } CheckWaitingCount(); // Секция больше не нужна CS.Unlock(); // Может уже был запрос на Terminate? if (IsTerminationRequested()) return true; // Если есть, кого обработать if (p) { HRESULT hr = E_FAIL; // Чтобы знать, что обрабатывалось mp_Active = p; // Выставить флаги, что этот элемент "начат" и когда p->Start = GetTickCount(); p->Status = eItemProcessing; hr = ProcessItem(p); _ASSERTE(hr!=E_NOINTERFACE); p->Result = hr; p->Status = (hr == S_OK) ? eItemReady : eItemFailed; // Сигнализация о "готовности", если запрос был асинхронный if (!p->Synch) { // Вернуть результат обработки (данные) if (hr == S_OK) OnItemReady(p->Item, p->lParam); else OnItemFailed(p->Item, p->lParam); // И сброс нашей внутренней ячейки memset(p->Item, 0, sizeof(p->Item)); p->Status = eItemPassed; } //if (FAILED(hr)) -- не будем так жестоко. Если нужно - позовут RequestTerminate. //{ // _ASSERTE(SUCCEEDED(hr)); // RequestTerminate(); // return true; //} } return IsTerminationRequested(); }; static DWORD CALLBACK ProcessingThread(LPVOID pParam) { CQueueProcessor<T>* pThis = (CQueueProcessor<T>*)pParam; while(!pThis->IsTerminationRequested()) { if (pThis->ProcessingStep()) break; } return 0; }; HRESULT CheckThread() { // Может нить уже запустили? if (mh_Queue && mn_QueueId) { if (WaitForSingleObject(mh_Queue, 0) == WAIT_OBJECT_0) { CloseHandle(mh_Queue); mh_Queue = NULL; } } if (!mh_Alive) { mh_Alive = CreateEvent(NULL, FALSE, FALSE, NULL); mn_AliveTick = 0; } if (!mh_Waiting) { mh_Waiting = CreateEvent(NULL, TRUE, FALSE, NULL); } if (!mh_Queue) { mb_TerminateRequested = false; ResetEvent(mh_Alive); mh_Queue = CreateThread(NULL, 0, ProcessingThread, this, 0, &mn_QueueId); } return (mh_Queue == NULL) ? E_UNEXPECTED : S_OK; }; };
[ "ConEmu.Maximus5@90859970-1e37-fbe9-063f-f7b1e201b3eb" ]
ConEmu.Maximus5@90859970-1e37-fbe9-063f-f7b1e201b3eb
f1be0baffae5f3fafedab0a036509bf33276a4cf
60131dc5690a6f3fa341fb9650a2789b39b4fd34
/Caramel/deps/glm/glm/gtx/normal.hpp
7a12dbaf8b9329a78c03014c31a9d757cb3d56c2
[]
permissive
Karamu98/Caramel
73eaa31e371da0ce0496be2e5b50dc017bc75656
5693841cfc8313d4d725448bf0add84b58c20fe4
refs/heads/master
2023-04-02T11:49:24.606439
2023-03-22T00:55:16
2023-03-22T00:55:16
166,116,278
7
1
Apache-2.0
2020-01-09T11:31:21
2019-01-16T21:40:18
C
UTF-8
C++
false
false
1,071
hpp
/// @ref gtx_normal /// @file glm/gtx/normal.hpp /// /// @see core (dependence) /// @see gtx_extented_min_max (dependence) /// /// @defgroup gtx_normal GLM_GTX_normal /// @ingroup gtx /// /// @brief Compute the normal of a triangle. /// /// <glm/gtx/normal.hpp> need to be included to use these functionalities. #pragma once // Dependency: #include "../glm.hpp" #ifndef GLM_ENABLE_EXPERIMENTAL # error "GLM: GLM_GTX_normal is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it." #endif #if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED) # pragma message("GLM: GLM_GTX_normal extension included") #endif namespace glm { /// @addtogroup gtx_normal /// @{ //! Computes triangle normal from triangle points. //! From GLM_GTX_normal extension. template <typename T, precision P> GLM_FUNC_DECL tvec3<T, P> triangleNormal( tvec3<T, P> const & p1, tvec3<T, P> const & p2, tvec3<T, P> const & p3); /// @} }//namespace glm #include "normal.inl"
[ "callumhaines98@hotmail.co.uk" ]
callumhaines98@hotmail.co.uk
130d69894557f08a53bfe2addbf621d08e9dab08
95ff051d315bcb6924c4f7b673d132525c63f575
/IDF_SPIFFS/components/httpServer/http.cpp
87370a6bf75e74435683964a75bc0f23b1c04cce
[]
no_license
vanavaks/sdkIdf
6fe18a9ae0090af50d6a17478444dc1d74b92fa1
6ceaba668e0d0faaa926494c9de7c9ffdac0401f
refs/heads/main
2023-04-20T19:25:06.271413
2021-05-05T05:46:58
2021-05-05T05:46:58
328,322,919
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
12,137
cpp
/* * http.c * * Created on: 13 ÿíâ. 2021 ã. * Author: Vanavaks * * class uri handler * * handler * URI handler structure * register (get uri) * * * title * categorys list * */ #include <esp_err.h> #include <esp_event.h> #include <esp_event_base.h> #include <esp_log.h> #include <esp_wifi_types.h> #include <http.h> #include <stddef.h> #include <stdlib.h> #include <sys/param.h> #include <tcpip_adapter.h> #include "htmlHelper.h" #include "Tag.h" #define TAG_KEY_MAX_SIZE 20 #define TAG_VAL_MAX_SIZE 64 #define HTTP_DEBUG_LEVEL ESP_LOG_INFO #define ESP_ERR_HTTP_POST_KEY_SIZE 0x01 #define ESP_ERR_HTTP_POST_VAL_SIZE 0x02 static const char *http_tag="HTTP"; static httpd_handle_t server = NULL; /* ======== POST parsing ======== */ bool isSymbol(char c){ if(c >= ' ') return true; if(c >= '0' && c <= '9') return true; if(c >= 'A' && c <= 'Z') return true; if(c >= 'a' && c <= 'z') return true; if(c == '_') return true; if(c == '%') return true; return false; } bool isDigSymv(char c){ if(c >= '0' && c <= '9') return true; return false; } bool isIpSymv(char c){ if(c >= '0' && c <= '9') return true; if(c == '.') return true; return false; } bool isUrlSymv(char c){ if(isSymbol(c)) if(c >= ' ') return true; return false; } static void strInit(char* s, uint8_t len){ if(s == NULL) return; for(int i = 0; i<len;i++){ *s = NULL; s++; } } err_t http_parsePostReq(const char* buff){ if(buff == NULL) return 1; char key[TAG_KEY_MAX_SIZE] = {0}; char value[TAG_VAL_MAX_SIZE] = {0}; int keyInd = 0; int valInd = 0; bool keyValid = false; size_t buffSize = strlen(buff)+1; char s; for(int i=0;i<buffSize;i++){ s = buff[i]; if(s == '=' && keyInd > 0){ /* key is parsed -> start value parsing */ keyValid = true; ESP_LOGI(http_tag, "post key parsed"); }else if(s == '&' || i >= buffSize-1 || s == 0 || s == 'CR' || s == 'LF'){ /* first key-value pair parsed */ if(keyValid){ /* key can't be zero */ Tag::set(key,value); } /* bad key */ keyValid = false; keyInd = 0; valInd = 0; strInit(key, sizeof(key)); strInit(value, sizeof(value)); }else if(isSymbol(s)){ /* is symbol */ if(s == '%'){ /* ASCII symbol */ char symv[3]{0}; symv[0] = buff[++i]; symv[1] = buff[++i]; s = (char)strtol(symv,NULL,16); } if(!keyValid){ /* key parsing */ if(keyInd >= TAG_KEY_MAX_SIZE) return ESP_ERR_HTTP_POST_KEY_SIZE; key[keyInd++] = s; }else{ /* value parsing*/ if(keyInd >= TAG_VAL_MAX_SIZE) return ESP_ERR_HTTP_POST_VAL_SIZE; value[valInd++] = s; } } } return 0; } /* ========= HTTP hendlers ========= */ /* An HTTP GET handler */ esp_err_t hello_get_handler(httpd_req_t *req) { /* Send response with custom headers and body set as the*/ ESP_LOGI(http_tag, "Sanding html page"); err_t err = sendHtml(req); if (err != ESP_OK) return err; return ESP_OK; } httpd_uri_t hello = { .uri = "/hello", .method = HTTP_GET, .handler = hello_get_handler, /* Let's pass response string in user * context to demonstrate it's usage */ .user_ctx = (char*)"Hello World!" }; /* ======== Config hendlers ======== */ const http_category_t http_ntp = { .title = "NTP configuration", .url ="/ntp", .menuTitle = "ntp", .category = "ntp" }; const http_category_t http_net = { .title = "Net configuration", .url ="/net", .menuTitle = "Net", .category = "Net" }; const http_category_t http_tlg = { .title = "Telegram configuration", .url ="/tlg", .menuTitle = "Tlg", .category = "Tlg" }; const http_category_t http_DO = { .title = "Digital outputs", .url ="/DO", .menuTitle = "IO", .category = "DO" }; const http_category_t http_AO = { .title = "Analog outputs", .url ="/AO", .menuTitle = "IO", .category = "AO" }; esp_err_t cfg_get_handler(httpd_req_t *req){ http_category_t* ctx = (http_category_t*)req->user_ctx; ESP_LOGI(http_tag, "Sanding %s page", ctx->category); err_t err = sendConfigContent(req, ctx); if (err != ESP_OK) return err; return ESP_OK; } httpd_uri_t ntp_configGet = { .uri = http_ntp.url, .method = HTTP_GET, .handler = cfg_get_handler, .user_ctx = (http_category_t*)&http_ntp }; httpd_uri_t net_configGet = { .uri = http_net.url, .method = HTTP_GET, .handler = cfg_get_handler, .user_ctx = (http_category_t*)&http_net }; httpd_uri_t tlg_configGet = { .uri = http_tlg.url, .method = HTTP_GET, .handler = cfg_get_handler, .user_ctx = (http_category_t*)&http_tlg }; #define POST_BUFF_LEN 300 esp_err_t cfg_post_handler(httpd_req_t *req){ char buf[POST_BUFF_LEN]{0}; int ret, remaining = req->content_len; if (remaining > 0) { //strInit(buf, POST_BUFF_LEN); /* Read the data for the request */ if ((ret = httpd_req_recv(req, buf, MIN(remaining, sizeof(buf)))) <= 0) { if (ret == HTTPD_SOCK_ERR_TIMEOUT) { /* Retry receiving if timeout occurred */ ; } return ESP_FAIL; } remaining -= ret; /* Log data received */ ESP_LOGI(http_tag, "=========== RECEIVED DATA =========="); ESP_LOGI(http_tag, "%.*s", ret, buf); ESP_LOGI(http_tag, "===================================="); http_parsePostReq(buf); /* Send back the same data */ http_category_t* ctx = (http_category_t*)req->user_ctx; ESP_LOGI(http_tag, "Sanding %s page to back",ctx->category); err_t err = sendConfigContent(req, ctx); if (err != ESP_OK) return err; } return ESP_OK; } httpd_uri_t ntp_configPost = { .uri = http_ntp.url, .method = HTTP_POST, .handler = cfg_post_handler, .user_ctx = (http_category_t*)&http_ntp }; httpd_uri_t net_configPost = { .uri = http_net.url, .method = HTTP_POST, .handler = cfg_post_handler, .user_ctx = (http_category_t*)&http_net }; httpd_uri_t tlg_configPost = { .uri = http_tlg.url, .method = HTTP_POST, .handler = cfg_post_handler, .user_ctx = (http_category_t*)&http_tlg }; /* ========== IO PAGE =================== */ esp_err_t http_cfg_get_handler(httpd_req_t *req){ http_category_t* ctx = (http_category_t*)req->user_ctx; ESP_LOGI(http_tag, "Sanding %s page", ctx->category); //ESP_LOGI(http_tag, "Sanding 'io' page"); err_t err = html_sendConfigContent(req, ctx, 5); if (err != ESP_OK) return err; return ESP_OK; } esp_err_t http_cfg_post_handler(httpd_req_t *req){ char buf[POST_BUFF_LEN]{0}; int ret, remaining = req->content_len; if (remaining > 0) { //strInit(buf, POST_BUFF_LEN); /* Read the data for the request */ if ((ret = httpd_req_recv(req, buf, MIN(remaining, sizeof(buf)))) <= 0) { if (ret == HTTPD_SOCK_ERR_TIMEOUT) { /* Retry receiving if timeout occurred */ ; } return ESP_FAIL; } remaining -= ret; /* Log data received */ ESP_LOGI(http_tag, "=========== RECEIVED DATA =========="); ESP_LOGI(http_tag, "%.*s", ret, buf); ESP_LOGI(http_tag, "===================================="); http_parsePostReq(buf); /* Send back the same data */ http_category_t* ctx = (http_category_t*)req->user_ctx; ESP_LOGI(http_tag, "Sanding %s page to back",ctx->category); err_t err = html_sendConfigContent(req, ctx, 5); if (err != ESP_OK) return err; } return ESP_OK; } #if 0 const http_category_t IO_cats[] = { {.url = "/di", .title = "Digital inputs", .category = "DI", .butName = "setDO", .menuTitle = ""}, {.url = "/do", .title = "Digital outputs", .category = "DO", .butName = "setDO", .menuTitle = ""}, {.url = "/ai", .title = "Analog inputs", .category = "AI", .butName = "setDO", .menuTitle = ""}, {.url = "/ao", .title = "Analog outputs", .category = "AO", .butName = "setAO", .menuTitle = ""}, {.url = "/tempr", .title = "Temperature sensors", .category = "tempr", .butName = "setDO", .menuTitle = ""} }; #endif //TODO to relize transfer of categorys numbers to html helper (struct) const http_category_t IO_cats[] = { {"Digital inputs", "/io", "", "DI", "setDi"}, {"Digital outputs", "/io", "", "DO", "setDO"}, {"Analog inputs", "/io", "", "AI", "set Analog Input"}, {"Analog outputs", "/io", "", "AO", "setAO"}, {"Temperature sensors", "/io", "", "tempr", NULL} }; const httpd_uri_t io_configGet = { .uri = "/io", .method = HTTP_GET, .handler = http_cfg_get_handler, .user_ctx = (http_category_t*)&IO_cats }; const httpd_uri_t io_configPost = { .uri = "/io", .method = HTTP_POST, .handler = http_cfg_post_handler, .user_ctx = (http_category_t*)&IO_cats }; const httpd_uri_t do_configPost = { .uri = http_DO.url, .method = HTTP_POST, .handler = cfg_post_handler, .user_ctx = (http_category_t*)&IO_cats }; const httpd_uri_t ao_configPost = { .uri = http_AO.url, .method = HTTP_POST, .handler = cfg_post_handler, .user_ctx = (http_category_t*)&IO_cats }; /* ========== Web server init =========== */ httpd_handle_t start_webserver(void) { httpd_handle_t server = NULL; httpd_config_t config = HTTPD_DEFAULT_CONFIG(); config.max_uri_handlers = 16; // Start the httpd server esp_log_level_set(http_tag, HTTP_DEBUG_LEVEL); html_init(); ESP_LOGI(http_tag, "Starting server on port: '%d'", config.server_port); if (httpd_start(&server, &config) == ESP_OK) { // Set URI handlers ESP_LOGI(http_tag, "Registering URI handlers"); httpd_register_uri_handler(server, &hello); httpd_register_uri_handler(server, &net_configGet); httpd_register_uri_handler(server, &net_configPost); httpd_register_uri_handler(server, &ntp_configGet); httpd_register_uri_handler(server, &ntp_configPost); httpd_register_uri_handler(server, &tlg_configGet); httpd_register_uri_handler(server, &tlg_configPost); httpd_register_uri_handler(server, &io_configGet); httpd_register_uri_handler(server, &io_configPost); //httpd_register_uri_handler(server, &do_configPost); //httpd_register_uri_handler(server, &ao_configPost); return server; } ESP_LOGI(http_tag, "Error starting server!"); return NULL; } void stop_webserver(httpd_handle_t server) { // Stop the httpd server httpd_stop(server); } static void disconnect_handler(void* arg, esp_event_base_t event_base, int32_t event_id, void* event_data) { httpd_handle_t* server = (httpd_handle_t*) arg; if (*server) { ESP_LOGI(http_tag, "Stopping webserver"); stop_webserver(*server); *server = NULL; } } static void connect_handler(void* arg, esp_event_base_t event_base, int32_t event_id, void* event_data) { httpd_handle_t* server = (httpd_handle_t*) arg; if (*server == NULL) { ESP_LOGI(http_tag, "Starting webserver"); *server = start_webserver(); } } void http_startWebServer(){ ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_STA_GOT_IP, &connect_handler, &server)); ESP_ERROR_CHECK(esp_event_handler_register(WIFI_EVENT, WIFI_EVENT_STA_DISCONNECTED, &disconnect_handler, &server)); server = start_webserver(); } void http_stopWebServ(){ ESP_LOGI(http_tag,"Heap before deleting web server%d\n", esp_get_free_heap_size()); stop_webserver(server); ESP_LOGI(http_tag,"Heap after deleting web server%d\n", esp_get_free_heap_size()); } void http_strtWebServ(){ ESP_LOGI(http_tag,"Heap before creating web server%d\n", esp_get_free_heap_size()); server = start_webserver(); ESP_LOGI(http_tag,"Heap after creating web server%d\n", esp_get_free_heap_size()); }
[ "vgvanrt@mail.ru" ]
vgvanrt@mail.ru
c3e4e32ab2f5d3aa7f44e5437476dd92cc645a02
e8070a156083fefb3039ffd94852423bbd5b9e4b
/tooling/ast/test/Decl/UsingDecl.cpp
ab54980aa1848a27e7475f00d80b2edb7403216e
[]
no_license
learn-llvm/snippets_clang
ffadb7b4bd193a2bc1d45ce907e33f0eac758eaa
439ffde2a5dde203ef14fb489ea97ad655b94a79
refs/heads/master
2023-07-07T04:06:24.153887
2018-10-25T17:34:07
2018-10-25T17:34:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
274
cpp
// RUN: ast -f test "%s" 2>&1 | FileCheck %s namespace A { int i; }; // CHECK: NamespaceDecl // CHECK-NEXT: DeclarationName test1 // CHECK-NEXT: UsingDecl // CHECK-NEXT: NestedNameSpecifier A:: // CHECK-NEXT: DeclarationName i namespace test1 { using A::i; };
[ "leftcopy.chx@gmail.com" ]
leftcopy.chx@gmail.com
ebb840488b489aec0c416c123d319806d3eb6111
1dbf007249acad6038d2aaa1751cbde7e7842c53
/gaussdbfornosql/include/huaweicloud/gaussdbfornosql/v3/model/UpdateSecurityGroupResponse.h
5b1b13d2e29cf1f8e4420254c1f1c8a298355f36
[]
permissive
huaweicloud/huaweicloud-sdk-cpp-v3
24fc8d93c922598376bdb7d009e12378dff5dd20
71674f4afbb0cd5950f880ec516cfabcde71afe4
refs/heads/master
2023-08-04T19:37:47.187698
2023-08-03T08:25:43
2023-08-03T08:25:43
324,328,641
11
10
Apache-2.0
2021-06-24T07:25:26
2020-12-25T09:11:43
C++
UTF-8
C++
false
false
1,493
h
#ifndef HUAWEICLOUD_SDK_GAUSSDBFORNOSQL_V3_MODEL_UpdateSecurityGroupResponse_H_ #define HUAWEICLOUD_SDK_GAUSSDBFORNOSQL_V3_MODEL_UpdateSecurityGroupResponse_H_ #include <huaweicloud/gaussdbfornosql/v3/GaussDBforNoSQLExport.h> #include <huaweicloud/core/utils/ModelBase.h> #include <huaweicloud/core/http/HttpResponse.h> #include <string> namespace HuaweiCloud { namespace Sdk { namespace Gaussdbfornosql { namespace V3 { namespace Model { using namespace HuaweiCloud::Sdk::Core::Utils; using namespace HuaweiCloud::Sdk::Core::Http; /// <summary> /// Response Object /// </summary> class HUAWEICLOUD_GAUSSDBFORNOSQL_V3_EXPORT UpdateSecurityGroupResponse : public ModelBase, public HttpResponse { public: UpdateSecurityGroupResponse(); virtual ~UpdateSecurityGroupResponse(); ///////////////////////////////////////////// /// ModelBase overrides void validate() override; web::json::value toJson() const override; bool fromJson(const web::json::value& json) override; ///////////////////////////////////////////// /// UpdateSecurityGroupResponse members /// <summary> /// 任务ID。 /// </summary> std::string getJobId() const; bool jobIdIsSet() const; void unsetjobId(); void setJobId(const std::string& value); protected: std::string jobId_; bool jobIdIsSet_; #ifdef RTTR_FLAG RTTR_ENABLE() #endif }; } } } } } #endif // HUAWEICLOUD_SDK_GAUSSDBFORNOSQL_V3_MODEL_UpdateSecurityGroupResponse_H_
[ "hwcloudsdk@huawei.com" ]
hwcloudsdk@huawei.com
2c5e73c085f76811bdd66f433609a72639028ddd
871698741689e4fc2a12e1ebe83b18d5e3afb5fa
/espoir/Console.h
e791849ebac1d610e63b9393f4206847eaa8fea3
[ "BSD-2-Clause" ]
permissive
volvicgeyser/espoir
fb9e3fd30719483818ae4664ccf97aa6262ae722
fd8a3a057a0de5ec5987d1067129675f3a699eca
refs/heads/master
2021-01-22T16:38:20.208012
2013-02-01T15:39:59
2013-02-01T15:39:59
3,368,220
0
0
null
null
null
null
UTF-8
C++
false
false
235
h
#pragma once namespace espoir{ class Console{ private: public: Console(); }; struct ConsoleDeleter{ template<class T> void operator()(T* ptr){ BOOST_ASSERT(ptr); FreeConsole(); delete ptr; ptr = NULL; } }; }
[ "Fenrir@.(none)" ]
Fenrir@.(none)
e9e8e497fa05a604512fb8588c48fec6893fe26b
5caf84a373e34d75ded9bae736e4961c55ee1d30
/omid/ai/Protobuf/ER-force/messages_robocup_ssl_refbox_log.pb.cc
d36bfb408d1b3a0392705139705cd1816fd40ce0
[]
no_license
fdmxfarhan/omid
e79999df16af78b0e29819aa8000478eb5c77cae
5279215dad916d117f5bc81f64842480bfcef3f4
refs/heads/main
2023-08-21T01:16:04.111709
2021-10-14T10:15:57
2021-10-14T10:15:57
416,839,216
0
0
null
null
null
null
UTF-8
C++
false
true
22,505
cc
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: messages_robocup_ssl_refbox_log.proto #include "messages_robocup_ssl_refbox_log.pb.h" #include <algorithm> #include <google/protobuf/io/coded_stream.h> #include <google/protobuf/extension_set.h> #include <google/protobuf/wire_format_lite.h> #include <google/protobuf/descriptor.h> #include <google/protobuf/generated_message_reflection.h> #include <google/protobuf/reflection_ops.h> #include <google/protobuf/wire_format.h> // @@protoc_insertion_point(includes) #include <google/protobuf/port_def.inc> PROTOBUF_PRAGMA_INIT_SEG constexpr Log_Frame::Log_Frame( ::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized) : refbox_cmd_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string) , frame_(nullptr){} struct Log_FrameDefaultTypeInternal { constexpr Log_FrameDefaultTypeInternal() : _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {} ~Log_FrameDefaultTypeInternal() {} union { Log_Frame _instance; }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT Log_FrameDefaultTypeInternal _Log_Frame_default_instance_; constexpr Refbox_Log::Refbox_Log( ::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized) : log_(){} struct Refbox_LogDefaultTypeInternal { constexpr Refbox_LogDefaultTypeInternal() : _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {} ~Refbox_LogDefaultTypeInternal() {} union { Refbox_Log _instance; }; }; PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT Refbox_LogDefaultTypeInternal _Refbox_Log_default_instance_; static ::PROTOBUF_NAMESPACE_ID::Metadata file_level_metadata_messages_5frobocup_5fssl_5frefbox_5flog_2eproto[2]; static constexpr ::PROTOBUF_NAMESPACE_ID::EnumDescriptor const** file_level_enum_descriptors_messages_5frobocup_5fssl_5frefbox_5flog_2eproto = nullptr; static constexpr ::PROTOBUF_NAMESPACE_ID::ServiceDescriptor const** file_level_service_descriptors_messages_5frobocup_5fssl_5frefbox_5flog_2eproto = nullptr; const uint32_t TableStruct_messages_5frobocup_5fssl_5frefbox_5flog_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { PROTOBUF_FIELD_OFFSET(::Log_Frame, _has_bits_), PROTOBUF_FIELD_OFFSET(::Log_Frame, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ ~0u, // no _inlined_string_donated_ PROTOBUF_FIELD_OFFSET(::Log_Frame, frame_), PROTOBUF_FIELD_OFFSET(::Log_Frame, refbox_cmd_), 1, 0, ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::Refbox_Log, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ ~0u, // no _weak_field_map_ ~0u, // no _inlined_string_donated_ PROTOBUF_FIELD_OFFSET(::Refbox_Log, log_), }; static const ::PROTOBUF_NAMESPACE_ID::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { { 0, 8, -1, sizeof(::Log_Frame)}, { 10, -1, -1, sizeof(::Refbox_Log)}, }; static ::PROTOBUF_NAMESPACE_ID::Message const * const file_default_instances[] = { reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_Log_Frame_default_instance_), reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_Refbox_Log_default_instance_), }; const char descriptor_table_protodef_messages_5frobocup_5fssl_5frefbox_5flog_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = "\n%messages_robocup_ssl_refbox_log.proto\032" "$messages_robocup_ssl_detection.proto\"C\n" "\tLog_Frame\022\"\n\005frame\030\001 \002(\0132\023.SSL_Detectio" "nFrame\022\022\n\nrefbox_cmd\030\002 \002(\t\"%\n\nRefbox_Log" "\022\027\n\003log\030\001 \003(\0132\n.Log_Frame" ; static const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable*const descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto_deps[1] = { &::descriptor_table_messages_5frobocup_5fssl_5fdetection_2eproto, }; static ::PROTOBUF_NAMESPACE_ID::internal::once_flag descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto_once; const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto = { false, false, 185, descriptor_table_protodef_messages_5frobocup_5fssl_5frefbox_5flog_2eproto, "messages_robocup_ssl_refbox_log.proto", &descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto_once, descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto_deps, 1, 2, schemas, file_default_instances, TableStruct_messages_5frobocup_5fssl_5frefbox_5flog_2eproto::offsets, file_level_metadata_messages_5frobocup_5fssl_5frefbox_5flog_2eproto, file_level_enum_descriptors_messages_5frobocup_5fssl_5frefbox_5flog_2eproto, file_level_service_descriptors_messages_5frobocup_5fssl_5frefbox_5flog_2eproto, }; PROTOBUF_ATTRIBUTE_WEAK const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable* descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto_getter() { return &descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto; } // Force running AddDescriptors() at dynamic initialization time. PROTOBUF_ATTRIBUTE_INIT_PRIORITY static ::PROTOBUF_NAMESPACE_ID::internal::AddDescriptorsRunner dynamic_init_dummy_messages_5frobocup_5fssl_5frefbox_5flog_2eproto(&descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto); // =================================================================== class Log_Frame::_Internal { public: using HasBits = decltype(std::declval<Log_Frame>()._has_bits_); static const ::SSL_DetectionFrame& frame(const Log_Frame* msg); static void set_has_frame(HasBits* has_bits) { (*has_bits)[0] |= 2u; } static void set_has_refbox_cmd(HasBits* has_bits) { (*has_bits)[0] |= 1u; } static bool MissingRequiredFields(const HasBits& has_bits) { return ((has_bits[0] & 0x00000003) ^ 0x00000003) != 0; } }; const ::SSL_DetectionFrame& Log_Frame::_Internal::frame(const Log_Frame* msg) { return *msg->frame_; } void Log_Frame::clear_frame() { if (frame_ != nullptr) frame_->Clear(); _has_bits_[0] &= ~0x00000002u; } Log_Frame::Log_Frame(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) { SharedCtor(); if (!is_message_owned) { RegisterArenaDtor(arena); } // @@protoc_insertion_point(arena_constructor:Log_Frame) } Log_Frame::Log_Frame(const Log_Frame& from) : ::PROTOBUF_NAMESPACE_ID::Message(), _has_bits_(from._has_bits_) { _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); refbox_cmd_.UnsafeSetDefault(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING refbox_cmd_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), "", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING if (from._internal_has_refbox_cmd()) { refbox_cmd_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, from._internal_refbox_cmd(), GetArenaForAllocation()); } if (from._internal_has_frame()) { frame_ = new ::SSL_DetectionFrame(*from.frame_); } else { frame_ = nullptr; } // @@protoc_insertion_point(copy_constructor:Log_Frame) } inline void Log_Frame::SharedCtor() { refbox_cmd_.UnsafeSetDefault(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING refbox_cmd_.Set(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), "", GetArenaForAllocation()); #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING frame_ = nullptr; } Log_Frame::~Log_Frame() { // @@protoc_insertion_point(destructor:Log_Frame) if (GetArenaForAllocation() != nullptr) return; SharedDtor(); _internal_metadata_.Delete<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } inline void Log_Frame::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); refbox_cmd_.DestroyNoArena(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited()); if (this != internal_default_instance()) delete frame_; } void Log_Frame::ArenaDtor(void* object) { Log_Frame* _this = reinterpret_cast< Log_Frame* >(object); (void)_this; } void Log_Frame::RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena*) { } void Log_Frame::SetCachedSize(int size) const { _cached_size_.Set(size); } void Log_Frame::Clear() { // @@protoc_insertion_point(message_clear_start:Log_Frame) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; cached_has_bits = _has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { refbox_cmd_.ClearNonDefaultToEmpty(); } if (cached_has_bits & 0x00000002u) { GOOGLE_DCHECK(frame_ != nullptr); frame_->Clear(); } } _has_bits_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } const char* Log_Frame::_InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure _Internal::HasBits has_bits{}; while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::PROTOBUF_NAMESPACE_ID::internal::ReadTag(ptr, &tag); switch (tag >> 3) { // required .SSL_DetectionFrame frame = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast<uint8_t>(tag) == 10)) { ptr = ctx->ParseMessage(_internal_mutable_frame(), ptr); CHK_(ptr); } else goto handle_unusual; continue; // required string refbox_cmd = 2; case 2: if (PROTOBUF_PREDICT_TRUE(static_cast<uint8_t>(tag) == 18)) { auto str = _internal_mutable_refbox_cmd(); ptr = ::PROTOBUF_NAMESPACE_ID::internal::InlineGreedyStringParser(str, ptr, ctx); #ifndef NDEBUG ::PROTOBUF_NAMESPACE_ID::internal::VerifyUTF8(str, "Log_Frame.refbox_cmd"); #endif // !NDEBUG CHK_(ptr); } else goto handle_unusual; continue; default: goto handle_unusual; } // switch handle_unusual: if ((tag == 0) || ((tag & 7) == 4)) { CHK_(ptr); ctx->SetLastTag(tag); goto message_done; } ptr = UnknownFieldParse( tag, _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), ptr, ctx); CHK_(ptr != nullptr); } // while message_done: _has_bits_.Or(has_bits); return ptr; failure: ptr = nullptr; goto message_done; #undef CHK_ } uint8_t* Log_Frame::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { // @@protoc_insertion_point(serialize_to_array_start:Log_Frame) uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = _has_bits_[0]; // required .SSL_DetectionFrame frame = 1; if (cached_has_bits & 0x00000002u) { target = stream->EnsureSpace(target); target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: InternalWriteMessage( 1, _Internal::frame(this), target, stream); } // required string refbox_cmd = 2; if (cached_has_bits & 0x00000001u) { ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::VerifyUTF8StringNamedField( this->_internal_refbox_cmd().data(), static_cast<int>(this->_internal_refbox_cmd().length()), ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::SERIALIZE, "Log_Frame.refbox_cmd"); target = stream->WriteStringMaybeAliased( 2, this->_internal_refbox_cmd(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } // @@protoc_insertion_point(serialize_to_array_end:Log_Frame) return target; } size_t Log_Frame::RequiredFieldsByteSizeFallback() const { // @@protoc_insertion_point(required_fields_byte_size_fallback_start:Log_Frame) size_t total_size = 0; if (_internal_has_refbox_cmd()) { // required string refbox_cmd = 2; total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( this->_internal_refbox_cmd()); } if (_internal_has_frame()) { // required .SSL_DetectionFrame frame = 1; total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize( *frame_); } return total_size; } size_t Log_Frame::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:Log_Frame) size_t total_size = 0; if (((_has_bits_[0] & 0x00000003) ^ 0x00000003) == 0) { // All required fields are present. // required string refbox_cmd = 2; total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::StringSize( this->_internal_refbox_cmd()); // required .SSL_DetectionFrame frame = 1; total_size += 1 + ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize( *frame_); } else { total_size += RequiredFieldsByteSizeFallback(); } uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; return MaybeComputeUnknownFieldsSize(total_size, &_cached_size_); } const ::PROTOBUF_NAMESPACE_ID::Message::ClassData Log_Frame::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSizeCheck, Log_Frame::MergeImpl }; const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*Log_Frame::GetClassData() const { return &_class_data_; } void Log_Frame::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message* to, const ::PROTOBUF_NAMESPACE_ID::Message& from) { static_cast<Log_Frame *>(to)->MergeFrom( static_cast<const Log_Frame &>(from)); } void Log_Frame::MergeFrom(const Log_Frame& from) { // @@protoc_insertion_point(class_specific_merge_from_start:Log_Frame) GOOGLE_DCHECK_NE(&from, this); uint32_t cached_has_bits = 0; (void) cached_has_bits; cached_has_bits = from._has_bits_[0]; if (cached_has_bits & 0x00000003u) { if (cached_has_bits & 0x00000001u) { _internal_set_refbox_cmd(from._internal_refbox_cmd()); } if (cached_has_bits & 0x00000002u) { _internal_mutable_frame()->::SSL_DetectionFrame::MergeFrom(from._internal_frame()); } } _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } void Log_Frame::CopyFrom(const Log_Frame& from) { // @@protoc_insertion_point(class_specific_copy_from_start:Log_Frame) if (&from == this) return; Clear(); MergeFrom(from); } bool Log_Frame::IsInitialized() const { if (_Internal::MissingRequiredFields(_has_bits_)) return false; if (_internal_has_frame()) { if (!frame_->IsInitialized()) return false; } return true; } void Log_Frame::InternalSwap(Log_Frame* other) { using std::swap; auto* lhs_arena = GetArenaForAllocation(); auto* rhs_arena = other->GetArenaForAllocation(); _internal_metadata_.InternalSwap(&other->_internal_metadata_); swap(_has_bits_[0], other->_has_bits_[0]); ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::InternalSwap( &::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), &refbox_cmd_, lhs_arena, &other->refbox_cmd_, rhs_arena ); swap(frame_, other->frame_); } ::PROTOBUF_NAMESPACE_ID::Metadata Log_Frame::GetMetadata() const { return ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors( &descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto_getter, &descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto_once, file_level_metadata_messages_5frobocup_5fssl_5frefbox_5flog_2eproto[0]); } // =================================================================== class Refbox_Log::_Internal { public: }; Refbox_Log::Refbox_Log(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned) : ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned), log_(arena) { SharedCtor(); if (!is_message_owned) { RegisterArenaDtor(arena); } // @@protoc_insertion_point(arena_constructor:Refbox_Log) } Refbox_Log::Refbox_Log(const Refbox_Log& from) : ::PROTOBUF_NAMESPACE_ID::Message(), log_(from.log_) { _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); // @@protoc_insertion_point(copy_constructor:Refbox_Log) } inline void Refbox_Log::SharedCtor() { } Refbox_Log::~Refbox_Log() { // @@protoc_insertion_point(destructor:Refbox_Log) if (GetArenaForAllocation() != nullptr) return; SharedDtor(); _internal_metadata_.Delete<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } inline void Refbox_Log::SharedDtor() { GOOGLE_DCHECK(GetArenaForAllocation() == nullptr); } void Refbox_Log::ArenaDtor(void* object) { Refbox_Log* _this = reinterpret_cast< Refbox_Log* >(object); (void)_this; } void Refbox_Log::RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena*) { } void Refbox_Log::SetCachedSize(int size) const { _cached_size_.Set(size); } void Refbox_Log::Clear() { // @@protoc_insertion_point(message_clear_start:Refbox_Log) uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; log_.Clear(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); } const char* Refbox_Log::_InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) { #define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure while (!ctx->Done(&ptr)) { uint32_t tag; ptr = ::PROTOBUF_NAMESPACE_ID::internal::ReadTag(ptr, &tag); switch (tag >> 3) { // repeated .Log_Frame log = 1; case 1: if (PROTOBUF_PREDICT_TRUE(static_cast<uint8_t>(tag) == 10)) { ptr -= 1; do { ptr += 1; ptr = ctx->ParseMessage(_internal_add_log(), ptr); CHK_(ptr); if (!ctx->DataAvailable(ptr)) break; } while (::PROTOBUF_NAMESPACE_ID::internal::ExpectTag<10>(ptr)); } else goto handle_unusual; continue; default: goto handle_unusual; } // switch handle_unusual: if ((tag == 0) || ((tag & 7) == 4)) { CHK_(ptr); ctx->SetLastTag(tag); goto message_done; } ptr = UnknownFieldParse( tag, _internal_metadata_.mutable_unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(), ptr, ctx); CHK_(ptr != nullptr); } // while message_done: return ptr; failure: ptr = nullptr; goto message_done; #undef CHK_ } uint8_t* Refbox_Log::_InternalSerialize( uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { // @@protoc_insertion_point(serialize_to_array_start:Refbox_Log) uint32_t cached_has_bits = 0; (void) cached_has_bits; // repeated .Log_Frame log = 1; for (unsigned int i = 0, n = static_cast<unsigned int>(this->_internal_log_size()); i < n; i++) { target = stream->EnsureSpace(target); target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite:: InternalWriteMessage(1, this->_internal_log(i), target, stream); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::InternalSerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); } // @@protoc_insertion_point(serialize_to_array_end:Refbox_Log) return target; } size_t Refbox_Log::ByteSizeLong() const { // @@protoc_insertion_point(message_byte_size_start:Refbox_Log) size_t total_size = 0; uint32_t cached_has_bits = 0; // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; // repeated .Log_Frame log = 1; total_size += 1UL * this->_internal_log_size(); for (const auto& msg : this->log_) { total_size += ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::MessageSize(msg); } return MaybeComputeUnknownFieldsSize(total_size, &_cached_size_); } const ::PROTOBUF_NAMESPACE_ID::Message::ClassData Refbox_Log::_class_data_ = { ::PROTOBUF_NAMESPACE_ID::Message::CopyWithSizeCheck, Refbox_Log::MergeImpl }; const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*Refbox_Log::GetClassData() const { return &_class_data_; } void Refbox_Log::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message* to, const ::PROTOBUF_NAMESPACE_ID::Message& from) { static_cast<Refbox_Log *>(to)->MergeFrom( static_cast<const Refbox_Log &>(from)); } void Refbox_Log::MergeFrom(const Refbox_Log& from) { // @@protoc_insertion_point(class_specific_merge_from_start:Refbox_Log) GOOGLE_DCHECK_NE(&from, this); uint32_t cached_has_bits = 0; (void) cached_has_bits; log_.MergeFrom(from.log_); _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); } void Refbox_Log::CopyFrom(const Refbox_Log& from) { // @@protoc_insertion_point(class_specific_copy_from_start:Refbox_Log) if (&from == this) return; Clear(); MergeFrom(from); } bool Refbox_Log::IsInitialized() const { if (!::PROTOBUF_NAMESPACE_ID::internal::AllAreInitialized(log_)) return false; return true; } void Refbox_Log::InternalSwap(Refbox_Log* other) { using std::swap; _internal_metadata_.InternalSwap(&other->_internal_metadata_); log_.InternalSwap(&other->log_); } ::PROTOBUF_NAMESPACE_ID::Metadata Refbox_Log::GetMetadata() const { return ::PROTOBUF_NAMESPACE_ID::internal::AssignDescriptors( &descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto_getter, &descriptor_table_messages_5frobocup_5fssl_5frefbox_5flog_2eproto_once, file_level_metadata_messages_5frobocup_5fssl_5frefbox_5flog_2eproto[1]); } // @@protoc_insertion_point(namespace_scope) PROTOBUF_NAMESPACE_OPEN template<> PROTOBUF_NOINLINE ::Log_Frame* Arena::CreateMaybeMessage< ::Log_Frame >(Arena* arena) { return Arena::CreateMessageInternal< ::Log_Frame >(arena); } template<> PROTOBUF_NOINLINE ::Refbox_Log* Arena::CreateMaybeMessage< ::Refbox_Log >(Arena* arena) { return Arena::CreateMessageInternal< ::Refbox_Log >(arena); } PROTOBUF_NAMESPACE_CLOSE // @@protoc_insertion_point(global_scope) #include <google/protobuf/port_undef.inc>
[ "fdmxfarhan@yahoo.com" ]
fdmxfarhan@yahoo.com
1704b0557b8e7544a1a46774662d89f01449cfee
f7a9fb1faf2bf206d09eb673f577c2bb84111e2e
/Labs/Lab_5/Triangle.cpp
e8235eef3e0ef9b0dc88ff101c4c7066b5b9e713
[]
no_license
Stepheny755/ECE244
88be8c9fef6937c756347e746da15dcb9ada5ddb
9c95f0b71377a0d0c361892189c434f75d9c2302
refs/heads/master
2023-02-18T15:59:42.905491
2021-01-13T22:04:23
2021-01-13T22:04:23
294,945,340
0
0
null
null
null
null
UTF-8
C++
false
false
1,254
cpp
// // Triangle.cpp // Lab5 // // Created by Tarek Abdelrahman on 2020-11-25. // Copyright © 2020 Tarek Abdelrahman. // // Permission is hereby granted to use this code in ECE244 at // the University of Toronto. It is prohibited to distribute // this code, either publicly or to third parties. // ECE244 Student: Write the implementation of the class Rectangle here #include <iostream> #include <string> #include <iomanip> using namespace std; #include "Shape.h" #include "Triangle.h" Triangle::Triangle(string n, float xcent, float ycent, float x1, float y1, float x2, float y2, float x3, float y3):Shape(n,xcent,ycent){ this->x1 = x1; this->x2 = x2; this->x3 = x3; this->y1 = y1; this->y2 = y2; this->y3 = y3; } Triangle::~Triangle(){ } void Triangle::draw() const{ cout << std::fixed; cout << std::setprecision(2); cout << "triangle: " << name << " " << x_centre << " " << y_centre << " " << x1 << " " << y1 << " " << x2 << " " << y2 << " " << x3 << " " << y3 << " " << computeArea() << endl; } float Triangle::computeArea() const{ float val = (x1*(y2-y3)+x2*(y3-y1)+x3*(y1-y2))/2; return (val>=0)?val:-val; } Shape* Triangle::clone() const { return (new Triangle(*this)); }
[ "stepheny755@gmail.com" ]
stepheny755@gmail.com
4e818cb2e2e338210ac5a60fd4c29fa458c79f98
9b963f56e0964a88f2a45b6fe9aa371e1c1c704e
/Dijkstra/1261-알고스팟(Dijkstra).cpp
f2f432f494d9476fe34166dd9aab66a486a254e9
[]
no_license
kewook55/PS-BOJ
0d1880ac849dca3cad516204796d07d15836073a
aced5d3e2b073d4a3ef92607c159efe9936ff940
refs/heads/master
2022-12-15T10:59:41.845978
2020-09-12T05:09:45
2020-09-12T05:09:45
267,512,154
1
0
null
null
null
null
UTF-8
C++
false
false
1,653
cpp
/* 현재시점에서 인접한 방이 1이라면 비용이 1 단방향으로 구성해주어야한다. 틀린이유 1. node개수가 10000이지만 1000으로 잘못입력 틀린이유 2. (i,j)를 1번부터 시작하는 node 번호로 바꾸기 위해서 i*M+j+1이라고 해줘야함. */ #include<iostream> #include<queue> #include<vector> #include<string> using namespace std; struct Info { int node, cost; bool operator < (const Info &ipt)const { return cost > ipt.cost; } }; const int INF = 10000; int N, M, map[101][101], dist[10001]; int dy[] = { 1,-1,0,0 }, dx[] = { 0,0,1,-1 }; vector<Info> adj[10001]; int main(void) { ios::sync_with_stdio(NULL); cin.tie(NULL); cout.tie(NULL); cin >> M >> N; string str; for (int i = 0; i < N; i++) { cin >> str; for (int j = 0; j < M; j++) { map[i][j] = str[j] - '0'; } } for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { for (int k = 0; k < 4; k++) { int ny = i + dy[k], nx = j + dx[k]; if (ny < 0 || nx < 0 || ny >= N || nx >= M)continue; if (map[ny][nx])adj[i*M + j + 1].push_back({ ny*M + nx + 1, 1 }); else adj[i*M + j + 1].push_back({ ny*M + nx + 1, 0 }); } } } for (int i = 2; i <= N * M; i++)dist[i] = INF; priority_queue<Info> pq; pq.push({ 1,0 }); dist[1] = 0; while (!pq.empty()) { int node = pq.top().node, cost = pq.top().cost; pq.pop(); if (dist[node] < cost)continue; for (Info &iter : adj[node]) { int next = iter.node, ncost = iter.cost; if (dist[next] > dist[node] + ncost) { dist[next] = dist[node] + ncost; pq.push({ next, dist[next] }); } } } cout << dist[N*M]; return 0; }
[ "bono4023@gmail.com" ]
bono4023@gmail.com
69ed39313ea7886b755ece4814af184f643879e7
6f49cc2d5112a6b97f82e7828f59b201ea7ec7b9
/wdbecmbd/CrdWdbeUnt/QryWdbeUntList.cpp
994837f17228acc47a9c7f345b7bf35c2de1383e
[ "MIT" ]
permissive
mpsitech/wdbe-WhizniumDBE
d3702800d6e5510e41805d105228d8dd8b251d7a
89ef36b4c86384429f1e707e5fa635f643e81240
refs/heads/master
2022-09-28T10:27:03.683192
2022-09-18T22:04:37
2022-09-18T22:04:37
282,705,449
5
0
null
null
null
null
UTF-8
C++
false
false
14,867
cpp
/** * \file QryWdbeUntList.cpp * job handler for job QryWdbeUntList (implementation) * \copyright (C) 2016-2020 MPSI Technologies GmbH * \author Alexander Wirthmueller (auto-generation) * \date created: 28 Nov 2020 */ // IP header --- ABOVE #ifdef WDBECMBD #include <Wdbecmbd.h> #else #include <Wdbed.h> #endif #include "QryWdbeUntList.h" #include "QryWdbeUntList_blks.cpp" using namespace std; using namespace Sbecore; using namespace Xmlio; // IP ns.cust --- INSERT /****************************************************************************** class QryWdbeUntList ******************************************************************************/ QryWdbeUntList::QryWdbeUntList( XchgWdbe* xchg , DbsWdbe* dbswdbe , const ubigint jrefSup , const uint ixWdbeVLocale ) : JobWdbe(xchg, VecWdbeVJob::QRYWDBEUNTLIST, jrefSup, ixWdbeVLocale) { jref = xchg->addJob(dbswdbe, this, jrefSup); // IP constructor.cust1 --- INSERT xchg->addStmgr(jref, Stub::VecVNonetype::SHORT); ixWdbeVQrystate = VecWdbeVQrystate::OOD; // IP constructor.cust2 --- INSERT rerun(dbswdbe); xchg->addClstn(VecWdbeVCall::CALLWDBEUNTMOD, jref, Clstn::VecVJobmask::ALL, 0, false, Arg(), 0, Clstn::VecVJactype::LOCK); xchg->addClstn(VecWdbeVCall::CALLWDBESTUBCHG, jref, Clstn::VecVJobmask::SELF, 0, false, Arg(), 0, Clstn::VecVJactype::LOCK); // IP constructor.cust3 --- INSERT // IP constructor.spec3 --- INSERT }; QryWdbeUntList::~QryWdbeUntList() { // IP destructor.spec --- INSERT // IP destructor.cust --- INSERT xchg->removeJobByJref(jref); }; // IP cust --- INSERT void QryWdbeUntList::refreshJnum() { ubigint preRefSel = xchg->getRefPreset(VecWdbeVPreset::PREWDBEREFSEL, jref); stgiac.jnum = getJnumByRef(preRefSel); if (preRefSel == 0) xchg->removeClstns(VecWdbeVCall::CALLWDBEUNTUPD_REFEQ, jref); else xchg->addRefClstn(VecWdbeVCall::CALLWDBEUNTUPD_REFEQ, jref, Clstn::VecVJobmask::ALL, 0, true, preRefSel); }; void QryWdbeUntList::rerun( DbsWdbe* dbswdbe , const bool call ) { string sqlstr; vector<ubigint> cnts; uint cnt, cntsum; vector<ubigint> lims; vector<ubigint> ofss; uint preIxPre = xchg->getIxPreset(VecWdbeVPreset::PREWDBEIXPRE, jref); uint preIxOrd = xchg->getIxPreset(VecWdbeVPreset::PREWDBEIXORD, jref); ubigint preRefVer = xchg->getRefPreset(VecWdbeVPreset::PREWDBEREFVER, jref); string preSrf = xchg->getSrefPreset(VecWdbeVPreset::PREWDBEUNTLIST_SRF, jref); string preTit = xchg->getTxtvalPreset(VecWdbeVPreset::PREWDBEUNTLIST_TIT, jref); uint preTyp = xchg->getIxPreset(VecWdbeVPreset::PREWDBEUNTLIST_TYP, jref); uint preRet = xchg->getIxPreset(VecWdbeVPreset::PREWDBEUNTLIST_RET, jref); ubigint preReu = xchg->getRefPreset(VecWdbeVPreset::PREWDBEUNTLIST_REU, jref); ubigint preSys = xchg->getRefPreset(VecWdbeVPreset::PREWDBEUNTLIST_SYS, jref); ubigint preMdl = xchg->getRefPreset(VecWdbeVPreset::PREWDBEUNTLIST_MDL, jref); dbswdbe->tblwdbeqselect->removeRstByJref(jref); dbswdbe->tblwdbequntlist->removeRstByJref(jref); cntsum = 0; if (preIxPre == VecWdbeVPreset::PREWDBEREFVER) { sqlstr = "SELECT COUNT(TblWdbeMUnit.ref)"; sqlstr += " FROM TblWdbeMUnit"; sqlstr += " WHERE TblWdbeMUnit.refIxVTbl = " + to_string(VecWdbeVMUnitRefTbl::VER); sqlstr += " AND TblWdbeMUnit.refUref = " + to_string(preRefVer) + ""; rerun_filtSQL(sqlstr, preSrf, preTit, preTyp, preRet, preReu, preSys, preMdl, false); dbswdbe->loadUintBySQL(sqlstr, cnt); cnts.push_back(cnt); lims.push_back(0); ofss.push_back(0); cntsum += cnt; } else { sqlstr = "SELECT COUNT(TblWdbeMUnit.ref)"; sqlstr += " FROM TblWdbeMUnit"; rerun_filtSQL(sqlstr, preSrf, preTit, preTyp, preRet, preReu, preSys, preMdl, true); dbswdbe->loadUintBySQL(sqlstr, cnt); cnts.push_back(cnt); lims.push_back(0); ofss.push_back(0); cntsum += cnt; }; statshr.ntot = 0; statshr.nload = 0; if (stgiac.jnumFirstload > cntsum) { if (cntsum >= stgiac.nload) stgiac.jnumFirstload = cntsum-stgiac.nload+1; else stgiac.jnumFirstload = 1; }; for (unsigned int i = 0; i < cnts.size(); i++) { if (statshr.nload < stgiac.nload) { if ((statshr.ntot+cnts[i]) >= stgiac.jnumFirstload) { if (statshr.ntot >= stgiac.jnumFirstload) { ofss[i] = 0; } else { ofss[i] = stgiac.jnumFirstload-statshr.ntot-1; }; if ((statshr.nload+cnts[i]-ofss[i]) > stgiac.nload) lims[i] = stgiac.nload-statshr.nload; else lims[i] = cnts[i]-ofss[i]; }; }; statshr.ntot += cnts[i]; statshr.nload += lims[i]; }; if (preIxPre == VecWdbeVPreset::PREWDBEREFVER) { rerun_baseSQL(sqlstr); sqlstr += " FROM TblWdbeMUnit"; sqlstr += " WHERE TblWdbeMUnit.refIxVTbl = " + to_string(VecWdbeVMUnitRefTbl::VER); sqlstr += " AND TblWdbeMUnit.refUref = " + to_string(preRefVer) + ""; rerun_filtSQL(sqlstr, preSrf, preTit, preTyp, preRet, preReu, preSys, preMdl, false); rerun_orderSQL(sqlstr, preIxOrd); sqlstr += " LIMIT " + to_string(lims[0]) + " OFFSET " + to_string(ofss[0]); dbswdbe->executeQuery(sqlstr); } else { rerun_baseSQL(sqlstr); sqlstr += " FROM TblWdbeMUnit"; rerun_filtSQL(sqlstr, preSrf, preTit, preTyp, preRet, preReu, preSys, preMdl, true); rerun_orderSQL(sqlstr, preIxOrd); sqlstr += " LIMIT " + to_string(lims[0]) + " OFFSET " + to_string(ofss[0]); dbswdbe->executeQuery(sqlstr); }; sqlstr = "UPDATE TblWdbeQUntList SET jnum = qref WHERE jref = " + to_string(jref); dbswdbe->executeQuery(sqlstr); ixWdbeVQrystate = VecWdbeVQrystate::UTD; statshr.jnumFirstload = stgiac.jnumFirstload; fetch(dbswdbe); if (call) xchg->triggerCall(dbswdbe, VecWdbeVCall::CALLWDBESTATCHG, jref); }; void QryWdbeUntList::rerun_baseSQL( string& sqlstr ) { sqlstr = "INSERT INTO TblWdbeQUntList(jref, jnum, ref, sref, Title, Fullsref, ixVBasetype, refIxVTbl, refUref, refWdbeMSystem, refWdbeMModule, srefKPackage, Easy, srefKToolch)"; sqlstr += " SELECT " + to_string(jref) + ", 0, TblWdbeMUnit.ref, TblWdbeMUnit.sref, TblWdbeMUnit.Title, TblWdbeMUnit.Fullsref, TblWdbeMUnit.ixVBasetype, TblWdbeMUnit.refIxVTbl, TblWdbeMUnit.refUref, TblWdbeMUnit.refWdbeMSystem, TblWdbeMUnit.refWdbeMModule, TblWdbeMUnit.srefKPackage, TblWdbeMUnit.Easy, TblWdbeMUnit.srefKToolch"; }; void QryWdbeUntList::rerun_filtSQL( string& sqlstr , const string& preSrf , const string& preTit , const uint preTyp , const uint preRet , const ubigint preReu , const ubigint preSys , const ubigint preMdl , const bool addwhere ) { bool first = addwhere; if (preSrf.length() > 0) { rerun_filtSQL_append(sqlstr, first); sqlstr += "TblWdbeMUnit.sref = '" + preSrf + "'"; }; if (preTit.length() > 0) { rerun_filtSQL_append(sqlstr, first); sqlstr += "TblWdbeMUnit.Title LIKE '" + preTit + "'"; }; if (preTyp != 0) { rerun_filtSQL_append(sqlstr, first); sqlstr += "TblWdbeMUnit.ixVBasetype = " + to_string(preTyp) + ""; }; if (preRet != 0) { rerun_filtSQL_append(sqlstr, first); sqlstr += "TblWdbeMUnit.refIxVTbl = " + to_string(preRet) + ""; }; if (preReu != 0) { rerun_filtSQL_append(sqlstr, first); sqlstr += "TblWdbeMUnit.refUref = " + to_string(preReu) + ""; }; if (preSys != 0) { rerun_filtSQL_append(sqlstr, first); sqlstr += "TblWdbeMUnit.refWdbeMSystem = " + to_string(preSys) + ""; }; if (preMdl != 0) { rerun_filtSQL_append(sqlstr, first); sqlstr += "TblWdbeMUnit.refWdbeMModule = " + to_string(preMdl) + ""; }; }; void QryWdbeUntList::rerun_filtSQL_append( string& sqlstr , bool& first ) { if (first) { sqlstr += " WHERE "; first = false; } else sqlstr += " AND "; }; void QryWdbeUntList::rerun_orderSQL( string& sqlstr , const uint preIxOrd ) { if (preIxOrd == VecVOrd::MDL) sqlstr += " ORDER BY TblWdbeMUnit.refWdbeMModule ASC"; else if (preIxOrd == VecVOrd::RET) sqlstr += " ORDER BY TblWdbeMUnit.refIxVTbl ASC"; else if (preIxOrd == VecVOrd::SYS) sqlstr += " ORDER BY TblWdbeMUnit.refWdbeMSystem ASC"; else if (preIxOrd == VecVOrd::REU) sqlstr += " ORDER BY TblWdbeMUnit.refUref ASC"; else if (preIxOrd == VecVOrd::SRF) sqlstr += " ORDER BY TblWdbeMUnit.sref ASC"; else if (preIxOrd == VecVOrd::TIT) sqlstr += " ORDER BY TblWdbeMUnit.Title ASC"; else if (preIxOrd == VecVOrd::TYP) sqlstr += " ORDER BY TblWdbeMUnit.ixVBasetype ASC"; }; void QryWdbeUntList::fetch( DbsWdbe* dbswdbe ) { string sqlstr; StmgrWdbe* stmgr = NULL; Stcch* stcch = NULL; WdbeQUntList* rec = NULL; dbswdbe->tblwdbequntlist->loadRstByJref(jref, false, rst); statshr.nload = rst.nodes.size(); stmgr = xchg->getStmgrByJref(jref); if (stmgr) { stmgr->begin(); stcch = stmgr->stcch; stcch->clear(); for (unsigned int i = 0; i < rst.nodes.size(); i++) { rec = rst.nodes[i]; rec->jnum = statshr.jnumFirstload + i; rec->srefIxVBasetype = VecWdbeVMUnitBasetype::getSref(rec->ixVBasetype); rec->titIxVBasetype = VecWdbeVMUnitBasetype::getTitle(rec->ixVBasetype, ixWdbeVLocale); rec->srefRefIxVTbl = VecWdbeVMUnitRefTbl::getSref(rec->refIxVTbl); rec->titRefIxVTbl = VecWdbeVMUnitRefTbl::getTitle(rec->refIxVTbl, ixWdbeVLocale); if (rec->refIxVTbl == VecWdbeVMUnitRefTbl::FAM) { rec->stubRefUref = StubWdbe::getStubFamStd(dbswdbe, rec->refUref, ixWdbeVLocale, Stub::VecVNonetype::SHORT, stcch); } else if (rec->refIxVTbl == VecWdbeVMUnitRefTbl::VER) { rec->stubRefUref = StubWdbe::getStubVerStd(dbswdbe, rec->refUref, ixWdbeVLocale, Stub::VecVNonetype::SHORT, stcch); } else rec->stubRefUref = "-"; rec->stubRefWdbeMSystem = StubWdbe::getStubSysStd(dbswdbe, rec->refWdbeMSystem, ixWdbeVLocale, Stub::VecVNonetype::SHORT, stcch); rec->stubRefWdbeMModule = StubWdbe::getStubMdlSref(dbswdbe, rec->refWdbeMModule, ixWdbeVLocale, Stub::VecVNonetype::SHORT, stcch); rec->titSrefKPackage = dbswdbe->getKlstTitleBySref(VecWdbeVKeylist::KLSTWDBEKMUNITPACKAGE, rec->srefKPackage, ixWdbeVLocale); if (rec->Easy) rec->yesnoEasy = VecWdbeVTag::getTitle(VecWdbeVTag::YES, ixWdbeVLocale); else rec->yesnoEasy = VecWdbeVTag::getTitle(VecWdbeVTag::NO, ixWdbeVLocale); rec->titSrefKToolch = dbswdbe->getKlstTitleBySref(VecWdbeVKeylist::KLSTWDBEKMUNITTOOLCH, rec->srefKToolch, ixWdbeVLocale); }; stmgr->commit(); stmgr->unlockAccess("QryWdbeUntList", "fetch"); }; refreshJnum(); }; uint QryWdbeUntList::getJnumByRef( const ubigint ref ) { uint retval = 0; WdbeQUntList* rec = NULL; for (unsigned int i = 0; i < rst.nodes.size(); i++) { rec = rst.nodes[i]; if (rec->ref == ref) { retval = rec->jnum; break; }; }; return retval; }; ubigint QryWdbeUntList::getRefByJnum( const uint jnum ) { uint ref = 0; WdbeQUntList* rec = getRecByJnum(jnum); if (rec) ref = rec->ref; return ref; }; WdbeQUntList* QryWdbeUntList::getRecByJnum( const uint jnum ) { WdbeQUntList* rec = NULL; for (unsigned int i = 0; i < rst.nodes.size(); i++) { rec = rst.nodes[i]; if (rec->jnum == jnum) break; }; if (rec) if (rec->jnum != jnum) rec = NULL; return rec; }; void QryWdbeUntList::handleRequest( DbsWdbe* dbswdbe , ReqWdbe* req ) { if (req->ixVBasetype == ReqWdbe::VecVBasetype::CMD) { reqCmd = req; if (req->cmd == "cmdset") { cout << "\trerun" << endl; cout << "\tshow" << endl; } else if (req->cmd == "rerun") { req->retain = handleRerun(dbswdbe); } else if (req->cmd == "show") { req->retain = handleShow(dbswdbe); } else { cout << "\tinvalid command!" << endl; }; if (!req->retain) reqCmd = NULL; }; }; bool QryWdbeUntList::handleRerun( DbsWdbe* dbswdbe ) { bool retval = false; string input; cout << "\tjnumFirstload (" << stgiac.jnumFirstload << "): "; cin >> input; stgiac.jnumFirstload = atol(input.c_str()); cout << "\tnload (" << stgiac.nload << "): "; cin >> input; stgiac.nload = atol(input.c_str()); rerun(dbswdbe); return retval; }; bool QryWdbeUntList::handleShow( DbsWdbe* dbswdbe ) { bool retval = false; WdbeQUntList* rec = NULL; // header row cout << "\tqref"; cout << "\tjref"; cout << "\tjnum"; cout << "\tref"; cout << "\tsref"; cout << "\tTitle"; cout << "\tFullsref"; cout << "\tixVBasetype"; cout << "\tsrefIxVBasetype"; cout << "\ttitIxVBasetype"; cout << "\trefIxVTbl"; cout << "\tsrefRefIxVTbl"; cout << "\ttitRefIxVTbl"; cout << "\trefUref"; cout << "\tstubRefUref"; cout << "\trefWdbeMSystem"; cout << "\tstubRefWdbeMSystem"; cout << "\trefWdbeMModule"; cout << "\tstubRefWdbeMModule"; cout << "\tsrefKPackage"; cout << "\ttitSrefKPackage"; cout << "\tEasy"; cout << "\tyesnoEasy"; cout << "\tsrefKToolch"; cout << "\ttitSrefKToolch"; cout << endl; // record rows for (unsigned int i = 0; i < rst.nodes.size(); i++) { rec = rst.nodes[i]; cout << "\t" << rec->qref; cout << "\t" << rec->jref; cout << "\t" << rec->jnum; cout << "\t" << rec->ref; cout << "\t" << rec->sref; cout << "\t" << rec->Title; cout << "\t" << rec->Fullsref; cout << "\t" << rec->ixVBasetype; cout << "\t" << rec->srefIxVBasetype; cout << "\t" << rec->titIxVBasetype; cout << "\t" << rec->refIxVTbl; cout << "\t" << rec->srefRefIxVTbl; cout << "\t" << rec->titRefIxVTbl; cout << "\t" << rec->refUref; cout << "\t" << rec->stubRefUref; cout << "\t" << rec->refWdbeMSystem; cout << "\t" << rec->stubRefWdbeMSystem; cout << "\t" << rec->refWdbeMModule; cout << "\t" << rec->stubRefWdbeMModule; cout << "\t" << rec->srefKPackage; cout << "\t" << rec->titSrefKPackage; cout << "\t" << rec->Easy; cout << "\t" << rec->yesnoEasy; cout << "\t" << rec->srefKToolch; cout << "\t" << rec->titSrefKToolch; cout << endl; }; return retval; }; void QryWdbeUntList::handleCall( DbsWdbe* dbswdbe , Call* call ) { if (call->ixVCall == VecWdbeVCall::CALLWDBEUNTUPD_REFEQ) { call->abort = handleCallWdbeUntUpd_refEq(dbswdbe, call->jref); } else if (call->ixVCall == VecWdbeVCall::CALLWDBEUNTMOD) { call->abort = handleCallWdbeUntMod(dbswdbe, call->jref); } else if ((call->ixVCall == VecWdbeVCall::CALLWDBESTUBCHG) && (call->jref == jref)) { call->abort = handleCallWdbeStubChgFromSelf(dbswdbe); }; }; bool QryWdbeUntList::handleCallWdbeUntUpd_refEq( DbsWdbe* dbswdbe , const ubigint jrefTrig ) { bool retval = false; if (ixWdbeVQrystate != VecWdbeVQrystate::OOD) { ixWdbeVQrystate = VecWdbeVQrystate::OOD; xchg->triggerCall(dbswdbe, VecWdbeVCall::CALLWDBESTATCHG, jref); }; return retval; }; bool QryWdbeUntList::handleCallWdbeUntMod( DbsWdbe* dbswdbe , const ubigint jrefTrig ) { bool retval = false; if ((ixWdbeVQrystate == VecWdbeVQrystate::UTD) || (ixWdbeVQrystate == VecWdbeVQrystate::SLM)) { ixWdbeVQrystate = VecWdbeVQrystate::MNR; xchg->triggerCall(dbswdbe, VecWdbeVCall::CALLWDBESTATCHG, jref); }; return retval; }; bool QryWdbeUntList::handleCallWdbeStubChgFromSelf( DbsWdbe* dbswdbe ) { bool retval = false; // IP handleCallWdbeStubChgFromSelf --- INSERT return retval; };
[ "aw@mpsitech.com" ]
aw@mpsitech.com
36dbbbf65a849ecfc60a867306d0d3153f1822ac
d5c834839c6c6ed6974d8fc76efec892ad63c5b8
/Build_MS/Il2CppOutputProject/Source/il2cppOutput/mscorlib16.cpp
ade384eeee06c66a702583a31f113d73a0949f96
[]
no_license
datowlcs/RetroCade
dbe5cfd368c15cd4b28d611901bdba3b78c0a14d
7708f289b8990429ff1791c70f3cedaed71f0933
refs/heads/master
2022-12-25T11:50:32.613343
2020-10-05T15:22:13
2020-10-05T15:22:13
299,617,952
0
0
null
2020-10-04T14:18:43
2020-09-29T12:58:23
C++
UTF-8
C++
false
false
1,991,797
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "codegen/il2cpp-codegen.h" #include "icalls/mscorlib/System.Threading/Thread.h" #include "mono/ThreadPool/threadpool-ms.h" #include "icalls/mscorlib/System.Threading/Timer.h" #include "icalls/mscorlib/System.Threading/WaitHandle.h" #include "icalls/mscorlib/System/Type.h" #include "il2cpp-object-internals.h" template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6> struct VirtFuncInvoker6 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, invokeData.method); } }; template <typename T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2> struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; struct VirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct VirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5> struct VirtFuncInvoker5 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3> struct VirtFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; struct GenericVirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1> struct GenericVirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct GenericVirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, 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); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1> struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1, typename T2> struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; struct GenericInterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1> struct GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct GenericInterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; // Microsoft.Win32.IRegistryApi struct IRegistryApi_tD6EA3EAD2B604666CD1DDB76B16F6B440F2D84E3; // Microsoft.Win32.RegistryKey struct RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574; // Microsoft.Win32.SafeHandles.SafeFileHandle struct SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB; // Microsoft.Win32.SafeHandles.SafeRegistryHandle struct SafeRegistryHandle_t804966262ED9CC53B8783D431090F6F96BD041B1; // Microsoft.Win32.SafeHandles.SafeWaitHandle struct SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2; // System.Action struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579; // System.Action`1<System.Object> struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0; // System.AggregateException struct AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E; // System.AppDomain struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8; // System.ApplicationException struct ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA; // System.AssemblyLoadEventHandler struct AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4; // System.Boolean[] struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.String>[] struct EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1; // System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.TimeType>[] struct EntryU5BU5D_tE10945BABF6C8713BFFE8B1BE29C42BFEBCC0A23; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.String> struct KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F; // System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.TimeType> struct KeyCollection_tB25B793043188B05B5EDA66FE436CA860742E601; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.String> struct ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F; // System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.TimeType> struct ValueCollection_t8FDF62D6CA4259E5733AB7ABFC11F082D955414B; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B; // System.Collections.Generic.Dictionary`2<System.Int32,System.Object> struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884; // System.Collections.Generic.Dictionary`2<System.Int32,System.String> struct Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C; // System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> struct Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F; // System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType> struct Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB; // System.Collections.Generic.Dictionary`2<System.String,System.Object> struct Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA; // System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object> struct Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A; // System.Collections.Generic.IEnumerable`1<System.Object> struct IEnumerable_1_t2F75FCBEC68AFE08982DA43985F9D04056E2BE73; // System.Collections.Generic.IEnumerable`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> struct IEnumerable_1_t37B4D1EEBA6E5098A0F018A779067097451BAD2C; // System.Collections.Generic.IEnumerable`1<System.TimeZoneInfo/AdjustmentRule> struct IEnumerable_1_t08BBCB0F5490C907D82E2E1A3DF11B60E03A7126; // System.Collections.Generic.IEnumerable`1<System.TimeZoneInfo> struct IEnumerable_1_t719DA0EAA92968410FA620518660D4C63B652A4E; // System.Collections.Generic.IEnumerator`1<System.Exception> struct IEnumerator_1_t2281FCF251CD51C1F13587450034F0E08EBFAD0E; // System.Collections.Generic.IEnumerator`1<System.Object> struct IEnumerator_1_tDDB69E91697CCB64C7993B651487CEEC287DB7E8; // System.Collections.Generic.IEnumerator`1<System.TimeZoneInfo> struct IEnumerator_1_t06E561A91115B283FAF267723103A4A703276008; // System.Collections.Generic.IEqualityComparer`1<System.Int32> struct IEqualityComparer_1_t7B82AA0F8B96BAAA21E36DDF7A1FE4348BDDBE95; // System.Collections.Generic.IList`1<System.Exception> struct IList_1_t79A79A556E69BA20A09771D2D61B0440B6F4EFBA; // System.Collections.Generic.IList`1<System.Object> struct IList_1_tE09735A322C3B17000EF4E4BC8026FEDEB7B0D9B; // System.Collections.Generic.IList`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> struct IList_1_t1D32293C65F49E1B7D7E3344057FED3589CD8F1F; // System.Collections.Generic.IList`1<System.Threading.Tasks.Task> struct IList_1_t93C6282CDBF781012E10B912A9AD946F53099551; // System.Collections.Generic.IList`1<System.TimeZoneInfo> struct IList_1_tA7DBDA6C0478B95C8DC7343A9E90D677B7919F14; // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[] struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F; // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>[] struct KeyValuePair_2U5BU5D_tAA010A71A6AC97DFA9B2E84B954765E51A27236C; // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1; // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>> struct List_1_tD2FC74CFEE011F74F31183756A690154468817E9; // System.Collections.Generic.List`1<System.Object> struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D; // System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> struct List_1_tCD04260AE1254C438132446F1E6892AB86D18743; // System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty> struct List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D; // System.Collections.Generic.List`1<System.String> struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3; // System.Collections.Generic.List`1<System.Threading.IAsyncLocal> struct List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB; // System.Collections.Generic.List`1<System.Threading.Tasks.Task> struct List_1_tC62C1E1B0AD84992F0A374A5A4679609955E117E; // System.Collections.Generic.List`1<System.Threading.Timer> struct List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116; // System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule> struct List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E; // System.Collections.Generic.List`1<System.TimeZoneInfo> struct List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD; // System.Collections.Hashtable struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9; // System.Collections.IComparer struct IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95; // System.Collections.IDictionary struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> struct ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object> struct ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> struct ReadOnlyCollection_1_t5DE493537EE0E554797BF0DA823DCBF1903CECC1; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo> struct ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0; // System.Collections.SortedList struct SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E; // System.Comparison`1<System.Object> struct Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4; // System.Comparison`1<System.TimeZoneInfo/AdjustmentRule> struct Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6; // System.DefaultBinder struct DefaultBinder_tFFCBC1B63C1667920094F68AB261486C13814AEC; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; // System.EventArgs struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E; // System.EventHandler struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C; // System.EventHandler`1<System.Object> struct EventHandler_1_t10245A26B14DDE8DDFD5B263BDE0641F17DCFDC3; // System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs> struct EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF; // System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs> struct EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC; // System.Exception struct Exception_t; // System.Exception[] struct ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209; // System.Func`1<System.Threading.Tasks.Task/ContingentProperties> struct Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F; // System.Func`2<System.Reflection.AssemblyName,System.Reflection.Assembly> struct Func_2_t13827C9725E0D12567E029E178981FB7D0E13430; // System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>> struct Func_2_t9183BE7C6FB5EAED091785FC3E1D3D41DB3497F7; // 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`4<System.Reflection.Assembly,System.String,System.Boolean,System.Type> struct Func_4_t3D7857A2A0F731D1E992FC5B09E983A8621FABFF; // System.Globalization.Calendar struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5; // System.Globalization.CodePageDataItem struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB; // System.Globalization.CompareInfo struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1; // System.Globalization.CultureData struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD; // System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8; // System.Globalization.TextInfo struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8; // System.IAsyncResult struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598; // System.IFormatProvider struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901; // System.IO.FileStream struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418; // System.IO.Stream struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.Int64[] struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1; // System.InvalidTimeZoneException struct InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25; // System.LocalDataStoreHolder struct LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304; // System.LocalDataStoreMgr struct LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9; // System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF; // System.MonoTypeInfo struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D; // System.MulticastDelegate struct MulticastDelegate_t; // System.NotImplementedException struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010; // System.ObjectDisposedException struct ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; // System.OperatingSystem struct OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83; // System.OperationCanceledException struct OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90; // System.OverflowException struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D; // System.Predicate`1<System.Object> struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979; // System.Predicate`1<System.Threading.Tasks.Task> struct Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335; // System.Random struct Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F; // System.Reflection.Assembly struct Assembly_t; // System.Reflection.AssemblyName struct AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759; // System.Reflection.ConstructorInfo struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF; // System.Reflection.FieldInfo struct FieldInfo_t; // System.Reflection.MemberFilter struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MemberInfo[] struct MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6; // System.Reflection.MethodBase struct MethodBase_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.MethodInfo[] struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA; // System.Reflection.PropertyInfo struct PropertyInfo_t; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E; // System.Reflection.RuntimeConstructorInfo struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D; // System.Reflection.TypeFilter struct TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18; // System.ResolveEventHandler struct ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object> struct ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object> struct ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; // System.Runtime.ConstrainedExecution.CriticalFinalizerObject struct CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A; // System.Runtime.ExceptionServices.ExceptionDispatchInfo[] struct ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF; // System.Runtime.InteropServices.SafeHandle struct SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383; // System.Runtime.Remoting.Contexts.Context struct Context_tE86AB6B3D9759C8E715184808579EFE761683724; // System.Runtime.Remoting.Contexts.ContextCallbackObject struct ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0; // System.Runtime.Remoting.Contexts.DynamicPropertyCollection struct DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C; // System.Runtime.Remoting.Messaging.IMessageSink struct IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C; // System.Runtime.Remoting.Messaging.IllogicalCallContext struct IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179; // System.Runtime.Remoting.Messaging.LogicalCallContext struct LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770; // System.Runtime.Serialization.SerializationException struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26; // System.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F; // System.Security.Principal.IPrincipal struct IPrincipal_t63FD7F58FBBE134C8FE4D31710AAEA00B000F0BF; // System.String struct String_t; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782; // System.Text.DecoderFallback struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60; // System.Text.EncoderFallback struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63; // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4; // System.Text.StringBuilder struct StringBuilder_t; // System.Threading.AbandonedMutexException struct AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9; // System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> struct AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A; // System.Threading.CancellationCallbackInfo struct CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36; // System.Threading.CancellationTokenSource struct CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE; // System.Threading.ContextCallback struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676; // System.Threading.EventWaitHandle struct EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98; // System.Threading.ExecutionContext struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70; // System.Threading.IThreadPoolWorkItem struct IThreadPoolWorkItem_t2EF44881BFB1A9C021606D5B0C03B31B62B6C38D; // System.Threading.IThreadPoolWorkItem[] struct IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154; // System.Threading.InternalThread struct InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192; // System.Threading.ManualResetEvent struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408; // System.Threading.ManualResetEventSlim struct ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445; // System.Threading.Mutex struct Mutex_tEFA4BCB29AF9E8B7BD6F0973C6AFFA072744AB5C; // System.Threading.ParameterizedThreadStart struct ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F; // System.Threading.QueueUserWorkItemCallback struct QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8; // System.Threading.RegisteredWaitHandle struct RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048; // System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo> struct SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7; // System.Threading.SynchronizationContext struct SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7; // System.Threading.Tasks.AwaitTaskContinuation struct AwaitTaskContinuation_t883E8FB9C34A1024B54F2D4A9CCBA21CC595286F; // System.Threading.Tasks.ITaskCompletionAction struct ITaskCompletionAction_tB83E2DB0F3297A73CDBE338B6F2CA81D84E9C978; // System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration> struct Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2; // System.Threading.Tasks.StackGuard struct StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9; // System.Threading.Tasks.Task struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2; // System.Threading.Tasks.Task/<>c struct U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3; // System.Threading.Tasks.Task/<>c__DisplayClass178_0 struct U3CU3Ec__DisplayClass178_0_tDB7F53582BFA1879573CC515D119580A06752F7E; // System.Threading.Tasks.Task/ContingentProperties struct ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08; // System.Threading.Tasks.Task/DelayPromise struct DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2; // System.Threading.Tasks.Task/SetOnInvokeMres struct SetOnInvokeMres_tBDCEA7BE3061614FC83A82D8E6FBD5903C3FD2A9; // System.Threading.Tasks.TaskCanceledException struct TaskCanceledException_tB1E5209054F302F814E18BBCACDF6546BAF2EC48; // System.Threading.Tasks.TaskContinuation struct TaskContinuation_t870BBF430CE7A3B6DF15EE1ED7940F1ABA9EEEE9; // System.Threading.Tasks.TaskExceptionHolder struct TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811; // System.Threading.Tasks.TaskFactory struct TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155; // System.Threading.Tasks.TaskFactory/CompleteOnInvokePromise struct CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86; // System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.Task> struct TaskFactory_1_t58FE324C5DC18B5ED9A0E49CA8543DEEA65B4462; // System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult> struct TaskFactory_1_t3C0D0DC20C0FC00DE4F8740B351BE642467AB03D; // System.Threading.Tasks.TaskScheduler struct TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114; // System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation struct TaskSchedulerAwaitTaskContinuation_t08B24138EF6D3AC7A821332F15F5A5A0F08543B6; // System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation/<>c struct U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439; // System.Threading.Tasks.TaskSchedulerException struct TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24; // System.Threading.Tasks.Task`1<System.Object> struct Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09; // System.Threading.Tasks.Task`1<System.Threading.Tasks.Task> struct Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138; // System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult> struct Task_1_t1359D75350E9D976BFA28AD96E417450DE277673; // System.Threading.Tasks.ThreadPoolTaskScheduler struct ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD; // System.Threading.Tasks.UnobservedTaskExceptionEventArgs struct UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7; // System.Threading.Thread struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7; // System.Threading.ThreadAbortException struct ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468; // System.Threading.ThreadHelper struct ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13; // System.Threading.ThreadInterruptedException struct ThreadInterruptedException_t40D8296AA9D9E8B74E29BFAE1089CFACC5F03751; // System.Threading.ThreadPoolWorkQueue struct ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011; // System.Threading.ThreadPoolWorkQueue/QueueSegment struct QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE; // System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object> struct SparseArray_1_t3343BC28ED7AB6481D2C9C24AC382CCEFD5148F1; // System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue> struct SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB; // System.Threading.ThreadPoolWorkQueue/WorkStealingQueue struct WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB; // System.Threading.ThreadPoolWorkQueue/WorkStealingQueue[] struct WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9; // System.Threading.ThreadPoolWorkQueueThreadLocals struct ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B; // System.Threading.ThreadStart struct ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF; // System.Threading.ThreadStateException struct ThreadStateException_tCE60AB1B9E16A6D13E3926137BA55832ABE986AE; // System.Threading.Timer struct Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553; // System.Threading.Timer/Scheduler struct Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9; // System.Threading.Timer/TimerComparer struct TimerComparer_tC987818CFADF2F3ECEB89C0BD510600DAD816015; // System.Threading.TimerCallback struct TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219; // System.Threading.Timer[] struct TimerU5BU5D_tD0E2F3FBF7687B24301E6EAC84AEC44386CB5F7A; // System.Threading.WaitCallback struct WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC; // System.Threading.WaitHandle struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6; // System.Threading.WaitHandleCannotBeOpenedException struct WaitHandleCannotBeOpenedException_t869CD999EE7B918C5546E2007AF7C4557281B65B; // System.Threading.WaitHandle[] struct WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC; // System.Threading.WaitOrTimerCallback struct WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF; // System.TimeType struct TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9; // System.TimeZone struct TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454; // System.TimeZoneInfo struct TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777; // System.TimeZoneInfo/<>c struct U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7; // System.TimeZoneInfo/AdjustmentRule struct AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204; // System.TimeZoneInfo/AdjustmentRule[] struct AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD; // System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION struct DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F; // System.TimeZoneInfo/TIME_ZONE_INFORMATION struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811; // System.TimeZoneInfo[] struct TimeZoneInfoU5BU5D_t3651149D75C21234FEBE23046A2E2FF4AB531D94; // System.TimeZoneNotFoundException struct TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388; // System.TimeoutException struct TimeoutException_t15A6E9A2A5819966712B5CFAF756BAEA40E3B1B7; // System.Type struct Type_t; // System.TypeLoadException struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; // System.UInt64[] struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4; // System.UnhandledExceptionEventHandler struct UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE; // System.Version struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; IL2CPP_EXTERN_C RuntimeClass* AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DayOfWeek_tE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debugger_t3DB04278A3AA5DF846CC56744D05F18B7037C22E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DefaultBinder_tFFCBC1B63C1667920094F68AB261486C13814AEC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EmptyArray_1_tF085172BB5E018A03FB07E8EEAFCD3D8F7EB784D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t39808D274D411213DCFE09BAE8F3041B974A1A4E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t37B4D1EEBA6E5098A0F018A779067097451BAD2C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t6B3D33CE5B4DC884E5267C7B8CBC12380D09B3F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t06E561A91115B283FAF267723103A4A703276008_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t2281FCF251CD51C1F13587450034F0E08EBFAD0E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_1_t93C6282CDBF781012E10B912A9AD946F53099551_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IThreadPoolWorkItem_t2EF44881BFB1A9C021606D5B0C03B31B62B6C38D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tCD04260AE1254C438132446F1E6892AB86D18743_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tD2FC74CFEE011F74F31183756A690154468817E9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ReadOnlyCollection_1_t5DE493537EE0E554797BF0DA823DCBF1903CECC1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Registry_t241E9489A52A385888DBC941B714B48401DBB28E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Task_1_t1359D75350E9D976BFA28AD96E417450DE277673_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ThreadStateException_tCE60AB1B9E16A6D13E3926137BA55832ABE986AE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeSpanFormat_t90CBC39FE99AC515E1F68FE55DBA3D8515F19B51_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Timeout_t148C37C092EAF5AFCE1D0C06481466A5F88E4C04_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimerComparer_tC987818CFADF2F3ECEB89C0BD510600DAD816015_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral00E0E5FB4D410F50F71DEFD00084F261F9921ED2; IL2CPP_EXTERN_C String_t* _stringLiteral00F33FC530D3E011EE6AB56F206622E221888971; IL2CPP_EXTERN_C String_t* _stringLiteral021710FA7866431C1DACAA6CD31EEEB47DCE64B6; IL2CPP_EXTERN_C String_t* _stringLiteral02DD17A342AB600AEB759AEBC9C5D0DBAAFD8FDE; IL2CPP_EXTERN_C String_t* _stringLiteral0446EADE62BBE35D165AAAD965949803B6521089; IL2CPP_EXTERN_C String_t* _stringLiteral04C41D8EF73FED844DA0ECFAA6DFF090063F2B1D; IL2CPP_EXTERN_C String_t* _stringLiteral061A02C15C4ADACD1235EC1D4913C179A22A3751; IL2CPP_EXTERN_C String_t* _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A; IL2CPP_EXTERN_C String_t* _stringLiteral080C19955B2E8EB7F96E8B1CC1CC77410D38399F; IL2CPP_EXTERN_C String_t* _stringLiteral082BC378CD60E17A38D99898B21955299C5B60C8; IL2CPP_EXTERN_C String_t* _stringLiteral0A214C87301D8B6D0B0BAF1ECF486BCA2DA0AE5B; IL2CPP_EXTERN_C String_t* _stringLiteral0A5D3E6700373C9EF26EC5782D72D97AE5D7CF3C; IL2CPP_EXTERN_C String_t* _stringLiteral0AF70E9C0D57B35CCD56C4069FC8D171CB59AF5E; IL2CPP_EXTERN_C String_t* _stringLiteral0BE186D40CC51422D8F602B64FE0068673C79138; IL2CPP_EXTERN_C String_t* _stringLiteral0C7B83C3D4E146A49E8FBE995F263BC54886556F; IL2CPP_EXTERN_C String_t* _stringLiteral0D76F47CE8A4D40ADB1EF9C1E46CC4182A4D532D; IL2CPP_EXTERN_C String_t* _stringLiteral0E2FDC41541BE5C40FE345A527562C24759F781B; IL2CPP_EXTERN_C String_t* _stringLiteral0F6182802153D24EEA849ECD8B3CDAA0F9B47E59; IL2CPP_EXTERN_C String_t* _stringLiteral1038345ECC525CA37383914C8D7839E94CCF5448; IL2CPP_EXTERN_C String_t* _stringLiteral1350F100109D4CF9E61BDE17537ED0553C4C674D; IL2CPP_EXTERN_C String_t* _stringLiteral13F7B4FA7CBA65EC1811F8A5C085117CD3DF5506; IL2CPP_EXTERN_C String_t* _stringLiteral15E66556F3FB947D9C6C37859A45CC4C92C6CAA7; IL2CPP_EXTERN_C String_t* _stringLiteral168E598D868A0CC9140604911551C2FC496E3A05; IL2CPP_EXTERN_C String_t* _stringLiteral171112507722F18531ACD11A635F712DADCEBE6E; IL2CPP_EXTERN_C String_t* _stringLiteral1821AE443912F325AB2E97DF532D1DACF7161739; IL2CPP_EXTERN_C String_t* _stringLiteral1896FE3101E00E003E0A21778DA6F57A86DEA7BC; IL2CPP_EXTERN_C String_t* _stringLiteral19D5B110F19B2190575B7810E1FA91334E8E400F; IL2CPP_EXTERN_C String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25; IL2CPP_EXTERN_C String_t* _stringLiteral1AD0E9342E3C33991ED3887D6306B249546F0C7B; IL2CPP_EXTERN_C String_t* _stringLiteral1B08DBA6C41309ED4513414011188E6B4CA2403F; IL2CPP_EXTERN_C String_t* _stringLiteral1B8A0FD63D1D605E82838E8FBA940C1207478A60; IL2CPP_EXTERN_C String_t* _stringLiteral1C2EBE0E70C4B03074D33C64120CD29EA385AA71; IL2CPP_EXTERN_C String_t* _stringLiteral1C58A3FE6DCE8C4663334496A6CC60DFDF3BB4EE; IL2CPP_EXTERN_C String_t* _stringLiteral1D35114B8F34BF6224A46DAC8D98B4ED3594B7F5; IL2CPP_EXTERN_C String_t* _stringLiteral1D5C2E629B06234A3AE2BA0E82B4FBB6F1A4D61B; IL2CPP_EXTERN_C String_t* _stringLiteral1DE5D43D5B4B74C0BC8A89C7FD6D7FD3A9E7336A; IL2CPP_EXTERN_C String_t* _stringLiteral1E6707FD8D3EA9A2DF1515730D3A6E7BFEF41267; IL2CPP_EXTERN_C String_t* _stringLiteral1F81AFFE48C2C2B337815693830EBEE586D9A96C; IL2CPP_EXTERN_C String_t* _stringLiteral1F96F0958DF8CB4296C7EFE494DF309346DE6CBA; IL2CPP_EXTERN_C String_t* _stringLiteral2037DE437C80264CCBCE8A8B61D0BF9F593D2322; IL2CPP_EXTERN_C String_t* _stringLiteral21F20DF4A4C08E5DABA82DB1839C69CA515E1B33; IL2CPP_EXTERN_C String_t* _stringLiteral222A297D18FF1387F7919DAD802CF73BA68A5B9C; IL2CPP_EXTERN_C String_t* _stringLiteral242065D4B034786D24641F82C097B6DAA692822B; IL2CPP_EXTERN_C String_t* _stringLiteral25F82570C8A4E0BBF33D841DA7020C5961D4B0F7; IL2CPP_EXTERN_C String_t* _stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1; IL2CPP_EXTERN_C String_t* _stringLiteral2AE9006AA79BCA491D17932D2580DBE509CC1BD7; IL2CPP_EXTERN_C String_t* _stringLiteral2B020927D3C6EB407223A1BAA3D6CE3597A3F88D; IL2CPP_EXTERN_C String_t* _stringLiteral2C3199988097E4BB3103E8C34B8DFE8796545D8F; IL2CPP_EXTERN_C String_t* _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A; IL2CPP_EXTERN_C String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D; IL2CPP_EXTERN_C String_t* _stringLiteral32368864574CE30745E6A3A112FCB36F083BFB0C; IL2CPP_EXTERN_C String_t* _stringLiteral32D4D0CD69E4FCD0E4B1749FED4FE485D5B17F9C; IL2CPP_EXTERN_C String_t* _stringLiteral3435968A1FA5DC7806024802A561C1886C22803B; IL2CPP_EXTERN_C String_t* _stringLiteral34530CDFC92A51FCD4964DF30BAE93C4C3CFACF8; IL2CPP_EXTERN_C String_t* _stringLiteral349507E41DD8C71C10C9DF6D2444B5E64A285691; IL2CPP_EXTERN_C String_t* _stringLiteral37497AA5A2272C49714AEE1B07E8EDF973A95F59; IL2CPP_EXTERN_C String_t* _stringLiteral37BEC4B9960B22F35421CD7D639241E56E3D4FB2; IL2CPP_EXTERN_C String_t* _stringLiteral37C3F47C38A5EBF7F5BAFAA6AA4ED8778E9A2C87; IL2CPP_EXTERN_C String_t* _stringLiteral38B62BE4BDDAA5661C7D6B8E36E28159314DF5C7; IL2CPP_EXTERN_C String_t* _stringLiteral394CD1DBEAFE1BD9574666651BCC66D1298EA18F; IL2CPP_EXTERN_C String_t* _stringLiteral39805F1D1CE82AE3D872AF3A7E7C59454D282DF4; IL2CPP_EXTERN_C String_t* _stringLiteral3A383C209C07D7DDD4A20A832E5E3183C6735122; IL2CPP_EXTERN_C String_t* _stringLiteral3A7D9767B1233601EBF8B67495C6DC2CE8B8C2AF; IL2CPP_EXTERN_C String_t* _stringLiteral3ABDF740E9FD3F66165C9843BF151FCB36E52262; IL2CPP_EXTERN_C String_t* _stringLiteral3B2735839D1797305D98210526CD0E0525FA22A9; IL2CPP_EXTERN_C String_t* _stringLiteral3E817DFC269EB4946CD544A6A97B106296C3940B; IL2CPP_EXTERN_C String_t* _stringLiteral3F1100B2ABF8FFBAD088B793AAF302D5435DBE3F; IL2CPP_EXTERN_C String_t* _stringLiteral41937B20FBE8C71D9C6C3346AFF43C001AA25E33; IL2CPP_EXTERN_C String_t* _stringLiteral4502F52BE77394F4C0ECBD9DEA423CB819129CE0; IL2CPP_EXTERN_C String_t* _stringLiteral463C9ACFFA099CA60B83F74DD23B2E4DE31E298B; IL2CPP_EXTERN_C String_t* _stringLiteral474AE52625B87D7628AE7B20A499329A99E07119; IL2CPP_EXTERN_C String_t* _stringLiteral4774FB46C5FDD61405A65146DC8876A573F18682; IL2CPP_EXTERN_C String_t* _stringLiteral4A9B136550890770D29DF6A00FAA574C173789AD; IL2CPP_EXTERN_C String_t* _stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC; IL2CPP_EXTERN_C String_t* _stringLiteral4BB4CA75941B7BBC5BC6A12BE44B22FC9C8D234E; IL2CPP_EXTERN_C String_t* _stringLiteral4D81E111D8982E67E6A24BCB02FB5CE2AFB71541; IL2CPP_EXTERN_C String_t* _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC; IL2CPP_EXTERN_C String_t* _stringLiteral50DB91C54DC6A6F5B481F31D2A1DA1FD5AA487E7; IL2CPP_EXTERN_C String_t* _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F; IL2CPP_EXTERN_C String_t* _stringLiteral521CE61A24760AEEB4B2129999AC818B48FC7D14; IL2CPP_EXTERN_C String_t* _stringLiteral53867761F2A54C550E24E76921E71BBD5607B5CE; IL2CPP_EXTERN_C String_t* _stringLiteral53F7F9602724F5C9D2B64C05462A6DA2F44E2BD0; IL2CPP_EXTERN_C String_t* _stringLiteral54235B8B0E980EBB3355126954C130A816A21AFB; IL2CPP_EXTERN_C String_t* _stringLiteral55D8727A05EB80B0788AF57A5317F3E0A1F4AA55; IL2CPP_EXTERN_C String_t* _stringLiteral5673FDDE0249844B4A82C15CA2BD6584D7C308E4; IL2CPP_EXTERN_C String_t* _stringLiteral56D3C9490BE2608AC36F5A4805BFEC2F21F7F982; IL2CPP_EXTERN_C String_t* _stringLiteral574FF9B0C49CDEB5F5508548AE0CAB44FECEE038; IL2CPP_EXTERN_C String_t* _stringLiteral576347EC826F38428D8C8A6F8EC4ACB2BCEAB911; IL2CPP_EXTERN_C String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889; IL2CPP_EXTERN_C String_t* _stringLiteral5BBAA9B8E272D7D609370B56FB4A1DC199FB1DA5; IL2CPP_EXTERN_C String_t* _stringLiteral5EE6EC49CF3A25DADF191E62C4851F860A7900C3; IL2CPP_EXTERN_C String_t* _stringLiteral607A669D68C57749AE1E59F1737A7C47B41E00A6; IL2CPP_EXTERN_C String_t* _stringLiteral61AD634E557CA4E72090257EF5F68EA067B4226A; IL2CPP_EXTERN_C String_t* _stringLiteral6669D645B20DE5AF96898FE51D2EE9DFB4111C90; IL2CPP_EXTERN_C String_t* _stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469; IL2CPP_EXTERN_C String_t* _stringLiteral67CC4704CE79BBAF875E4B65F327FC804330682B; IL2CPP_EXTERN_C String_t* _stringLiteral699B142A794903652E588B3D75019329F77A9209; IL2CPP_EXTERN_C String_t* _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C; IL2CPP_EXTERN_C String_t* _stringLiteral6B3F0FDD52FF1C41149DAF9C0970E2B2E1EBBE24; IL2CPP_EXTERN_C String_t* _stringLiteral6BA2E7E7FF3BE0A9B4029B8A6169677870AE9E21; IL2CPP_EXTERN_C String_t* _stringLiteral6CB021F4DE5A59C914CE2FD45BD52E5CA6A397FC; IL2CPP_EXTERN_C String_t* _stringLiteral6D9764792C867EE2BC72CC2199A1F4334E4FEA0B; IL2CPP_EXTERN_C String_t* _stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432; IL2CPP_EXTERN_C String_t* _stringLiteral708136672D3E2B5A654FB9C34A7F207747885825; IL2CPP_EXTERN_C String_t* _stringLiteral73EBEA013EB4C5C11E9834291F0D8CBBC4992FB1; IL2CPP_EXTERN_C String_t* _stringLiteral756401410D3949E15F44BEBA2B1567379175B53E; IL2CPP_EXTERN_C String_t* _stringLiteral796C6F906CD9AFED4B6DCF5573E528AD627CA46C; IL2CPP_EXTERN_C String_t* _stringLiteral7B40CAEE6DF9BFEF9B5A66F65F70C99ADC496807; IL2CPP_EXTERN_C String_t* _stringLiteral7B9E91548E399930C3935F7EC5D98D85C3F78739; IL2CPP_EXTERN_C String_t* _stringLiteral7C9E4CE229BAFB966C53CA8676C5BAD2046C9B62; IL2CPP_EXTERN_C String_t* _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860; IL2CPP_EXTERN_C String_t* _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD; IL2CPP_EXTERN_C String_t* _stringLiteral7E2E7C38B817DB77D6B12E99B9738E18BDDF9B28; IL2CPP_EXTERN_C String_t* _stringLiteral850828716F9C5476A885E4AF4B1592EDAF8390BA; IL2CPP_EXTERN_C String_t* _stringLiteral87EA5DFC8B8E384D848979496E706390B497E547; IL2CPP_EXTERN_C String_t* _stringLiteral8858D34A5DF81344D5F1195DDACDFB8E8448C5E6; IL2CPP_EXTERN_C String_t* _stringLiteral885F50DCFD6542D03A37B7DE40CFBAEB00164500; IL2CPP_EXTERN_C String_t* _stringLiteral88EE3CEA20D96E9852D213E90BDCE53DB921ADBB; IL2CPP_EXTERN_C String_t* _stringLiteral8925B5C504CFCC741E156A406B2072543F9DEB98; IL2CPP_EXTERN_C String_t* _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56; IL2CPP_EXTERN_C String_t* _stringLiteral8AAFD7F540EB518494415D8EE7E0F78305B294C7; IL2CPP_EXTERN_C String_t* _stringLiteral8D35B56BCE74A9F8AC3CB4260050F19B572F5AC7; IL2CPP_EXTERN_C String_t* _stringLiteral8EFECA76BCED966AFD1E6DF59938C647C9C83F78; IL2CPP_EXTERN_C String_t* _stringLiteral8F3A07543988E4673DCAE5E59C35323C5791F370; IL2CPP_EXTERN_C String_t* _stringLiteral8F3F5E0527993BEB4010B7A1444A093EDA2F42EF; IL2CPP_EXTERN_C String_t* _stringLiteral8F6474296A2391DE11EB639CEE391F6735046792; IL2CPP_EXTERN_C String_t* _stringLiteral8F8AE9544C800C5645217FBE5AA94B8E526C7E98; IL2CPP_EXTERN_C String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA; IL2CPP_EXTERN_C String_t* _stringLiteral914839398AEE2A272ECAF21A6C5522C0D1378DFA; IL2CPP_EXTERN_C String_t* _stringLiteral91B84E8687F2D082DB7BCB05E1B3B2123A1D8366; IL2CPP_EXTERN_C String_t* _stringLiteral9357CF22F6767C4E2A9D976F6733C938A25C67ED; IL2CPP_EXTERN_C String_t* _stringLiteral93DEC40AB1B5EF19C715C0EAE5164CC3C700BCAF; IL2CPP_EXTERN_C String_t* _stringLiteral9527141004011DE14AE7F1E3643C59B23A00BC38; IL2CPP_EXTERN_C String_t* _stringLiteral986D5F863A276DE3CA7FDCEEC5606C2C44E03800; IL2CPP_EXTERN_C String_t* _stringLiteral987B9CED08D4AC5D11D286CA4B54B99A4F69164B; IL2CPP_EXTERN_C String_t* _stringLiteral98DC75F74144873452778C5C7BA316017B29D9EB; IL2CPP_EXTERN_C String_t* _stringLiteral9956E10D0235BEF9C63D0B1D2107F77CF985D4B2; IL2CPP_EXTERN_C String_t* _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B; IL2CPP_EXTERN_C String_t* _stringLiteral9D9BED981884AC3D4D16BF22ED725A5686CEF15B; IL2CPP_EXTERN_C String_t* _stringLiteral9E430F17EB96D796BF49C46584B98C497F8AE559; IL2CPP_EXTERN_C String_t* _stringLiteralA151302157444AA3F3EF5AC23116EA226D29C972; IL2CPP_EXTERN_C String_t* _stringLiteralA173E725607D0F98C78EBAC0B31138D8D136AA84; IL2CPP_EXTERN_C String_t* _stringLiteralA19A8867C60DF26C22DDB69DD1B7B215AE522C44; IL2CPP_EXTERN_C String_t* _stringLiteralA1E290BAB556CC85CB72A2CB75BB9A0ABA45B447; IL2CPP_EXTERN_C String_t* _stringLiteralA2620CBC10F5198DD03E3F5A1569EB5DCF9A6A87; IL2CPP_EXTERN_C String_t* _stringLiteralA2D9E3AC892A8FEA3180CFBA1F1C9D0F8716EA95; IL2CPP_EXTERN_C String_t* _stringLiteralA2FE0B065EA50F6641CB120F487D334AC723A859; IL2CPP_EXTERN_C String_t* _stringLiteralA5303371A1DD00CB948B4C58C88CC7779A494241; IL2CPP_EXTERN_C String_t* _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE; IL2CPP_EXTERN_C String_t* _stringLiteralA70F1BF46F12CF5517DAB14A442D77DB24FDDC26; IL2CPP_EXTERN_C String_t* _stringLiteralA7CA3604B3B7A0733239DF9F41348D06245AC357; IL2CPP_EXTERN_C String_t* _stringLiteralA82BB634B61B228343B0708E674AB898AC53AC23; IL2CPP_EXTERN_C String_t* _stringLiteralA83DE207DBCDC758076F939E022921B57205D1F9; IL2CPP_EXTERN_C String_t* _stringLiteralAA30471D667C9D7CC0C83322F5326E6A7357A0EF; IL2CPP_EXTERN_C String_t* _stringLiteralAA3093554472FD113135BED5B63E12F84C2E9FE8; IL2CPP_EXTERN_C String_t* _stringLiteralAA37CB5B40E647E124F23CC3C27C68F09181CE0D; IL2CPP_EXTERN_C String_t* _stringLiteralAC167A22531E815F8207EF03791DE1EBF88780DE; IL2CPP_EXTERN_C String_t* _stringLiteralACFA2565C73A7485FF283298E64D16D5BDB0FF26; IL2CPP_EXTERN_C String_t* _stringLiteralB016278EAF5A66B124AA177BADC28CD1550C586F; IL2CPP_EXTERN_C String_t* _stringLiteralB26DC72D261A92C1CFD1E643717E450A84CF2122; IL2CPP_EXTERN_C String_t* _stringLiteralB4D5B37BF7A986C138EDE89E0806F366B5CB1830; IL2CPP_EXTERN_C String_t* _stringLiteralB6488C506558D7B3542A1D40D4A9AFD557DCC4FD; IL2CPP_EXTERN_C String_t* _stringLiteralB69220CE564D3318A9EEF1120FC119174ADBDEEA; IL2CPP_EXTERN_C String_t* _stringLiteralB7A59C1214B081A2AF0561DFF2E17294228556D4; IL2CPP_EXTERN_C String_t* _stringLiteralBAF34A2547265FEEA14708F8A1A89708432452A6; IL2CPP_EXTERN_C String_t* _stringLiteralBB589D0621E5472F470FA3425A234C74B1E202E8; IL2CPP_EXTERN_C String_t* _stringLiteralBB80988865A7C2136B3ADE9C2EB5EAE119955268; IL2CPP_EXTERN_C String_t* _stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8; IL2CPP_EXTERN_C String_t* _stringLiteralBCA799238FFD9062EADADF1671BF7042DB42CF92; IL2CPP_EXTERN_C String_t* _stringLiteralBDFD4D8D6952777C39403B2D2E2F8A2A52BF255F; IL2CPP_EXTERN_C String_t* _stringLiteralBE3F306A5E0BA5DC2F76020448FB66EB734EF545; IL2CPP_EXTERN_C String_t* _stringLiteralBEE73CA6E75A8894DD7A547768926EDAEDCD5C1A; IL2CPP_EXTERN_C String_t* _stringLiteralC0EE32D825D6DDB4025AB74AF0609969ECC419C8; IL2CPP_EXTERN_C String_t* _stringLiteralC24595E6A7BC6D5DB68BC6759DD5BBA5D834B6DB; IL2CPP_EXTERN_C String_t* _stringLiteralC2761A6512E7A91307A0DE721A3CA321DC4704D8; IL2CPP_EXTERN_C String_t* _stringLiteralC2FE37F547603E5070979129624113F1C6F9D844; IL2CPP_EXTERN_C String_t* _stringLiteralC34859D7F446AA18DD9260227F587FBA6EB4DB1D; IL2CPP_EXTERN_C String_t* _stringLiteralC363992023785AF013BBCF2E20C19D9835184F82; IL2CPP_EXTERN_C String_t* _stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1; IL2CPP_EXTERN_C String_t* _stringLiteralC45B18C0F0F4B3CF24DA66312054A56CCF27D9C5; IL2CPP_EXTERN_C String_t* _stringLiteralC499D2FE766B2B37D326CC48A70E7DFFCE14E67E; IL2CPP_EXTERN_C String_t* _stringLiteralC66F297D9CFBA91552616C44CE043096BDC566A6; IL2CPP_EXTERN_C String_t* _stringLiteralC8DFBF5C8D6E2ABCBCD997023A30E88DCEDF08DA; IL2CPP_EXTERN_C String_t* _stringLiteralCD6A7B8768528485A0DBCD459185091E80DC28AD; IL2CPP_EXTERN_C String_t* _stringLiteralCDD3E50B9E706702A4996E0BC1E08259AF9C1950; IL2CPP_EXTERN_C String_t* _stringLiteralCEAFB51E2B0783D53DD620019DFF3AA66708A26F; IL2CPP_EXTERN_C String_t* _stringLiteralCF76F3CD38A366E96CB2BED7C1D82F777242B6AA; IL2CPP_EXTERN_C String_t* _stringLiteralD0941E68DA8F38151FF86A61FC59F7C5CF9FCAA2; IL2CPP_EXTERN_C String_t* _stringLiteralD096C011585D07EA34D552634CAB76998611ECD3; IL2CPP_EXTERN_C String_t* _stringLiteralD25FC308E967C0107DD8D8FCA45D38FEC31F5CF1; IL2CPP_EXTERN_C String_t* _stringLiteralD416C225B5075E134E29DFBF7B48B6B0F77F834D; IL2CPP_EXTERN_C String_t* _stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD; IL2CPP_EXTERN_C String_t* _stringLiteralD7304202578FF38AEE73020102C7456D4FA76D3C; IL2CPP_EXTERN_C String_t* _stringLiteralD7938D08865974650DE95B633047523C268290B9; IL2CPP_EXTERN_C String_t* _stringLiteralD827C2D1D2DED210FE559F387B8698040E1AED3C; IL2CPP_EXTERN_C String_t* _stringLiteralDBDD7B51A325AE50AF055F075B2CCF50439827EF; IL2CPP_EXTERN_C String_t* _stringLiteralDC6963166E9D5E488CF23C5F20C1BCD34C9C9B72; IL2CPP_EXTERN_C String_t* _stringLiteralDC99D54D9990E3C134420BE3918E88F28531E630; IL2CPP_EXTERN_C String_t* _stringLiteralDCBF19BC29354184B31ADAB7FE37B301685FF550; IL2CPP_EXTERN_C String_t* _stringLiteralDDB0D01193ED435B77174CFA9313A4E94E2B4FD5; IL2CPP_EXTERN_C String_t* _stringLiteralDF73794760F11D41CDB5105F8A2808C12AFAB0D7; IL2CPP_EXTERN_C String_t* _stringLiteralE06B0DE168F97FA3ED2ADE13FDB940C9BFE62E87; IL2CPP_EXTERN_C String_t* _stringLiteralE073E7170308FE19487AF6EF1807C8056BC91116; IL2CPP_EXTERN_C String_t* _stringLiteralE0A94664599D16AD9C195801B466CE3D0756C40B; IL2CPP_EXTERN_C String_t* _stringLiteralE15B6A0A1108C9AC320286F96690841664ACD678; IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; IL2CPP_EXTERN_C String_t* _stringLiteralE78FE7049341B36116D8054F5A3E00D01F245FCC; IL2CPP_EXTERN_C String_t* _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C; IL2CPP_EXTERN_C String_t* _stringLiteralE7C8B6C9A3407F1CFA5D484A50D6659DB304A143; IL2CPP_EXTERN_C String_t* _stringLiteralE8306A5B8D2786F6900ABCC6514C61A5C91516D1; IL2CPP_EXTERN_C String_t* _stringLiteralE87A29FAFA6BDE5DB2F2ED78580BDB62061933A0; IL2CPP_EXTERN_C String_t* _stringLiteralEAEF99A09E561A86004BAEB87A80BB4CFCE8CE67; IL2CPP_EXTERN_C String_t* _stringLiteralEBA8B69763EB43A139DEA3B8C4A58E9CEDCA4968; IL2CPP_EXTERN_C String_t* _stringLiteralED9428DBFB0B1BF45F637DBEABF0DB8879D90E82; IL2CPP_EXTERN_C String_t* _stringLiteralEDFBE774D07FEF0E86FBB029261CD370F5EFD9E7; IL2CPP_EXTERN_C String_t* _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556; IL2CPP_EXTERN_C String_t* _stringLiteralEF5C844EAB88BCACA779BD2F3AD67B573BBBBFCA; IL2CPP_EXTERN_C String_t* _stringLiteralEF9A26B1AEA755741D0AC956EF8DC9AFB09E7B01; IL2CPP_EXTERN_C String_t* _stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6; IL2CPP_EXTERN_C String_t* _stringLiteralF20EDA68133DFCF8EA3FB9069F3237610643A8F0; IL2CPP_EXTERN_C String_t* _stringLiteralF25BCCD744FAB3255BB82BAC88C618963868A33F; IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5; IL2CPP_EXTERN_C String_t* _stringLiteralF410B3794614F4946761EA1E8C628608639839C6; IL2CPP_EXTERN_C String_t* _stringLiteralF632347943CA4E8CC8339626FD5E7D507C6E5C81; IL2CPP_EXTERN_C String_t* _stringLiteralF7F24D49529641003F57A1A7C43CFCCA3D29BD73; IL2CPP_EXTERN_C String_t* _stringLiteralF82BE68A7FB4E7DEC88F27463DE94AD355242EE5; IL2CPP_EXTERN_C String_t* _stringLiteralF95EB45042C532B7D4178212FDB95626B723D8EA; IL2CPP_EXTERN_C String_t* _stringLiteralFA5342C4F12AD1A860B71DA5AD002761768999C3; IL2CPP_EXTERN_C String_t* _stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049; IL2CPP_EXTERN_C String_t* _stringLiteralFB89F8D393DA096100BFDC1D5649D094EFF15377; IL2CPP_EXTERN_C String_t* _stringLiteralFC6AE05A55888138AD5ED7FDF85E0CFAF96F0CB1; IL2CPP_EXTERN_C String_t* _stringLiteralFCB3CCC25D66B2BCEB3459994F52E74675D4A7D4; IL2CPP_EXTERN_C String_t* _stringLiteralFD9D0C913A99959CCA8988A4605411D970AF3F59; IL2CPP_EXTERN_C String_t* _stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3; IL2CPP_EXTERN_C String_t* _stringLiteralFF441E842A6E6508BF0FBBE9FAC623D087A2F3CD; IL2CPP_EXTERN_C String_t* _stringLiteralFF69C2D636503743B153CA52D647A5C19B17092C; IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mD78FC681378C9DC1899BFF7E94A853EBAADD0C79_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData_m6BFFBA5419D77A7EA07E52E8ED5908CCE916BB5C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule__ctor_m6057D32A9410894E1C9DE7CEEC59A662E3FCA468_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mDC37BFA945C8ED7FB8700727168D2F68CCFCE4A3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparison_1__ctor_mE0538E25387B755D53C0B704CB16ED1F23AD18E0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Add_m5066B6CF71B4388CE9668A469B274DA1F1CE8267_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2__ctor_m532318C6B13DB33AB8E1A63999A30FBE81BE2FCC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m1CF588B67718D0CF03E628AEB7A822E58F1F5517_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m2D8C7B37F04BBE07E0D052A019C914E9AE6815D8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_mE31B0BF70F2E5AA680638E8565B00286E26C5548_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m0F0789D0F81BD4D8EAFB77487B94A9CEBD730F83_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m60AD9FD2AC64440B5E23B200EAE9B55F366379AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mDBF08ABE6CCFA1D4FCF82C5D409C18615C300000_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m2EA6C5DB454F479076AF2C9098A477B943F7CF71_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EventHandler_1_Invoke_m5A2B682142BD5C458A2C93E0300172955DBBCEA6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2__ctor_m69CD5926C1F3E83585430B234312999946C55C53_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m86B2C62B2D71E058541AD44447FFE99B23E906AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m53E2812960EF279EE483985E7F647EA7958B61C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m3D1C9DA1E2012F97E0097903E50DED0F25776C57_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m6A63D4FE58AC9BB75CFFAC71A9F238D5D2FA6B86_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m931E984DEC4E3137C263958DE8354032E8784003_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m3A0B8640D1A4B9BDC91742284BC44B969CC78279_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m3C00FE8E3C5994C50C32F29BEE73E95FC93432F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m76DF40E97717AE8F7F5CD0D1965BB34D12BE0C75_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mB5A8963C62BC566BF95512C93EA0B5ED6D04B8E9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mACBCDAD884AD8F4AB0A67F8E8626D5FD0C8C6A79_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mE27BF65BB76485B01C35B9F6A1D44C4560BF5370_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_mF3B9CA9E20C7542FAAD6C966B548492F2C7CD5DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m3B256FB508DAF70D63EBA562343E275EC0308919_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m803235EC510CCE1CF53E7D6FB952A83E01154DE1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m5D913FDA1B5B3FFD94223C59B5A70B418F569213_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7C148B97DC87A9125BDE2F8876642459D8A30954_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m8EA0E94A31BE27A0D2CF4FA7BDDC767E5D2ADC23_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC454D22A181DBFE033123BA60EB7503279A2E624_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Capacity_m4E6CC6EB68ACB4009E66AE14C2969F02B644FAE7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m102A5956CA038B4503A23CBAE433114532EC22E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m3DAF7D49CDFC1C5CB1461E2030F6FDDA59DBBE1F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m8D9BFB4AA79DACCB93AA6EF7021A01BA086F8B0F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mEAB0A1E6130424B195D6DBFD71FAB35A51BA5337_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m1F6363F6A46963C8CCA039EF719B7933A3817FF3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m6C76B0438807DFB527E73E6166D012198028ACBE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m8A44B7C37BB53CF3C22046AE0A17B58B0925A7A1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Capacity_m0DA623E0A9843F83E643A5E032D775F990F3863E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_GetEnumerator_m99D19158C39B54528C9227F6F986B66D499C0B42_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_GetEnumerator_mB3A1708B473BA7EE3CED5959613B2AA11A4920BA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1__ctor_m2669B26D5BD4E1D7DA650B32D5C8C5D4C6F82FE4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1__ctor_m7B7B9545500B72A83AC286C66E80177D48BE2F7F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegisteredWaitHandle_Wait_m0F3673BDD8989B937D7EAF2DDCE685C158192A12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Scheduler_SchedulerThread_m9D548ED1E24E29E6CB64A3C7F1FF42FA25054CF1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Scheduler_TimerCB_m2EB04474CB0C68B572FDDDBC2641CE749CB3BFB1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparseArray_1_Add_mE48A7F17E902019686E15A72766DD0AB4CE80971_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparseArray_1_Remove_mEBA9CD59097C8D0C153E48328C21554B81E68414_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparseArray_1__ctor_m0B0CCA1B07E8D3958BD83EFE5CBC7C40A0A9131A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SparseArray_1_get_Current_m3B12A0B7ED161127D23F62CC10EDCE7F8ED79051_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskExceptionHolder_AddFaultException_mAED32CEEF853B1EECD7CDD5285BD8E1F079DF505_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskExceptionHolder_AppDomainUnloadCallback_mAC27C1E4D2719B110D952A915FCC2B763C0FDBAA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskExceptionHolder_Finalize_mDB06081495D64A2708A09991B67929EDF79EF3FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskFactory_CommonCWAnyLogic_m49CC1C06031409C5D34990993262A531609D9565_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TaskScheduler_TryRunInline_m9FBFA8F615D96CC9902CA2CBC3D51BCF7444E67B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetCanceled_mF517585BF4AC77744F212A6F236047C47E7CB45C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetResult_m8370C01E1E5614744D78DCC74E06F8FCAFDA11C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1_TrySetResult_mAD80B9B3A23B94A6798C589669A06F1D25D46543_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_m4008D170A16EFA60DD6E4D059D75FAAC9D57AD85_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Task_1__ctor_mB6BFCB1A119B19A4AE30679E41E1F4EC47797EB4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThreadHelper_ThreadStart_Context_mE293651E7B7060DAC2F7FA75B354BF206DA774A6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThreadHelper_ThreadStart_m21D0954583D43BCACDABE0E2ABB694FC4A0D43A3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThreadHelper_ThreadStart_m8CB657ADE8F96ED7949120D441D40F2A23EECBD2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThreadPoolTaskScheduler_LongRunningThreadWork_m961ED397785555AF2C24A4C8723246BA355CE21D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThreadPool_QueueUserWorkItemHelper_mD11DD16BA8A1C6C90FC15FB3E47F2C62F19669AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThreadPool_RegisterWaitForSingleObject_m0642BE341A35D9AB577E4611E254BCF7E5C35540_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThreadPool_RegisterWaitForSingleObject_m1FAE6A729D61DDDF3EE72AEB72D886184A8FA58E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Thread_Sleep_m2CD320EAB7BE02CC1F395EAFE9970D53A5F9EAEF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Thread_StartInternal_mA1F40AE1915B601089920427BCD391C814D624E0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Thread_Start_m3D27E6E9735ED3B6BF2CD332B8D90E7E8CE21933_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Thread_ValidateThreadState_mEBF62A50922AE3BABE5C6603386D5370DEA385F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Thread__ctor_m10768310462BE1A521AB4BB70F483741C993ADFD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Thread__ctor_m36A33B990160C4499E991D288341CA325AE66DDD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThrowHelper_ThrowInvalidOperationException_m5FC21125115DA5A3A78175937F96B30333FF2454_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThrowHelper_ThrowNotSupportedException_mDE950AAFA2110B5EB15127AAD48E54ADF9C180FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThrowHelper_ThrowWrongValueTypeArgumentException_m81EB12FF3AB8403FBF5D9DC58BF6A4950EE76F5F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeSpan_Add_mC4C54D4AF8C34EF36288176B85FF2F488A7C5507_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeSpan_CompareTo_mF5675C9DD2AA6D97C68CFAAE340B54EC4485564B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeSpan_Subtract_m9A5CA898BD0D57AE22E8E19548B8D635961A71C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeSpan_TimeToTicks_m30D961C24084E95EA9FE0565B87FCFFE24DD3632_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeSpan__ctor_m310F37AF5F9F91433A98062BF6E4A248AA6C3DE5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_BuildFromStream_m03149B20E6AA12F61EFA3B7745D3DC05DBC65418_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_ConvertTimeFromUtc_m471600E7A17C69471FAB60868046709A90FEC03D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_ConvertTimeFromUtc_m59079E8F2663E2A1A96089CCB397E2FC9A00C422_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_ConvertTimeToUtc_m6A0B236FDC04E0431DDCB946218961E6218269F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_ConvertTime_mC953F67CC3D9457C7595DBB652418754C2B58FDE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_CreateLocalUnity_mD72D1DBB52C82E4AC72C1B697F1F37C935C755EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_FindSystemTimeZoneByFileName_m8AA63273DF4EAB14398DCD1E7B84FCADF6F84E7D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_FindSystemTimeZoneByIdWinRTFallback_m97E8D7110492D9A43A425DA0A06FCCCE3F8ED483_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_FindSystemTimeZoneById_m1213ADAB49255703C816325E6F215AE0E7E9F8DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_FromRegistryKey_mE18CC429EF151EDD5D9B1AAF8C9A28DD048114FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_GetSystemTimeZonesCore_m9D3D231ABFB243A5720D61CA7FF524E6E6D77808_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_GetUtcOffsetHelper_mEF2AA10E4E24DF9A330DA6BBE230783050E9BA1A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_HasSameRules_m1C002CA4B76F10229AD7C5B30F53F66C7C53720A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_IsAmbiguousTime_m1C47E17D025683A2FAFB4BBB8F22E8143E5462EC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_ParseTZBuffer_mB31B17720432692878EC43379CCF629C51F0AC96_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m5091B256A2E8EDD09B7350EA38038D51A2D8FE89_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData_mAE47C204DEBA80A40CE6BB6D8645CBE68E07E843_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo__ctor_m208C00B56C7C1002819A1B940AD02AFD1848886D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo__ctor_mC41FD818CE40C6CAAA58613C79F3F7063FD7AE8F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Timer_Init_mF69134A3E2C8A2B79BA925BCF687B3DCBBF4AB65_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m6FD2B88D2632C765F64AD7DA885D92B919264460_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m174E35C46E6E212DF7B09D81BD53CFE60BD0B693_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime__ctor_mAA204123C15C0744095BE8681CA125E366AB1659_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_FindInterfaces_mCD9DAF33085BFAE4CEBDCF4374B31AFE9F738549_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_FormatTypeName_mE181AE76F0297373BF4354D10C091DEE1F03EABE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetArrayRank_mD3F9AC2DD3601EA4D7F5AF78A02D2919ABFF62DF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetConstructor_mD740DE730AFCDC50893503C3D5FBA7D56FA56C47_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetEnumName_m6A525F2B6A8F48D6B2AE0FC16EE3CF9853E9BEDD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetEnumNames_m41CAB9298D20E6F227CB8A01073081FFEE554E31_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetEnumUnderlyingType_m4339ED321809282C1C2313401AD0694868CDF64F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetGenericArguments_m2AADF226E686E336F249AE68EC3533562197FC0F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetGenericParameterConstraints_m6D516124A8F4DED67CE2FA6BCE221B28271A5E69_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetGenericTypeDefinition_m1B879BD97CF6B59E4CD8FF5224B913117D8D9E6B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetMember_m1232F7B9F48FE4809F2D7F2FBC190D14489BB115_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetMethod_mB8368D44E32C205D279BA3BB9E6FE1D09D45A6DE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetProperty_m6F2C962FDCCD4966698E40A631F8DD9F4BF5A1C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetProperty_m724FAA955DCE10E0C46A9485BCEA32C1CE608130_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetProperty_mB92E711C0B593302FC700804ECB78B45932E12B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetTypeHandle_mF4790808C172FB5701365C8AA48EC9A132AD60B9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_GetType_m77EF3A5A858B45C53D8BF27C74FA00CA83B53E59_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_IsEnumDefined_m114D71E42434449C768E715EF83AEE4C69B1E961_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_MakeArrayType_mA247B3102DE693345AE335522DC8F080E720DCB1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_MakeArrayType_mE93BD65B2F3CDB539823B0763328A0E4EF5FBEA5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_MakeByRefType_m491343FED49D189A01971718113DC5C1CCB3AB5B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_MakeGenericType_m345117714886CAD8E324AD1DDCBB6E9291E9DB9A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_MakePointerType_m78A90E40DC58D6C1D9BD7F5D7B577F3C3E5316BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_get_GenericParameterAttributes_m043281693416BED855BD243DBD5328BC69A3CAA9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_get_GenericParameterPosition_m0E7DF7C74C99BCAF03F594E1701D0FD49D998E12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Type_get_TypeHandle_m8D0407AB28EFD8B1C09342CFEF5CCC16D6F5FE52_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CCreateLocalUnityU3Eb__19_0_m55743CD9DA788A9D4D21F215C405D7EF527EDF15_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRunU3Eb__2_0_m09230CC3C4A5FF796AD9270851A6F374D8FC23BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* WaitHandle_InternalWaitOne_m14CF12240D30C25A6C34683080C5A0D982786303_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* WaitHandle_ThrowAbandonedMutexException_m4AFC4FEDCA7C3EF6E1C04D4176ABA49CC728224C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* WaitHandle_ThrowAbandonedMutexException_m69BB8B9A409789BDFA844B2A06303CCB3FD3A69C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* WaitHandle_WaitAny_m1CA2DEBC40AB9BAF7ADDC0921B2AC332FA44AB1E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* WaitHandle_WaitAny_mB3F8C574D50E2EC2D056A731B86BC2284D1B85CB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* WaitHandle_WaitMultiple_mAE04CACC2ADB312E42B0DF0E09EAB1744B50441E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* WaitHandle_WaitOne_m0E8BFEEF95DC452E7C5A17DCA57D24F38FF7C467_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* AppDomainUnloadedException_t8DFC322660E43B2A11853B62BF43078F42496A35_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DayOfWeek_tE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var; IL2CPP_EXTERN_C const uint32_t AdjustmentRule_CreateAdjustmentRule_m02250B76565B1F45DA0F87EA2630579828049935_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AdjustmentRule_Equals_mE58526212854504DB5575E2396F3C97F4F0EEA95_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mD78FC681378C9DC1899BFF7E94A853EBAADD0C79_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData_m6BFFBA5419D77A7EA07E52E8ED5908CCE916BB5C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AdjustmentRule__ctor_m6057D32A9410894E1C9DE7CEEC59A662E3FCA468_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompleteOnInvokePromise_Invoke_mAA9922CF17CC5F9186EEE5672444AC40BA0ACC3A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompleteOnInvokePromise__ctor_mFA5EA438CE61E8FDEB375E5CA2D7D5D1FFE0F175_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ContingentProperties_DeregisterCancellationCallback_mE1C7DC05011B37760179381194AA813E6646C900_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t DelayPromise_Complete_m0CE65AE222FFF596F849ACDF12710DA631C673AD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t DelayPromise__ctor_m3A76D411C11904928F0FF700384FFA1668669B15_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t QueueSegment__ctor_m7E0672E1810C3887A90DB32CCDE0FC80752495C9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Scheduler_Add_m669D8B05D43F207A8BE1AA1912154AB6F0E9EBEB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Scheduler_FindByDueTime_m2B255CEF6EC7B56CD41F4FD299E09CAAE062D5FB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Scheduler_SchedulerThread_m9D548ED1E24E29E6CB64A3C7F1FF42FA25054CF1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Scheduler_ShrinkIfNeeded_m1DDE9B9B4FECA8D16C922391413085ABCB2B60E4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Scheduler_TimerCB_m2EB04474CB0C68B572FDDDBC2641CE749CB3BFB1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Scheduler__cctor_mF399300AD4750C3FA6E8BFE5DDF32162B6F1AB9B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Scheduler__ctor_mA11657BA808AF374E216FDAAA472E18F00B84FEB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Scheduler_get_Instance_mAD166DADAB60F24F15A36BD49F67172084AA9B4C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Scheduler_get_Instance_mAD166DADAB60F24F15A36BD49F67172084AA9B4Cmscorlib16_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SetOnInvokeMres__ctor_m5687AFB1292311BE5361EDDC64D893359D4DA8BD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskCanceledException__ctor_m050669D6A0AFCADF5E7EE761F1E32860C187D2D4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskCanceledException__ctor_m45DC90A53B1AF6B996D2B1BEA655A8D2C08C6AE7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskContinuation_InlineIfPossibleOrElseQueue_m7CCFD190C3F783A343C1103BF27BFE4D19C66FEF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskExceptionHolder_AddFaultException_mAED32CEEF853B1EECD7CDD5285BD8E1F079DF505_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskExceptionHolder_AppDomainUnloadCallback_mAC27C1E4D2719B110D952A915FCC2B763C0FDBAA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskExceptionHolder_CreateExceptionObject_m054A22256E85C2AF24F5E4253F1FD9ED7698D214_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskExceptionHolder_EnsureADUnloadCallbackRegistered_m9143F763B1A627B480F5E1B9993FF68DE28BD080_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskExceptionHolder_Finalize_mDB06081495D64A2708A09991B67929EDF79EF3FA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskExceptionHolder_GetExceptionDispatchInfos_m22C52A36D4F57DA10A82F4193B5DB26C2761C40E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskExceptionHolder_MarkAsHandled_mDF29FF00633189AAC6A4D341F14D7DC6E0250835_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskExceptionHolder_MarkAsUnhandled_mD22F977332D7F3EAE91FE0665BAEE1873B342301_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskExceptionHolder_SetCancellationException_m98201054DD08F08C9DABEDA502FFDC926412EB35_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskExceptionHolder__cctor_mC036402D0A2253FCC9204F39FEF446B74DD69CEE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskExceptionHolder__ctor_m9DFCF5C093112C5273718737871BB34B2677A842_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskFactory_CommonCWAnyLogic_m49CC1C06031409C5D34990993262A531609D9565_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskSchedulerAwaitTaskContinuation_Run_m12898EF0B89FD0CA5D26DC91995257B334E937BA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskSchedulerException__ctor_m54DE71B0C4FFC10BE930F776BE82782F4384D469_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskSchedulerException__ctor_m63156F8498549786866AEA93F820A250BE5B691E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskSchedulerException__ctor_mFFF7423FCD3DFC4F8A6F7E6028AE6CB1D5865F63_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskScheduler_AddToActiveTaskSchedulers_m7BFCDD58D6FCD18D27017C309E8D683D642A7F06_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskScheduler_PublishUnobservedTaskException_mA2CFE30AA160C2A0FEDAB216CEF09B86AD16ECA4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskScheduler_TryRunInline_m9FBFA8F615D96CC9902CA2CBC3D51BCF7444E67B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskScheduler__cctor_m6A38803AE79B8830C4324685C554D545EB68C14E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskScheduler__ctor_mD337C4A20B49427C777B496030923E94CA7BC5EF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87mscorlib16_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskScheduler_get_Id_mF6A6B32C47D838C93694AAD06998F85B61F71DA7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TaskScheduler_get_InternalCurrent_m792B2A13D81A8BD8A724321AFA4633B09FF1259C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892mscorlib16_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadAbortException__ctor_m35D7B5B282C1E7366DDEA8AD89D8B78E30D76C8C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadHelper_ThreadStart_Context_mE293651E7B7060DAC2F7FA75B354BF206DA774A6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadHelper_ThreadStart_m21D0954583D43BCACDABE0E2ABB694FC4A0D43A3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadHelper_ThreadStart_m8CB657ADE8F96ED7949120D441D40F2A23EECBD2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadHelper__cctor_mCE60860371B3C99D4CF548A8B1B6F2B9E6542602_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadInterruptedException__ctor_m7D7CD66D20D7E9C12C3FD88B9DC0AF9F6EFB22A5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolGlobals__cctor_mDE5EB5AAA8F84828FE2CBEEEE1301322CD263AA1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolTaskScheduler_LongRunningThreadWork_m961ED397785555AF2C24A4C8723246BA355CE21D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolTaskScheduler_QueueTask_mE9B3A295B7D2E31848AF3DECA7A89CC814F3F20A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolTaskScheduler__cctor_mC425D1140B5A638568A6350B38102E68BFFE263B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolTaskScheduler__ctor_mC0B9F37DBA25F766F01EE56C8460330C3708FF1D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolWorkQueueThreadLocals_CleanUp_m2557E74F088EB8EC68E1DAB43458EDAF62F30C04_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolWorkQueueThreadLocals__ctor_mD46EF22D8EE15E0585EAC6F9DBF3063D14526362_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolWorkQueue_Dequeue_mC9B6B85A78A962AC577C6474DBF53E2BCE238767_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolWorkQueue_Dispatch_mCDF7415E4C9D02B34761CAE8EA15CD33DDF85ADF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolWorkQueue_Enqueue_m0F5AAE9773892321562E794066DD4DBDF4DCA100_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolWorkQueue_EnsureCurrentThreadHasQueue_m554E036E163A749F37BEBCE4F6020E145779758A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolWorkQueue_EnsureThreadRequested_mEF1AA9C6BEB164BB3CCC05D39D92FDF531B4C39E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolWorkQueue_LocalFindAndPop_m9BE567E92E0DC532DFEE011D236A1159F63E6434_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolWorkQueue__cctor_m4B8371BEBC112C1C29BFF0AA32296B5BABE4CB6E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPoolWorkQueue__ctor_mDAE229D4F94CACC0E1FF97CBDC78F1034C0AF86D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPool_EnsureVMInitialized_mA21FAA8238E99EE2F8CDD7E638FEF5E11B5578D6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPool_NotifyWorkItemProgress_mD041D082A87EAE7A34E6AE21CB7AF8819422B40A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPool_QueueUserWorkItemHelper_mD11DD16BA8A1C6C90FC15FB3E47F2C62F19669AB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPool_RegisterWaitForSingleObject_m0642BE341A35D9AB577E4611E254BCF7E5C35540_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPool_RegisterWaitForSingleObject_m1FAE6A729D61DDDF3EE72AEB72D886184A8FA58E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPool_TryPopCustomWorkItem_mCECECEF31175E5AF82E059137F190C0088897A4A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadPool_UnsafeQueueCustomWorkItem_m6FAFD01CC75C06858788F29C2430A4CB85E13568_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThreadStateException__ctor_m45CB0F9C9BFBAE82CD65CB8AEDB9EE9C1A2027FA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread_GetCurrentCultureNoAppX_mCD2B90A28EFEFFDB4B5855B71ADF1337C6E36843_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread_GetCurrentUICultureNoAppX_m3443520354B118E074F79BF5D5BDBB5B6E31B5AB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread_GetMutableExecutionContext_mD22CBCEAD2B95B779612C42D8B634B8B5163BA72_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread_GetProcessDefaultStackSize_m876EFB49B410ED044DBFA47B7EE2D4F16D7731EC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread_SetStartHelper_mA0ABB42BEDC02848CDF5378338F32B71493E5DD4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread_Sleep_m2CD320EAB7BE02CC1F395EAFE9970D53A5F9EAEF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread_StartInternal_mA1F40AE1915B601089920427BCD391C814D624E0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread_Start_m3D27E6E9735ED3B6BF2CD332B8D90E7E8CE21933_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread_Start_mFA3CA96DB8FDA3248DF49692ADE09BBD1B894830_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread_ValidateThreadState_mEBF62A50922AE3BABE5C6603386D5370DEA385F3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread__ctor_m10768310462BE1A521AB4BB70F483741C993ADFD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread__ctor_m36A33B990160C4499E991D288341CA325AE66DDD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThrowHelper_CreateArgumentNullException_m73D3C5638F0A69939498020AA3AE650DAA0178FD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThrowHelper_GetArgumentName_m557024344066246E63A04D0B1A2DB0F6C6781D2C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThrowHelper_GetResourceName_m13FDAE58B6F545972524C1B952F26628A50ED48E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThrowHelper_ThrowInvalidOperationException_m5FC21125115DA5A3A78175937F96B30333FF2454_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThrowHelper_ThrowNotSupportedException_mDE950AAFA2110B5EB15127AAD48E54ADF9C180FC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ThrowHelper_ThrowWrongValueTypeArgumentException_m81EB12FF3AB8403FBF5D9DC58BF6A4950EE76F5F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_Add_mC4C54D4AF8C34EF36288176B85FF2F488A7C5507_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_CompareTo_mF5675C9DD2AA6D97C68CFAAE340B54EC4485564B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_Equals_m7CD315197413EB59DDBCF923AD564E0021E91A70_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_FromDays_m99DCC655C53C2898FF0C41D1DDFE17A749081DDB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_FromHours_m90C3C400E2561055C063148CF7B6D71EE5E52D5F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_FromMilliseconds_mED351BDAFE79A7C08A3F115FB4B5E000CF73900D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_FromMinutes_m3038BAC5BAB62262567D7BB3AE6DD845FC985BC2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_FromSeconds_mB18CB94089B3DA3B1B059BBE90367A9928AEE5CA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_GetLegacyFormatMode_m058C62B8FEB05BBD84A5437AEDF60DAF2444EBB8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_GetLegacyFormatMode_m058C62B8FEB05BBD84A5437AEDF60DAF2444EBB8mscorlib16_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_Subtract_m9A5CA898BD0D57AE22E8E19548B8D635961A71C0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_TimeToTicks_m30D961C24084E95EA9FE0565B87FCFFE24DD3632_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_ToString_m3D31EDB779332CA887A4CB9BD1CA781C59B79EA8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_ToString_m8931E09D0B73F3CF436C70E02D74E14F5479B9BF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_ToString_m9486CD30DB9A51A6AA51C2672FCB1DFEF074FC9F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan__cctor_m4277FE003AF4295BD502DDC59770B07A497C1CBE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan__ctor_m310F37AF5F9F91433A98062BF6E4A248AA6C3DE5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeSpan_get_LegacyMode_mB9C63B017249E99A978D2977C6172848EFBA30F8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeType_ToString_m038596EE0936A7854ECC6E84EE9BF236B3DA2BA4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_BuildFromStream_m03149B20E6AA12F61EFA3B7745D3DC05DBC65418_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ConvertTimeFromUtc_m471600E7A17C69471FAB60868046709A90FEC03D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ConvertTimeFromUtc_m59079E8F2663E2A1A96089CCB397E2FC9A00C422_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ConvertTimeToUtc_m6A0B236FDC04E0431DDCB946218961E6218269F4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ConvertTime_mC953F67CC3D9457C7595DBB652418754C2B58FDE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation_m2F69E15F97EACDA6A80A979A0C225BBB24B02F49_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_CreateAdjustmentRule_m91309BB1DD028055DF1162AF2C32E3B49B205217_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_CreateCustomTimeZone_m11D4C4650268C21964BDAEBE2DF66EF03FA0D44A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_CreateLocalUnity_mD72D1DBB52C82E4AC72C1B697F1F37C935C755EA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_CreateLocal_m15C54141FB316F34FA44CA5B96CC02E2CB2F0638_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_Equals_m550F10113123069F27625140666EE2C67A901AE6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_FindSystemTimeZoneByFileName_m8AA63273DF4EAB14398DCD1E7B84FCADF6F84E7D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_FindSystemTimeZoneByIdCore_m62ECDFA5D89CE3B68C56D1B72B2CF5FB709DF322_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_FindSystemTimeZoneByIdWinRTFallback_m97E8D7110492D9A43A425DA0A06FCCCE3F8ED483_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_FindSystemTimeZoneById_m1213ADAB49255703C816325E6F215AE0E7E9F8DD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_FromRegistryKey_mE18CC429EF151EDD5D9B1AAF8C9A28DD048114FA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_GetAdjustmentRules_m5ECAA03E2351067B577D5E4EAE036014FCE291DE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_GetApplicableRule_m960A90264F1FBB60734074D71036FCA304B5F73A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_GetLocalTimeZoneInfoWinRTFallback_mAC4FAB77907E048A003EDB46ACA0A2B3665AAC15_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_GetLocalTimeZoneKeyNameWin32Fallback_m135325753C0EB2FFA39439FCAFF86BC41D8DC1A3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_GetSystemTimeZonesCore_m9D3D231ABFB243A5720D61CA7FF524E6E6D77808_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_GetSystemTimeZonesWinRTFallback_m6A927CC8A8AC235866DC2399C990A32C6BF846D0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_GetSystemTimeZones_mEA58988461DB651BAAEFE60B72EBCC2403FCDC3A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_GetUtcOffsetHelper_mEF2AA10E4E24DF9A330DA6BBE230783050E9BA1A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_HasSameRules_m1C002CA4B76F10229AD7C5B30F53F66C7C53720A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_IsAmbiguousTime_m1C47E17D025683A2FAFB4BBB8F22E8143E5462EC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_IsInDSTForYear_m5F2B6A89397E4CBE9071FB2982CDA45E6230276E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_IsInvalidTime_m986910976B42BA4BA0687D048ADABAA997B6C235_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ParseAbbreviations_mF9E2B864DA8DDDA370DD9D43D5A7E3D8B7FBA76A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ParseRegTzi_m55C1F9CA43A650277423AE74BF2787446C1D906F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ParseTZBuffer_mB31B17720432692878EC43379CCF629C51F0AC96_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ParseTimesTypes_mDE8026755AF2207FFD76312DB22A472EE850BBA6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ParseTransitions_mDF9E7750AF2BFA9992708A02AE9429EFC4CF00FE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m5091B256A2E8EDD09B7350EA38038D51A2D8FE89_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData_mAE47C204DEBA80A40CE6BB6D8645CBE68E07E843_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_TransitionPoint_m5FA051A8EC41B739B1A36720800679E69BF2CFF2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_TrimSpecial_m8904FED0584050DFA61E0BD573BDDF2D2E24DD64_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_TryCreateTimeZone_m61B74EA70226BCF8AAD99419AD574B6459E1E3B4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_TryGetNameFromPath_m030B7AF03FD88B0FCAF5374F33D9E2B22ECCFD42_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_TryGetTransitionOffset_mE81815E31B2FD48D83635AE3FAADF622DDE6B5D6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ValidTZFile_mDBAA295AA83624116C0BA67C78FDD8521866A8ED_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_ValidateRules_mB2C193EB81FF713EED1541D27D08BAD59B29E311_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo__ctor_m208C00B56C7C1002819A1B940AD02AFD1848886D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo__ctor_mC41FD818CE40C6CAAA58613C79F3F7063FD7AE8F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_get_LocalZoneKey_mB5065905D83948EB70306D6BCABA0857FE0BF65C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_get_TimeZoneDirectory_m364906451AD0C6AF1BE27A57739BB888AD144414_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_get_TimeZoneKey_m82B63E987CBDF47D6637B89F5A09F5509F5C7529_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneInfo_readlink_m36675E5C86E478A8F522061E1AE5DD3F441F1413_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneNotFoundException__ctor_m13C5CB453D2842823AA85B9B4E422C42D659FA19_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneNotFoundException__ctor_m38A84B100985F5907DE77F71A3B98CD3BF1D9CD3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZoneNotFoundException__ctor_mA8D2277188E55C2B6EA52CEB57A8AD18243CECDE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeZone__cctor_mF4FC3AB8D82A4A380D166F0F60CE193D51FA07D8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimeoutException__ctor_mB870CBFE33BA657A6C7FBFAB77984096ADCA62CF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Timeout__cctor_m9C4BFE11D3494ED5DB59176974B66055093F26D9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TimerComparer_Compare_mA323B05AE75107BF3D65BCFB43976A29155A4659_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Timer_Dispose_mAD09E4EAC3D4A4732B55911919A60CACCF8173D9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Timer_Init_mF69134A3E2C8A2B79BA925BCF687B3DCBBF4AB65_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Timer__cctor_m0A46AD4FB7C3B912E23811F586FED0391767A2EF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TransitionTime_Equals_mB551A5FE7A3347F0090F98E80401CC9204C3D191_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m6FD2B88D2632C765F64AD7DA885D92B919264460_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m174E35C46E6E212DF7B09D81BD53CFE60BD0B693_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t TransitionTime__ctor_mAA204123C15C0744095BE8681CA125E366AB1659_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_BinarySearch_mFD3B61C83B2C32CE682561A76530C0F5F3E0484B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_CreateBinder_mD7D0BA5DDBCC08A4F9D3A0DA5FE6697BAA29D9E6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_Equals_mB1E33D9584BADB00B093F1A4F87629DCEB2F915B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_FindInterfaces_mCD9DAF33085BFAE4CEBDCF4374B31AFE9F738549_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_FormatTypeName_mE181AE76F0297373BF4354D10C091DEE1F03EABE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetArrayRank_mD3F9AC2DD3601EA4D7F5AF78A02D2919ABFF62DF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetConstructor_mD740DE730AFCDC50893503C3D5FBA7D56FA56C47_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetEnumData_m2425B25E15F7A56D7ED172AC5E4FF0AF87BC9883_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetEnumName_m6A525F2B6A8F48D6B2AE0FC16EE3CF9853E9BEDD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetEnumNames_m41CAB9298D20E6F227CB8A01073081FFEE554E31_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetEnumUnderlyingType_m4339ED321809282C1C2313401AD0694868CDF64F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetGenericArguments_m2AADF226E686E336F249AE68EC3533562197FC0F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetGenericParameterConstraints_m6D516124A8F4DED67CE2FA6BCE221B28271A5E69_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetGenericTypeDefinition_m1B879BD97CF6B59E4CD8FF5224B913117D8D9E6B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetMember_m1232F7B9F48FE4809F2D7F2FBC190D14489BB115_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetMethod_mB8368D44E32C205D279BA3BB9E6FE1D09D45A6DE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetProperty_m6F2C962FDCCD4966698E40A631F8DD9F4BF5A1C0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetProperty_m724FAA955DCE10E0C46A9485BCEA32C1CE608130_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetProperty_mB92E711C0B593302FC700804ECB78B45932E12B3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetTypeCodeImpl_m0F71C7E425897F30A22F7A49F625654534143B1A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetTypeHandle_mF4790808C172FB5701365C8AA48EC9A132AD60B9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetType_m77EF3A5A858B45C53D8BF27C74FA00CA83B53E59_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetType_m8A8A6481B24551476F2AF999A970AD705BA68C7A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_ImplementInterface_m1920FA37BBC76E5FBB993950C7D760C33B778BD8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_IsAssignableFrom_m2ACA5CBCCFE757FAE343AE0BF2F3892DA6BB9070_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_IsContextfulImpl_mA87596B9B16B1787D26BCD68E8792444942DD4F2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_IsEnumDefined_m114D71E42434449C768E715EF83AEE4C69B1E961_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_IsEquivalentTo_m3ED69986A01682BCF0C30FDC0C2664E8432B7B16_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_IsIntegerType_m19478B79237AE0C92BE81AEEAD7D9DD36DFC0B27_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_IsMarshalByRefImpl_m916A4A6AE50F3E02643D6BCE414217357A18D447_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_IsSubclassOf_m44227A841087B57FEF50B3DCA85CCEC3452C0AA0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_IsValueTypeImpl_m4B1E66F4618C4EA806BC1E16CA4BC8C22C41F0EE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_MakeArrayType_mA247B3102DE693345AE335522DC8F080E720DCB1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_MakeArrayType_mE93BD65B2F3CDB539823B0763328A0E4EF5FBEA5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_MakeByRefType_m491343FED49D189A01971718113DC5C1CCB3AB5B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_MakeGenericType_m345117714886CAD8E324AD1DDCBB6E9291E9DB9A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_MakePointerType_m78A90E40DC58D6C1D9BD7F5D7B577F3C3E5316BE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_ToString_mB05ECF84C3BDDB4DA0317A34080AD633DE678B11_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type__cctor_m518A008233352C5E9FBF9E165B0C3CE81ACF0036_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_get_DefaultBinder_mC8C8679D5EDC53BA5DCDD8AF7FAD01C89246AEE0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_get_GenericParameterAttributes_m043281693416BED855BD243DBD5328BC69A3CAA9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_get_GenericParameterPosition_m0E7DF7C74C99BCAF03F594E1701D0FD49D998E12_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_get_IsEnum_m2DE7827AE637AA14FCF4629C91A6CBE47DD05EAE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_get_IsNested_m0191026EDE15331C2DD97FC106E1C86825722F37_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_get_IsSerializable_mBCC47F349F6680EB15E30D246FB4A2764251C376_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Type_get_TypeHandle_m8D0407AB28EFD8B1C09342CFEF5CCC16D6F5FE52_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CDelayU3Eb__276_0_m5AB12E46C061368D100FF6C69F9D056E65A6AE2C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CDelayU3Eb__276_1_m54F939B4DD3A17936C0D754419E2A01555DB8D6A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3CRunU3Eb__2_0_m09230CC3C4A5FF796AD9270851A6F374D8FC23BE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec_U3C_cctorU3Eb__295_0_mDCF5EBEFFB333327107E40BF44507418FE7BBFDD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__DisplayClass178_0_U3CExecuteSelfReplicatingU3Eb__0_mAF07405204F1F6B3977A5E367931D33F38CAB548_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_m14A2B19DAD1F9934C7714F31E34E70544869F269_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_m2D7750984A62617B14017CACA194D80006EAF1BE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t U3CU3Ec__cctor_mD421A18D7B3D53CD889B2E9FB6B14A042E480477_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t UnobservedTaskExceptionEventArgs__ctor_mD866CEFA881E8B9F5C7FB00C62B3575E97BFEED3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandleCannotBeOpenedException__ctor_m7A3521D80FAFFDEE0AA1DAE1C9CE3D643AEA0C6D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_Close_m40287CC581A72F1CB4882656D4F91ADDCF5C5434_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_Dispose_m47D6F15A6D36EFBF147D238B794AE6436FD5159C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_Init_m63320FFB796EB59BF6217787185DD0B9BCE7C6FD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_InternalWaitOne_m14CF12240D30C25A6C34683080C5A0D982786303_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_ThrowAbandonedMutexException_m4AFC4FEDCA7C3EF6E1C04D4176ABA49CC728224C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_ThrowAbandonedMutexException_m69BB8B9A409789BDFA844B2A06303CCB3FD3A69C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_WaitAny_m1CA2DEBC40AB9BAF7ADDC0921B2AC332FA44AB1E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_WaitAny_mB3F8C574D50E2EC2D056A731B86BC2284D1B85CB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_WaitMultiple_mAE04CACC2ADB312E42B0DF0E09EAB1744B50441E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_WaitOneNative_mC25327F2B99DBB404B62FD48CFCBDB3244F82434_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_WaitOne_m0E8BFEEF95DC452E7C5A17DCA57D24F38FF7C467_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_WaitOne_m6283DC18BCD374B579549B156DD30AAA74E64C89_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle__cctor_m007CFC1D3AC126BF18F2000C962A2C73EB73D671_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_get_SafeWaitHandle_m9BA6EA0D8DBD059147DE77EE1E36181EEB5A8AB1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_set_Handle_m174F142FBE3A6EBEF358B389AE825BF2569C2389_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_com_FromNativeMethodDefinition_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_pinvoke_FromNativeMethodDefinition_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WaitOrTimerCallback_BeginInvoke_m86C8EC9E231C1076272729D07B6331A3253150CF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WorkStealingQueue_LocalPush_mF4807971CDD7F6089AADF28173FEDDDFF4E96455_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t WorkStealingQueue__ctor_m5A30B12A759E1174AB423856CECBF73B5A5FA91A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t _ThreadPoolWaitCallback_PerformWaitCallback_mD77C78004E606A2556E66C0D674100581F264C58_MetadataUsageId; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke; struct DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F;; struct DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke; struct DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke;; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811;; struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com; struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com;; struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke; struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke;; struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F; struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; struct ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209; struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE; struct MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6; struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B; struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA; struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E; struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; struct IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154; struct WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9; struct WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC; struct AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD; struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // Microsoft.Win32.Registry struct Registry_t241E9489A52A385888DBC941B714B48401DBB28E : public RuntimeObject { public: public: }; struct Registry_t241E9489A52A385888DBC941B714B48401DBB28E_StaticFields { public: // Microsoft.Win32.RegistryKey Microsoft.Win32.Registry::ClassesRoot RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___ClassesRoot_0; // Microsoft.Win32.RegistryKey Microsoft.Win32.Registry::CurrentConfig RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___CurrentConfig_1; // Microsoft.Win32.RegistryKey Microsoft.Win32.Registry::CurrentUser RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___CurrentUser_2; // Microsoft.Win32.RegistryKey Microsoft.Win32.Registry::DynData RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___DynData_3; // Microsoft.Win32.RegistryKey Microsoft.Win32.Registry::LocalMachine RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___LocalMachine_4; // Microsoft.Win32.RegistryKey Microsoft.Win32.Registry::PerformanceData RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___PerformanceData_5; // Microsoft.Win32.RegistryKey Microsoft.Win32.Registry::Users RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___Users_6; public: inline static int32_t get_offset_of_ClassesRoot_0() { return static_cast<int32_t>(offsetof(Registry_t241E9489A52A385888DBC941B714B48401DBB28E_StaticFields, ___ClassesRoot_0)); } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * get_ClassesRoot_0() const { return ___ClassesRoot_0; } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 ** get_address_of_ClassesRoot_0() { return &___ClassesRoot_0; } inline void set_ClassesRoot_0(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * value) { ___ClassesRoot_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassesRoot_0), (void*)value); } inline static int32_t get_offset_of_CurrentConfig_1() { return static_cast<int32_t>(offsetof(Registry_t241E9489A52A385888DBC941B714B48401DBB28E_StaticFields, ___CurrentConfig_1)); } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * get_CurrentConfig_1() const { return ___CurrentConfig_1; } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 ** get_address_of_CurrentConfig_1() { return &___CurrentConfig_1; } inline void set_CurrentConfig_1(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * value) { ___CurrentConfig_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___CurrentConfig_1), (void*)value); } inline static int32_t get_offset_of_CurrentUser_2() { return static_cast<int32_t>(offsetof(Registry_t241E9489A52A385888DBC941B714B48401DBB28E_StaticFields, ___CurrentUser_2)); } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * get_CurrentUser_2() const { return ___CurrentUser_2; } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 ** get_address_of_CurrentUser_2() { return &___CurrentUser_2; } inline void set_CurrentUser_2(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * value) { ___CurrentUser_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___CurrentUser_2), (void*)value); } inline static int32_t get_offset_of_DynData_3() { return static_cast<int32_t>(offsetof(Registry_t241E9489A52A385888DBC941B714B48401DBB28E_StaticFields, ___DynData_3)); } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * get_DynData_3() const { return ___DynData_3; } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 ** get_address_of_DynData_3() { return &___DynData_3; } inline void set_DynData_3(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * value) { ___DynData_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___DynData_3), (void*)value); } inline static int32_t get_offset_of_LocalMachine_4() { return static_cast<int32_t>(offsetof(Registry_t241E9489A52A385888DBC941B714B48401DBB28E_StaticFields, ___LocalMachine_4)); } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * get_LocalMachine_4() const { return ___LocalMachine_4; } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 ** get_address_of_LocalMachine_4() { return &___LocalMachine_4; } inline void set_LocalMachine_4(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * value) { ___LocalMachine_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___LocalMachine_4), (void*)value); } inline static int32_t get_offset_of_PerformanceData_5() { return static_cast<int32_t>(offsetof(Registry_t241E9489A52A385888DBC941B714B48401DBB28E_StaticFields, ___PerformanceData_5)); } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * get_PerformanceData_5() const { return ___PerformanceData_5; } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 ** get_address_of_PerformanceData_5() { return &___PerformanceData_5; } inline void set_PerformanceData_5(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * value) { ___PerformanceData_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___PerformanceData_5), (void*)value); } inline static int32_t get_offset_of_Users_6() { return static_cast<int32_t>(offsetof(Registry_t241E9489A52A385888DBC941B714B48401DBB28E_StaticFields, ___Users_6)); } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * get_Users_6() const { return ___Users_6; } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 ** get_address_of_Users_6() { return &___Users_6; } inline void set_Users_6(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * value) { ___Users_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Users_6), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.BitConverter struct BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE : public RuntimeObject { public: public: }; struct BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields { public: // System.Boolean System.BitConverter::IsLittleEndian bool ___IsLittleEndian_0; public: inline static int32_t get_offset_of_IsLittleEndian_0() { return static_cast<int32_t>(offsetof(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields, ___IsLittleEndian_0)); } inline bool get_IsLittleEndian_0() const { return ___IsLittleEndian_0; } inline bool* get_address_of_IsLittleEndian_0() { return &___IsLittleEndian_0; } inline void set_IsLittleEndian_0(bool value) { ___IsLittleEndian_0 = value; } }; // System.Collections.Comparer struct Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B : public RuntimeObject { public: // System.Globalization.CompareInfo System.Collections.Comparer::m_compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_compareInfo_0; public: inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast<int32_t>(offsetof(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B, ___m_compareInfo_0)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_m_compareInfo_0() const { return ___m_compareInfo_0; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; } inline void set_m_compareInfo_0(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___m_compareInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value); } }; struct Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields { public: // System.Collections.Comparer System.Collections.Comparer::Default Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * ___Default_1; // System.Collections.Comparer System.Collections.Comparer::DefaultInvariant Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * ___DefaultInvariant_2; public: inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields, ___Default_1)); } inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * get_Default_1() const { return ___Default_1; } inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value); } inline static int32_t get_offset_of_DefaultInvariant_2() { return static_cast<int32_t>(offsetof(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields, ___DefaultInvariant_2)); } inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * get_DefaultInvariant_2() const { return ___DefaultInvariant_2; } inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B ** get_address_of_DefaultInvariant_2() { return &___DefaultInvariant_2; } inline void set_DefaultInvariant_2(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * value) { ___DefaultInvariant_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultInvariant_2), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.String> struct Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___entries_1)); } inline EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___keys_7)); } inline KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * get_keys_7() const { return ___keys_7; } inline KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___values_8)); } inline ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * get_values_8() const { return ___values_8; } inline ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType> struct Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tE10945BABF6C8713BFFE8B1BE29C42BFEBCC0A23* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tB25B793043188B05B5EDA66FE436CA860742E601 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t8FDF62D6CA4259E5733AB7ABFC11F082D955414B * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2, ___entries_1)); } inline EntryU5BU5D_tE10945BABF6C8713BFFE8B1BE29C42BFEBCC0A23* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tE10945BABF6C8713BFFE8B1BE29C42BFEBCC0A23** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tE10945BABF6C8713BFFE8B1BE29C42BFEBCC0A23* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2, ___keys_7)); } inline KeyCollection_tB25B793043188B05B5EDA66FE436CA860742E601 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tB25B793043188B05B5EDA66FE436CA860742E601 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tB25B793043188B05B5EDA66FE436CA860742E601 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2, ___values_8)); } inline ValueCollection_t8FDF62D6CA4259E5733AB7ABFC11F082D955414B * get_values_8() const { return ___values_8; } inline ValueCollection_t8FDF62D6CA4259E5733AB7ABFC11F082D955414B ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t8FDF62D6CA4259E5733AB7ABFC11F082D955414B * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>> struct List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1, ____items_1)); } inline KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* get__items_1() const { return ____items_1; } inline KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F** get_address_of__items_1() { return &____items_1; } inline void set__items_1(KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1_StaticFields, ____emptyArray_5)); } inline KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* get__emptyArray_5() const { return ____emptyArray_5; } inline KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>> struct List_1_tD2FC74CFEE011F74F31183756A690154468817E9 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items KeyValuePair_2U5BU5D_tAA010A71A6AC97DFA9B2E84B954765E51A27236C* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tD2FC74CFEE011F74F31183756A690154468817E9, ____items_1)); } inline KeyValuePair_2U5BU5D_tAA010A71A6AC97DFA9B2E84B954765E51A27236C* get__items_1() const { return ____items_1; } inline KeyValuePair_2U5BU5D_tAA010A71A6AC97DFA9B2E84B954765E51A27236C** get_address_of__items_1() { return &____items_1; } inline void set__items_1(KeyValuePair_2U5BU5D_tAA010A71A6AC97DFA9B2E84B954765E51A27236C* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tD2FC74CFEE011F74F31183756A690154468817E9, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tD2FC74CFEE011F74F31183756A690154468817E9, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tD2FC74CFEE011F74F31183756A690154468817E9, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tD2FC74CFEE011F74F31183756A690154468817E9_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray KeyValuePair_2U5BU5D_tAA010A71A6AC97DFA9B2E84B954765E51A27236C* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tD2FC74CFEE011F74F31183756A690154468817E9_StaticFields, ____emptyArray_5)); } inline KeyValuePair_2U5BU5D_tAA010A71A6AC97DFA9B2E84B954765E51A27236C* get__emptyArray_5() const { return ____emptyArray_5; } inline KeyValuePair_2U5BU5D_tAA010A71A6AC97DFA9B2E84B954765E51A27236C** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(KeyValuePair_2U5BU5D_tAA010A71A6AC97DFA9B2E84B954765E51A27236C* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Object> struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> struct List_1_tCD04260AE1254C438132446F1E6892AB86D18743 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tCD04260AE1254C438132446F1E6892AB86D18743, ____items_1)); } inline ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* get__items_1() const { return ____items_1; } inline ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tCD04260AE1254C438132446F1E6892AB86D18743, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tCD04260AE1254C438132446F1E6892AB86D18743, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tCD04260AE1254C438132446F1E6892AB86D18743, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tCD04260AE1254C438132446F1E6892AB86D18743_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tCD04260AE1254C438132446F1E6892AB86D18743_StaticFields, ____emptyArray_5)); } inline ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* get__emptyArray_5() const { return ____emptyArray_5; } inline ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ExceptionDispatchInfoU5BU5D_tAF0992800B1E727A3311A160A519F842B8E28DFF* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Threading.Timer> struct List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TimerU5BU5D_tD0E2F3FBF7687B24301E6EAC84AEC44386CB5F7A* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116, ____items_1)); } inline TimerU5BU5D_tD0E2F3FBF7687B24301E6EAC84AEC44386CB5F7A* get__items_1() const { return ____items_1; } inline TimerU5BU5D_tD0E2F3FBF7687B24301E6EAC84AEC44386CB5F7A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TimerU5BU5D_tD0E2F3FBF7687B24301E6EAC84AEC44386CB5F7A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TimerU5BU5D_tD0E2F3FBF7687B24301E6EAC84AEC44386CB5F7A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116_StaticFields, ____emptyArray_5)); } inline TimerU5BU5D_tD0E2F3FBF7687B24301E6EAC84AEC44386CB5F7A* get__emptyArray_5() const { return ____emptyArray_5; } inline TimerU5BU5D_tD0E2F3FBF7687B24301E6EAC84AEC44386CB5F7A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TimerU5BU5D_tD0E2F3FBF7687B24301E6EAC84AEC44386CB5F7A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.TimeZoneInfo_AdjustmentRule> struct List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E, ____items_1)); } inline AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* get__items_1() const { return ____items_1; } inline AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD** get_address_of__items_1() { return &____items_1; } inline void set__items_1(AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E_StaticFields, ____emptyArray_5)); } inline AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* get__emptyArray_5() const { return ____emptyArray_5; } inline AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.TimeZoneInfo> struct List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TimeZoneInfoU5BU5D_t3651149D75C21234FEBE23046A2E2FF4AB531D94* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD, ____items_1)); } inline TimeZoneInfoU5BU5D_t3651149D75C21234FEBE23046A2E2FF4AB531D94* get__items_1() const { return ____items_1; } inline TimeZoneInfoU5BU5D_t3651149D75C21234FEBE23046A2E2FF4AB531D94** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TimeZoneInfoU5BU5D_t3651149D75C21234FEBE23046A2E2FF4AB531D94* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TimeZoneInfoU5BU5D_t3651149D75C21234FEBE23046A2E2FF4AB531D94* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD_StaticFields, ____emptyArray_5)); } inline TimeZoneInfoU5BU5D_t3651149D75C21234FEBE23046A2E2FF4AB531D94* get__emptyArray_5() const { return ____emptyArray_5; } inline TimeZoneInfoU5BU5D_t3651149D75C21234FEBE23046A2E2FF4AB531D94** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TimeZoneInfoU5BU5D_t3651149D75C21234FEBE23046A2E2FF4AB531D94* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> struct ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } }; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> struct ReadOnlyCollection_1_t5DE493537EE0E554797BF0DA823DCBF1903CECC1 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t5DE493537EE0E554797BF0DA823DCBF1903CECC1, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } }; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo> struct ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 : public RuntimeObject { public: // System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0, ___list_0)); } inline RuntimeObject* get_list_0() const { return ___list_0; } inline RuntimeObject** get_address_of_list_0() { return &___list_0; } inline void set_list_0(RuntimeObject* value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } }; // System.Collections.SortedList struct SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E : public RuntimeObject { public: // System.Object[] System.Collections.SortedList::keys ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys_0; // System.Object[] System.Collections.SortedList::values ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values_1; // System.Int32 System.Collections.SortedList::_size int32_t ____size_2; // System.Int32 System.Collections.SortedList::version int32_t ___version_3; // System.Collections.IComparer System.Collections.SortedList::comparer RuntimeObject* ___comparer_4; public: inline static int32_t get_offset_of_keys_0() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___keys_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_keys_0() const { return ___keys_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_keys_0() { return &___keys_0; } inline void set_keys_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___keys_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_0), (void*)value); } inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___values_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_values_1() const { return ___values_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_values_1() { return &___values_1; } inline void set_values_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___values_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_comparer_4() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___comparer_4)); } inline RuntimeObject* get_comparer_4() const { return ___comparer_4; } inline RuntimeObject** get_address_of_comparer_4() { return &___comparer_4; } inline void set_comparer_4(RuntimeObject* value) { ___comparer_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_4), (void*)value); } }; struct SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_StaticFields { public: // System.Object[] System.Collections.SortedList::emptyArray ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___emptyArray_5; public: inline static int32_t get_offset_of_emptyArray_5() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_StaticFields, ___emptyArray_5)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_emptyArray_5() const { return ___emptyArray_5; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_emptyArray_5() { return &___emptyArray_5; } inline void set_emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___emptyArray_5), (void*)value); } }; // System.CompatibilitySwitches struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91 : public RuntimeObject { public: public: }; struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields { public: // System.Boolean System.CompatibilitySwitches::IsAppEarlierThanSilverlight4 bool ___IsAppEarlierThanSilverlight4_0; // System.Boolean System.CompatibilitySwitches::IsAppEarlierThanWindowsPhone8 bool ___IsAppEarlierThanWindowsPhone8_1; public: inline static int32_t get_offset_of_IsAppEarlierThanSilverlight4_0() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanSilverlight4_0)); } inline bool get_IsAppEarlierThanSilverlight4_0() const { return ___IsAppEarlierThanSilverlight4_0; } inline bool* get_address_of_IsAppEarlierThanSilverlight4_0() { return &___IsAppEarlierThanSilverlight4_0; } inline void set_IsAppEarlierThanSilverlight4_0(bool value) { ___IsAppEarlierThanSilverlight4_0 = value; } inline static int32_t get_offset_of_IsAppEarlierThanWindowsPhone8_1() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields, ___IsAppEarlierThanWindowsPhone8_1)); } inline bool get_IsAppEarlierThanWindowsPhone8_1() const { return ___IsAppEarlierThanWindowsPhone8_1; } inline bool* get_address_of_IsAppEarlierThanWindowsPhone8_1() { return &___IsAppEarlierThanWindowsPhone8_1; } inline void set_IsAppEarlierThanWindowsPhone8_1(bool value) { ___IsAppEarlierThanWindowsPhone8_1 = value; } }; // System.EmptyArray`1<System.Type> struct EmptyArray_1_tF085172BB5E018A03FB07E8EEAFCD3D8F7EB784D : public RuntimeObject { public: public: }; struct EmptyArray_1_tF085172BB5E018A03FB07E8EEAFCD3D8F7EB784D_StaticFields { public: // T[] System.EmptyArray`1::Value TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tF085172BB5E018A03FB07E8EEAFCD3D8F7EB784D_StaticFields, ___Value_0)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_Value_0() const { return ___Value_0; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.EventArgs struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E : public RuntimeObject { public: public: }; struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields { public: // System.EventArgs System.EventArgs::Empty EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___Empty_0; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields, ___Empty_0)); } inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * get_Empty_0() const { return ___Empty_0; } inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E ** get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * value) { ___Empty_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value); } }; // System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_3; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_4; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_5; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_6; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_7; // System.Int32 System.Globalization.CultureInfo::default_calendar_type int32_t ___default_calendar_type_8; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_13; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_14; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_15; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_16; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_17; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_18; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_19; // System.String[] System.Globalization.CultureInfo::native_calendar_names StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_22; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_23; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; public: inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); } inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; } inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; } inline void set_m_isReadOnly_3(bool value) { ___m_isReadOnly_3 = value; } inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); } inline int32_t get_cultureID_4() const { return ___cultureID_4; } inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; } inline void set_cultureID_4(int32_t value) { ___cultureID_4 = value; } inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); } inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; } inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; } inline void set_parent_lcid_5(int32_t value) { ___parent_lcid_5 = value; } inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); } inline int32_t get_datetime_index_6() const { return ___datetime_index_6; } inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; } inline void set_datetime_index_6(int32_t value) { ___datetime_index_6 = value; } inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); } inline int32_t get_number_index_7() const { return ___number_index_7; } inline int32_t* get_address_of_number_index_7() { return &___number_index_7; } inline void set_number_index_7(int32_t value) { ___number_index_7 = value; } inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); } inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; } inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; } inline void set_default_calendar_type_8(int32_t value) { ___default_calendar_type_8 = value; } inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); } inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; } inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; } inline void set_m_useUserOverride_9(bool value) { ___m_useUserOverride_9 = value; } inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; } inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value) { ___numInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value); } inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; } inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value) { ___dateTimeInfo_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value); } inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; } inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___textInfo_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value); } inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); } inline String_t* get_m_name_13() const { return ___m_name_13; } inline String_t** get_address_of_m_name_13() { return &___m_name_13; } inline void set_m_name_13(String_t* value) { ___m_name_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value); } inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); } inline String_t* get_englishname_14() const { return ___englishname_14; } inline String_t** get_address_of_englishname_14() { return &___englishname_14; } inline void set_englishname_14(String_t* value) { ___englishname_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value); } inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); } inline String_t* get_nativename_15() const { return ___nativename_15; } inline String_t** get_address_of_nativename_15() { return &___nativename_15; } inline void set_nativename_15(String_t* value) { ___nativename_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value); } inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); } inline String_t* get_iso3lang_16() const { return ___iso3lang_16; } inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; } inline void set_iso3lang_16(String_t* value) { ___iso3lang_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value); } inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); } inline String_t* get_iso2lang_17() const { return ___iso2lang_17; } inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; } inline void set_iso2lang_17(String_t* value) { ___iso2lang_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value); } inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); } inline String_t* get_win3lang_18() const { return ___win3lang_18; } inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; } inline void set_win3lang_18(String_t* value) { ___win3lang_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value); } inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); } inline String_t* get_territory_19() const { return ___territory_19; } inline String_t** get_address_of_territory_19() { return &___territory_19; } inline void set_territory_19(String_t* value) { ___territory_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value); } inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; } inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___native_calendar_names_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value); } inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; } inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___compareInfo_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value); } inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); } inline void* get_textinfo_data_22() const { return ___textinfo_data_22; } inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; } inline void set_textinfo_data_22(void* value) { ___textinfo_data_22 = value; } inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); } inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; } inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; } inline void set_m_dataItem_23(int32_t value) { ___m_dataItem_23 = value; } inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; } inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value) { ___calendar_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value); } inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; } inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___parent_culture_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value); } inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); } inline bool get_constructed_26() const { return ___constructed_26; } inline bool* get_address_of_constructed_26() { return &___constructed_26; } inline void set_constructed_26(bool value) { ___constructed_26 = value; } inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; } inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___cached_serialized_form_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value); } inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; } inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value) { ___m_cultureData_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value); } inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); } inline bool get_m_isInherited_29() const { return ___m_isInherited_29; } inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; } inline void set_m_isInherited_29(bool value) { ___m_isInherited_29 = value; } }; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_1; // System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_37; public: inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; } inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___invariant_culture_info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value); } inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); } inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; } inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; } inline void set_shared_table_lock_1(RuntimeObject * value) { ___shared_table_lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value); } inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; } inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___default_current_culture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; } inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentUICulture_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; } inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentCulture_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value); } inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; } inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value) { ___shared_by_number_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value); } inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; } inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value) { ___shared_by_name_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value); } inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); } inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; } inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; } inline void set_IsTaiwanSku_37(bool value) { ___IsTaiwanSku_37 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.IO.Path struct Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752 : public RuntimeObject { public: public: }; struct Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields { public: // System.Char[] System.IO.Path::InvalidPathChars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___InvalidPathChars_0; // System.Char System.IO.Path::AltDirectorySeparatorChar Il2CppChar ___AltDirectorySeparatorChar_1; // System.Char System.IO.Path::DirectorySeparatorChar Il2CppChar ___DirectorySeparatorChar_2; // System.Char System.IO.Path::PathSeparator Il2CppChar ___PathSeparator_3; // System.String System.IO.Path::DirectorySeparatorStr String_t* ___DirectorySeparatorStr_4; // System.Char System.IO.Path::VolumeSeparatorChar Il2CppChar ___VolumeSeparatorChar_5; // System.Char[] System.IO.Path::PathSeparatorChars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___PathSeparatorChars_6; // System.Boolean System.IO.Path::dirEqualsVolume bool ___dirEqualsVolume_7; // System.Char[] System.IO.Path::trimEndCharsWindows CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___trimEndCharsWindows_8; // System.Char[] System.IO.Path::trimEndCharsUnix CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___trimEndCharsUnix_9; public: inline static int32_t get_offset_of_InvalidPathChars_0() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___InvalidPathChars_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_InvalidPathChars_0() const { return ___InvalidPathChars_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_InvalidPathChars_0() { return &___InvalidPathChars_0; } inline void set_InvalidPathChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___InvalidPathChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___InvalidPathChars_0), (void*)value); } inline static int32_t get_offset_of_AltDirectorySeparatorChar_1() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___AltDirectorySeparatorChar_1)); } inline Il2CppChar get_AltDirectorySeparatorChar_1() const { return ___AltDirectorySeparatorChar_1; } inline Il2CppChar* get_address_of_AltDirectorySeparatorChar_1() { return &___AltDirectorySeparatorChar_1; } inline void set_AltDirectorySeparatorChar_1(Il2CppChar value) { ___AltDirectorySeparatorChar_1 = value; } inline static int32_t get_offset_of_DirectorySeparatorChar_2() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___DirectorySeparatorChar_2)); } inline Il2CppChar get_DirectorySeparatorChar_2() const { return ___DirectorySeparatorChar_2; } inline Il2CppChar* get_address_of_DirectorySeparatorChar_2() { return &___DirectorySeparatorChar_2; } inline void set_DirectorySeparatorChar_2(Il2CppChar value) { ___DirectorySeparatorChar_2 = value; } inline static int32_t get_offset_of_PathSeparator_3() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___PathSeparator_3)); } inline Il2CppChar get_PathSeparator_3() const { return ___PathSeparator_3; } inline Il2CppChar* get_address_of_PathSeparator_3() { return &___PathSeparator_3; } inline void set_PathSeparator_3(Il2CppChar value) { ___PathSeparator_3 = value; } inline static int32_t get_offset_of_DirectorySeparatorStr_4() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___DirectorySeparatorStr_4)); } inline String_t* get_DirectorySeparatorStr_4() const { return ___DirectorySeparatorStr_4; } inline String_t** get_address_of_DirectorySeparatorStr_4() { return &___DirectorySeparatorStr_4; } inline void set_DirectorySeparatorStr_4(String_t* value) { ___DirectorySeparatorStr_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___DirectorySeparatorStr_4), (void*)value); } inline static int32_t get_offset_of_VolumeSeparatorChar_5() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___VolumeSeparatorChar_5)); } inline Il2CppChar get_VolumeSeparatorChar_5() const { return ___VolumeSeparatorChar_5; } inline Il2CppChar* get_address_of_VolumeSeparatorChar_5() { return &___VolumeSeparatorChar_5; } inline void set_VolumeSeparatorChar_5(Il2CppChar value) { ___VolumeSeparatorChar_5 = value; } inline static int32_t get_offset_of_PathSeparatorChars_6() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___PathSeparatorChars_6)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_PathSeparatorChars_6() const { return ___PathSeparatorChars_6; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_PathSeparatorChars_6() { return &___PathSeparatorChars_6; } inline void set_PathSeparatorChars_6(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___PathSeparatorChars_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___PathSeparatorChars_6), (void*)value); } inline static int32_t get_offset_of_dirEqualsVolume_7() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___dirEqualsVolume_7)); } inline bool get_dirEqualsVolume_7() const { return ___dirEqualsVolume_7; } inline bool* get_address_of_dirEqualsVolume_7() { return &___dirEqualsVolume_7; } inline void set_dirEqualsVolume_7(bool value) { ___dirEqualsVolume_7 = value; } inline static int32_t get_offset_of_trimEndCharsWindows_8() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___trimEndCharsWindows_8)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_trimEndCharsWindows_8() const { return ___trimEndCharsWindows_8; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_trimEndCharsWindows_8() { return &___trimEndCharsWindows_8; } inline void set_trimEndCharsWindows_8(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___trimEndCharsWindows_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___trimEndCharsWindows_8), (void*)value); } inline static int32_t get_offset_of_trimEndCharsUnix_9() { return static_cast<int32_t>(offsetof(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields, ___trimEndCharsUnix_9)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_trimEndCharsUnix_9() const { return ___trimEndCharsUnix_9; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_trimEndCharsUnix_9() { return &___trimEndCharsUnix_9; } inline void set_trimEndCharsUnix_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___trimEndCharsUnix_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___trimEndCharsUnix_9), (void*)value); } }; // System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Random struct Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F : public RuntimeObject { public: // System.Int32 System.Random::inext int32_t ___inext_0; // System.Int32 System.Random::inextp int32_t ___inextp_1; // System.Int32[] System.Random::SeedArray Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___SeedArray_2; public: inline static int32_t get_offset_of_inext_0() { return static_cast<int32_t>(offsetof(Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F, ___inext_0)); } inline int32_t get_inext_0() const { return ___inext_0; } inline int32_t* get_address_of_inext_0() { return &___inext_0; } inline void set_inext_0(int32_t value) { ___inext_0 = value; } inline static int32_t get_offset_of_inextp_1() { return static_cast<int32_t>(offsetof(Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F, ___inextp_1)); } inline int32_t get_inextp_1() const { return ___inextp_1; } inline int32_t* get_address_of_inextp_1() { return &___inextp_1; } inline void set_inextp_1(int32_t value) { ___inextp_1 = value; } inline static int32_t get_offset_of_SeedArray_2() { return static_cast<int32_t>(offsetof(Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F, ___SeedArray_2)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_SeedArray_2() const { return ___SeedArray_2; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_SeedArray_2() { return &___SeedArray_2; } inline void set_SeedArray_2(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___SeedArray_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___SeedArray_2), (void*)value); } }; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 : public RuntimeObject { public: public: }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.Reflection.Missing struct Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7 : public RuntimeObject { public: public: }; struct Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7_StaticFields { public: // System.Reflection.Missing System.Reflection.Missing::Value Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7 * ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7_StaticFields, ___Value_0)); } inline Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7 * get_Value_0() const { return ___Value_0; } inline Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7 ** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7 * value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object> struct ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C : public RuntimeObject { public: // System.Runtime.CompilerServices.Ephemeron[] System.Runtime.CompilerServices.ConditionalWeakTable`2::data EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* ___data_0; // System.Object System.Runtime.CompilerServices.ConditionalWeakTable`2::_lock RuntimeObject * ____lock_1; // System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable`2::size int32_t ___size_2; public: inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C, ___data_0)); } inline EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* get_data_0() const { return ___data_0; } inline EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10** get_address_of_data_0() { return &___data_0; } inline void set_data_0(EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* value) { ___data_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_0), (void*)value); } inline static int32_t get_offset_of__lock_1() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C, ____lock_1)); } inline RuntimeObject * get__lock_1() const { return ____lock_1; } inline RuntimeObject ** get_address_of__lock_1() { return &____lock_1; } inline void set__lock_1(RuntimeObject * value) { ____lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____lock_1), (void*)value); } inline static int32_t get_offset_of_size_2() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C, ___size_2)); } inline int32_t get_size_2() const { return ___size_2; } inline int32_t* get_address_of_size_2() { return &___size_2; } inline void set_size_2(int32_t value) { ___size_2 = value; } }; // System.Runtime.ConstrainedExecution.CriticalFinalizerObject struct CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 : public RuntimeObject { public: public: }; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A : public RuntimeObject { public: // System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_Exception Exception_t * ___m_Exception_0; // System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_stackTrace RuntimeObject * ___m_stackTrace_1; public: inline static int32_t get_offset_of_m_Exception_0() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___m_Exception_0)); } inline Exception_t * get_m_Exception_0() const { return ___m_Exception_0; } inline Exception_t ** get_address_of_m_Exception_0() { return &___m_Exception_0; } inline void set_m_Exception_0(Exception_t * value) { ___m_Exception_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Exception_0), (void*)value); } inline static int32_t get_offset_of_m_stackTrace_1() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___m_stackTrace_1)); } inline RuntimeObject * get_m_stackTrace_1() const { return ___m_stackTrace_1; } inline RuntimeObject ** get_address_of_m_stackTrace_1() { return &___m_stackTrace_1; } inline void set_m_stackTrace_1(RuntimeObject * value) { ___m_stackTrace_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stackTrace_1), (void*)value); } }; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 : public RuntimeObject { public: // System.String[] System.Runtime.Serialization.SerializationInfo::m_members StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_3; // System.Object[] System.Runtime.Serialization.SerializationInfo::m_data ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_4; // System.Type[] System.Runtime.Serialization.SerializationInfo::m_types TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_5; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___m_nameToIndex_6; // System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember int32_t ___m_currMember_7; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter RuntimeObject* ___m_converter_8; // System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName String_t* ___m_fullTypeName_9; // System.String System.Runtime.Serialization.SerializationInfo::m_assemName String_t* ___m_assemName_10; // System.Type System.Runtime.Serialization.SerializationInfo::objectType Type_t * ___objectType_11; // System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit bool ___isFullTypeNameSetExplicit_12; // System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit bool ___isAssemblyNameSetExplicit_13; // System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust bool ___requireSameTokenInPartialTrust_14; public: inline static int32_t get_offset_of_m_members_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_members_3)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_3() const { return ___m_members_3; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_3() { return &___m_members_3; } inline void set_m_members_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_members_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_members_3), (void*)value); } inline static int32_t get_offset_of_m_data_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_data_4)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_4() const { return ___m_data_4; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_4() { return &___m_data_4; } inline void set_m_data_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___m_data_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_data_4), (void*)value); } inline static int32_t get_offset_of_m_types_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_types_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_5() const { return ___m_types_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_5() { return &___m_types_5; } inline void set_m_types_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___m_types_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_types_5), (void*)value); } inline static int32_t get_offset_of_m_nameToIndex_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_nameToIndex_6)); } inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_m_nameToIndex_6() const { return ___m_nameToIndex_6; } inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_m_nameToIndex_6() { return &___m_nameToIndex_6; } inline void set_m_nameToIndex_6(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value) { ___m_nameToIndex_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_nameToIndex_6), (void*)value); } inline static int32_t get_offset_of_m_currMember_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_currMember_7)); } inline int32_t get_m_currMember_7() const { return ___m_currMember_7; } inline int32_t* get_address_of_m_currMember_7() { return &___m_currMember_7; } inline void set_m_currMember_7(int32_t value) { ___m_currMember_7 = value; } inline static int32_t get_offset_of_m_converter_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_converter_8)); } inline RuntimeObject* get_m_converter_8() const { return ___m_converter_8; } inline RuntimeObject** get_address_of_m_converter_8() { return &___m_converter_8; } inline void set_m_converter_8(RuntimeObject* value) { ___m_converter_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_converter_8), (void*)value); } inline static int32_t get_offset_of_m_fullTypeName_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_fullTypeName_9)); } inline String_t* get_m_fullTypeName_9() const { return ___m_fullTypeName_9; } inline String_t** get_address_of_m_fullTypeName_9() { return &___m_fullTypeName_9; } inline void set_m_fullTypeName_9(String_t* value) { ___m_fullTypeName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fullTypeName_9), (void*)value); } inline static int32_t get_offset_of_m_assemName_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_assemName_10)); } inline String_t* get_m_assemName_10() const { return ___m_assemName_10; } inline String_t** get_address_of_m_assemName_10() { return &___m_assemName_10; } inline void set_m_assemName_10(String_t* value) { ___m_assemName_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_assemName_10), (void*)value); } inline static int32_t get_offset_of_objectType_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___objectType_11)); } inline Type_t * get_objectType_11() const { return ___objectType_11; } inline Type_t ** get_address_of_objectType_11() { return &___objectType_11; } inline void set_objectType_11(Type_t * value) { ___objectType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___objectType_11), (void*)value); } inline static int32_t get_offset_of_isFullTypeNameSetExplicit_12() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isFullTypeNameSetExplicit_12)); } inline bool get_isFullTypeNameSetExplicit_12() const { return ___isFullTypeNameSetExplicit_12; } inline bool* get_address_of_isFullTypeNameSetExplicit_12() { return &___isFullTypeNameSetExplicit_12; } inline void set_isFullTypeNameSetExplicit_12(bool value) { ___isFullTypeNameSetExplicit_12 = value; } inline static int32_t get_offset_of_isAssemblyNameSetExplicit_13() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isAssemblyNameSetExplicit_13)); } inline bool get_isAssemblyNameSetExplicit_13() const { return ___isAssemblyNameSetExplicit_13; } inline bool* get_address_of_isAssemblyNameSetExplicit_13() { return &___isAssemblyNameSetExplicit_13; } inline void set_isAssemblyNameSetExplicit_13(bool value) { ___isAssemblyNameSetExplicit_13 = value; } inline static int32_t get_offset_of_requireSameTokenInPartialTrust_14() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___requireSameTokenInPartialTrust_14)); } inline bool get_requireSameTokenInPartialTrust_14() const { return ___requireSameTokenInPartialTrust_14; } inline bool* get_address_of_requireSameTokenInPartialTrust_14() { return &___requireSameTokenInPartialTrust_14; } inline void set_requireSameTokenInPartialTrust_14(bool value) { ___requireSameTokenInPartialTrust_14 = value; } }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_10; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_11; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_12; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14; public: inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_9)); } inline int32_t get_m_codePage_9() const { return ___m_codePage_9; } inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; } inline void set_m_codePage_9(int32_t value) { ___m_codePage_9 = value; } inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; } inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value) { ___dataItem_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value); } inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_11)); } inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; } inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; } inline void set_m_deserializedFromEverett_11(bool value) { ___m_deserializedFromEverett_11 = value; } inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_12)); } inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; } inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; } inline void set_m_isReadOnly_12(bool value) { ___m_isReadOnly_12 = value; } inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; } inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value) { ___encoderFallback_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value); } inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; } inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value) { ___decoderFallback_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value); } }; struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_15; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value); } inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_15)); } inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; } inline void set_s_InternalSyncObject_15(RuntimeObject * value) { ___s_InternalSyncObject_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value); } }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // System.Threading.QueueUserWorkItemCallback struct QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8 : public RuntimeObject { public: // System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallback::callback WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * ___callback_0; // System.Threading.ExecutionContext System.Threading.QueueUserWorkItemCallback::context ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___context_1; // System.Object System.Threading.QueueUserWorkItemCallback::state RuntimeObject * ___state_2; public: inline static int32_t get_offset_of_callback_0() { return static_cast<int32_t>(offsetof(QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8, ___callback_0)); } inline WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * get_callback_0() const { return ___callback_0; } inline WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC ** get_address_of_callback_0() { return &___callback_0; } inline void set_callback_0(WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * value) { ___callback_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_0), (void*)value); } inline static int32_t get_offset_of_context_1() { return static_cast<int32_t>(offsetof(QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8, ___context_1)); } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_context_1() const { return ___context_1; } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_context_1() { return &___context_1; } inline void set_context_1(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value) { ___context_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___context_1), (void*)value); } inline static int32_t get_offset_of_state_2() { return static_cast<int32_t>(offsetof(QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8, ___state_2)); } inline RuntimeObject * get_state_2() const { return ___state_2; } inline RuntimeObject ** get_address_of_state_2() { return &___state_2; } inline void set_state_2(RuntimeObject * value) { ___state_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___state_2), (void*)value); } }; struct QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8_StaticFields { public: // System.Threading.ContextCallback System.Threading.QueueUserWorkItemCallback::ccb ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___ccb_3; public: inline static int32_t get_offset_of_ccb_3() { return static_cast<int32_t>(offsetof(QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8_StaticFields, ___ccb_3)); } inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * get_ccb_3() const { return ___ccb_3; } inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 ** get_address_of_ccb_3() { return &___ccb_3; } inline void set_ccb_3(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * value) { ___ccb_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___ccb_3), (void*)value); } }; // System.Threading.Tasks.StackGuard struct StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 : public RuntimeObject { public: // System.Int32 System.Threading.Tasks.StackGuard::m_inliningDepth int32_t ___m_inliningDepth_0; public: inline static int32_t get_offset_of_m_inliningDepth_0() { return static_cast<int32_t>(offsetof(StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9, ___m_inliningDepth_0)); } inline int32_t get_m_inliningDepth_0() const { return ___m_inliningDepth_0; } inline int32_t* get_address_of_m_inliningDepth_0() { return &___m_inliningDepth_0; } inline void set_m_inliningDepth_0(int32_t value) { ___m_inliningDepth_0 = value; } }; // System.Threading.Tasks.Task_<>c struct U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 : public RuntimeObject { public: public: }; struct U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3_StaticFields { public: // System.Threading.Tasks.Task_<>c System.Threading.Tasks.Task_<>c::<>9 U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 * ___U3CU3E9_0; // System.Action`1<System.Object> System.Threading.Tasks.Task_<>c::<>9__276_0 Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___U3CU3E9__276_0_1; // System.Threading.TimerCallback System.Threading.Tasks.Task_<>c::<>9__276_1 TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * ___U3CU3E9__276_1_2; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__276_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3_StaticFields, ___U3CU3E9__276_0_1)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_U3CU3E9__276_0_1() const { return ___U3CU3E9__276_0_1; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_U3CU3E9__276_0_1() { return &___U3CU3E9__276_0_1; } inline void set_U3CU3E9__276_0_1(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ___U3CU3E9__276_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__276_0_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__276_1_2() { return static_cast<int32_t>(offsetof(U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3_StaticFields, ___U3CU3E9__276_1_2)); } inline TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * get_U3CU3E9__276_1_2() const { return ___U3CU3E9__276_1_2; } inline TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 ** get_address_of_U3CU3E9__276_1_2() { return &___U3CU3E9__276_1_2; } inline void set_U3CU3E9__276_1_2(TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * value) { ___U3CU3E9__276_1_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__276_1_2), (void*)value); } }; // System.Threading.Tasks.TaskContinuation struct TaskContinuation_t870BBF430CE7A3B6DF15EE1ED7940F1ABA9EEEE9 : public RuntimeObject { public: public: }; // System.Threading.Tasks.TaskScheduler_SystemThreadingTasks_TaskSchedulerDebugView struct SystemThreadingTasks_TaskSchedulerDebugView_t8F5F95CF99AF4467931D7235A3574ADAD41276CD : public RuntimeObject { public: public: }; // System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation_<>c struct U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439 : public RuntimeObject { public: public: }; struct U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_StaticFields { public: // System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation_<>c System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation_<>c::<>9 U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439 * ___U3CU3E9_0; // System.Action`1<System.Object> System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation_<>c::<>9__2_0 Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___U3CU3E9__2_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__2_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_StaticFields, ___U3CU3E9__2_0_1)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_U3CU3E9__2_0_1() const { return ___U3CU3E9__2_0_1; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_U3CU3E9__2_0_1() { return &___U3CU3E9__2_0_1; } inline void set_U3CU3E9__2_0_1(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ___U3CU3E9__2_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__2_0_1), (void*)value); } }; // System.Threading.ThreadHelper struct ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 : public RuntimeObject { public: // System.Delegate System.Threading.ThreadHelper::_start Delegate_t * ____start_0; // System.Object System.Threading.ThreadHelper::_startArg RuntimeObject * ____startArg_1; // System.Threading.ExecutionContext System.Threading.ThreadHelper::_executionContext ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ____executionContext_2; public: inline static int32_t get_offset_of__start_0() { return static_cast<int32_t>(offsetof(ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13, ____start_0)); } inline Delegate_t * get__start_0() const { return ____start_0; } inline Delegate_t ** get_address_of__start_0() { return &____start_0; } inline void set__start_0(Delegate_t * value) { ____start_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____start_0), (void*)value); } inline static int32_t get_offset_of__startArg_1() { return static_cast<int32_t>(offsetof(ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13, ____startArg_1)); } inline RuntimeObject * get__startArg_1() const { return ____startArg_1; } inline RuntimeObject ** get_address_of__startArg_1() { return &____startArg_1; } inline void set__startArg_1(RuntimeObject * value) { ____startArg_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____startArg_1), (void*)value); } inline static int32_t get_offset_of__executionContext_2() { return static_cast<int32_t>(offsetof(ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13, ____executionContext_2)); } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get__executionContext_2() const { return ____executionContext_2; } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of__executionContext_2() { return &____executionContext_2; } inline void set__executionContext_2(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value) { ____executionContext_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____executionContext_2), (void*)value); } }; struct ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_StaticFields { public: // System.Threading.ContextCallback System.Threading.ThreadHelper::_ccb ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ____ccb_3; public: inline static int32_t get_offset_of__ccb_3() { return static_cast<int32_t>(offsetof(ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_StaticFields, ____ccb_3)); } inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * get__ccb_3() const { return ____ccb_3; } inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 ** get_address_of__ccb_3() { return &____ccb_3; } inline void set__ccb_3(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * value) { ____ccb_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____ccb_3), (void*)value); } }; // System.Threading.ThreadPool struct ThreadPool_tA1940F6FD1289A609CD56A807062A1045E69478E : public RuntimeObject { public: public: }; // System.Threading.ThreadPoolWorkQueue_SparseArray`1<System.Threading.ThreadPoolWorkQueue_WorkStealingQueue> struct SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB : public RuntimeObject { public: // T[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue_SparseArray`1::m_array WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9* ___m_array_0; public: inline static int32_t get_offset_of_m_array_0() { return static_cast<int32_t>(offsetof(SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB, ___m_array_0)); } inline WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9* get_m_array_0() const { return ___m_array_0; } inline WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9** get_address_of_m_array_0() { return &___m_array_0; } inline void set_m_array_0(WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9* value) { ___m_array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_array_0), (void*)value); } }; // System.Threading.ThreadPoolWorkQueueThreadLocals struct ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B : public RuntimeObject { public: // System.Threading.ThreadPoolWorkQueue System.Threading.ThreadPoolWorkQueueThreadLocals::workQueue ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * ___workQueue_1; // System.Threading.ThreadPoolWorkQueue_WorkStealingQueue System.Threading.ThreadPoolWorkQueueThreadLocals::workStealingQueue WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * ___workStealingQueue_2; // System.Random System.Threading.ThreadPoolWorkQueueThreadLocals::random Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F * ___random_3; public: inline static int32_t get_offset_of_workQueue_1() { return static_cast<int32_t>(offsetof(ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B, ___workQueue_1)); } inline ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * get_workQueue_1() const { return ___workQueue_1; } inline ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 ** get_address_of_workQueue_1() { return &___workQueue_1; } inline void set_workQueue_1(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * value) { ___workQueue_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___workQueue_1), (void*)value); } inline static int32_t get_offset_of_workStealingQueue_2() { return static_cast<int32_t>(offsetof(ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B, ___workStealingQueue_2)); } inline WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * get_workStealingQueue_2() const { return ___workStealingQueue_2; } inline WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB ** get_address_of_workStealingQueue_2() { return &___workStealingQueue_2; } inline void set_workStealingQueue_2(WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * value) { ___workStealingQueue_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___workStealingQueue_2), (void*)value); } inline static int32_t get_offset_of_random_3() { return static_cast<int32_t>(offsetof(ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B, ___random_3)); } inline Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F * get_random_3() const { return ___random_3; } inline Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F ** get_address_of_random_3() { return &___random_3; } inline void set_random_3(Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F * value) { ___random_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___random_3), (void*)value); } }; struct ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_ThreadStaticFields { public: // System.Threading.ThreadPoolWorkQueueThreadLocals System.Threading.ThreadPoolWorkQueueThreadLocals::threadLocals ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * ___threadLocals_0; public: inline static int32_t get_offset_of_threadLocals_0() { return static_cast<int32_t>(offsetof(ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_ThreadStaticFields, ___threadLocals_0)); } inline ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * get_threadLocals_0() const { return ___threadLocals_0; } inline ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B ** get_address_of_threadLocals_0() { return &___threadLocals_0; } inline void set_threadLocals_0(ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * value) { ___threadLocals_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___threadLocals_0), (void*)value); } }; // System.Threading.TimeoutHelper struct TimeoutHelper_t030E3625FF417D3C8315B20910298ECA96E4CDA2 : public RuntimeObject { public: public: }; // System.Threading.Timer_Scheduler struct Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 : public RuntimeObject { public: // System.Collections.SortedList System.Threading.Timer_Scheduler::list SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * ___list_1; // System.Threading.ManualResetEvent System.Threading.Timer_Scheduler::changed ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___changed_2; public: inline static int32_t get_offset_of_list_1() { return static_cast<int32_t>(offsetof(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9, ___list_1)); } inline SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * get_list_1() const { return ___list_1; } inline SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E ** get_address_of_list_1() { return &___list_1; } inline void set_list_1(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * value) { ___list_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_1), (void*)value); } inline static int32_t get_offset_of_changed_2() { return static_cast<int32_t>(offsetof(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9, ___changed_2)); } inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get_changed_2() const { return ___changed_2; } inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of_changed_2() { return &___changed_2; } inline void set_changed_2(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value) { ___changed_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___changed_2), (void*)value); } }; struct Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_StaticFields { public: // System.Threading.Timer_Scheduler System.Threading.Timer_Scheduler::instance Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * ___instance_0; public: inline static int32_t get_offset_of_instance_0() { return static_cast<int32_t>(offsetof(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_StaticFields, ___instance_0)); } inline Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * get_instance_0() const { return ___instance_0; } inline Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 ** get_address_of_instance_0() { return &___instance_0; } inline void set_instance_0(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * value) { ___instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___instance_0), (void*)value); } }; // System.Threading.Timer_TimerComparer struct TimerComparer_tC987818CFADF2F3ECEB89C0BD510600DAD816015 : public RuntimeObject { public: public: }; // System.Threading.Volatile struct Volatile_tE96815F4BB2ADA7D8E4005AD52AC020C22856632 : public RuntimeObject { public: public: }; // System.Threading._ThreadPoolWaitCallback struct _ThreadPoolWaitCallback_t0EAB5D898EAAA9E2A32A89597F7230B8A0D92774 : public RuntimeObject { public: public: }; // System.ThrowHelper struct ThrowHelper_t8065E62B9F6294DE13A825C979597A9746B6771B : public RuntimeObject { public: public: }; // System.TimeType struct TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 : public RuntimeObject { public: // System.Int32 System.TimeType::Offset int32_t ___Offset_0; // System.Boolean System.TimeType::IsDst bool ___IsDst_1; // System.String System.TimeType::Name String_t* ___Name_2; public: inline static int32_t get_offset_of_Offset_0() { return static_cast<int32_t>(offsetof(TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9, ___Offset_0)); } inline int32_t get_Offset_0() const { return ___Offset_0; } inline int32_t* get_address_of_Offset_0() { return &___Offset_0; } inline void set_Offset_0(int32_t value) { ___Offset_0 = value; } inline static int32_t get_offset_of_IsDst_1() { return static_cast<int32_t>(offsetof(TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9, ___IsDst_1)); } inline bool get_IsDst_1() const { return ___IsDst_1; } inline bool* get_address_of_IsDst_1() { return &___IsDst_1; } inline void set_IsDst_1(bool value) { ___IsDst_1 = value; } inline static int32_t get_offset_of_Name_2() { return static_cast<int32_t>(offsetof(TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9, ___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((void**)(&___Name_2), (void*)value); } }; // System.TimeZone struct TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454 : public RuntimeObject { public: public: }; struct TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454_StaticFields { public: // System.Object System.TimeZone::tz_lock RuntimeObject * ___tz_lock_0; public: inline static int32_t get_offset_of_tz_lock_0() { return static_cast<int32_t>(offsetof(TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454_StaticFields, ___tz_lock_0)); } inline RuntimeObject * get_tz_lock_0() const { return ___tz_lock_0; } inline RuntimeObject ** get_address_of_tz_lock_0() { return &___tz_lock_0; } inline void set_tz_lock_0(RuntimeObject * value) { ___tz_lock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___tz_lock_0), (void*)value); } }; // System.TimeZoneInfo_<>c struct U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7 : public RuntimeObject { public: public: }; struct U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_StaticFields { public: // System.TimeZoneInfo_<>c System.TimeZoneInfo_<>c::<>9 U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7 * ___U3CU3E9_0; // System.Comparison`1<System.TimeZoneInfo_AdjustmentRule> System.TimeZoneInfo_<>c::<>9__19_0 Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 * ___U3CU3E9__19_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__19_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_StaticFields, ___U3CU3E9__19_0_1)); } inline Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 * get_U3CU3E9__19_0_1() const { return ___U3CU3E9__19_0_1; } inline Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 ** get_address_of_U3CU3E9__19_0_1() { return &___U3CU3E9__19_0_1; } inline void set_U3CU3E9__19_0_1(Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 * value) { ___U3CU3E9__19_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__19_0_1), (void*)value); } }; // System.Tuple struct Tuple_tEC0E79AD4C7F35789E477B876F50D5854D890C52 : public RuntimeObject { public: public: }; // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; // System.__Filters struct __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34 : public RuntimeObject { public: public: }; struct __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34_StaticFields { public: // System.__Filters System.__Filters::Instance __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34 * ___Instance_0; public: inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(__Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34_StaticFields, ___Instance_0)); } inline __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34 * get_Instance_0() const { return ___Instance_0; } inline __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34 ** get_address_of_Instance_0() { return &___Instance_0; } inline void set_Instance_0(__Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34 * value) { ___Instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value); } }; // Microsoft.Win32.RegistryKey struct RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: // System.Object Microsoft.Win32.RegistryKey::handle RuntimeObject * ___handle_1; // Microsoft.Win32.SafeHandles.SafeRegistryHandle Microsoft.Win32.RegistryKey::safe_handle SafeRegistryHandle_t804966262ED9CC53B8783D431090F6F96BD041B1 * ___safe_handle_2; // System.Object Microsoft.Win32.RegistryKey::hive RuntimeObject * ___hive_3; // System.String Microsoft.Win32.RegistryKey::qname String_t* ___qname_4; // System.Boolean Microsoft.Win32.RegistryKey::isRemoteRoot bool ___isRemoteRoot_5; // System.Boolean Microsoft.Win32.RegistryKey::isWritable bool ___isWritable_6; public: inline static int32_t get_offset_of_handle_1() { return static_cast<int32_t>(offsetof(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574, ___handle_1)); } inline RuntimeObject * get_handle_1() const { return ___handle_1; } inline RuntimeObject ** get_address_of_handle_1() { return &___handle_1; } inline void set_handle_1(RuntimeObject * value) { ___handle_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___handle_1), (void*)value); } inline static int32_t get_offset_of_safe_handle_2() { return static_cast<int32_t>(offsetof(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574, ___safe_handle_2)); } inline SafeRegistryHandle_t804966262ED9CC53B8783D431090F6F96BD041B1 * get_safe_handle_2() const { return ___safe_handle_2; } inline SafeRegistryHandle_t804966262ED9CC53B8783D431090F6F96BD041B1 ** get_address_of_safe_handle_2() { return &___safe_handle_2; } inline void set_safe_handle_2(SafeRegistryHandle_t804966262ED9CC53B8783D431090F6F96BD041B1 * value) { ___safe_handle_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___safe_handle_2), (void*)value); } inline static int32_t get_offset_of_hive_3() { return static_cast<int32_t>(offsetof(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574, ___hive_3)); } inline RuntimeObject * get_hive_3() const { return ___hive_3; } inline RuntimeObject ** get_address_of_hive_3() { return &___hive_3; } inline void set_hive_3(RuntimeObject * value) { ___hive_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___hive_3), (void*)value); } inline static int32_t get_offset_of_qname_4() { return static_cast<int32_t>(offsetof(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574, ___qname_4)); } inline String_t* get_qname_4() const { return ___qname_4; } inline String_t** get_address_of_qname_4() { return &___qname_4; } inline void set_qname_4(String_t* value) { ___qname_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___qname_4), (void*)value); } inline static int32_t get_offset_of_isRemoteRoot_5() { return static_cast<int32_t>(offsetof(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574, ___isRemoteRoot_5)); } inline bool get_isRemoteRoot_5() const { return ___isRemoteRoot_5; } inline bool* get_address_of_isRemoteRoot_5() { return &___isRemoteRoot_5; } inline void set_isRemoteRoot_5(bool value) { ___isRemoteRoot_5 = value; } inline static int32_t get_offset_of_isWritable_6() { return static_cast<int32_t>(offsetof(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574, ___isWritable_6)); } inline bool get_isWritable_6() const { return ___isWritable_6; } inline bool* get_address_of_isWritable_6() { return &___isWritable_6; } inline void set_isWritable_6(bool value) { ___isWritable_6 = value; } }; struct RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574_StaticFields { public: // Microsoft.Win32.IRegistryApi Microsoft.Win32.RegistryKey::RegistryApi RuntimeObject* ___RegistryApi_7; public: inline static int32_t get_offset_of_RegistryApi_7() { return static_cast<int32_t>(offsetof(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574_StaticFields, ___RegistryApi_7)); } inline RuntimeObject* get_RegistryApi_7() const { return ___RegistryApi_7; } inline RuntimeObject** get_address_of_RegistryApi_7() { return &___RegistryApi_7; } inline void set_RegistryApi_7(RuntimeObject* value) { ___RegistryApi_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___RegistryApi_7), (void*)value); } }; // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Char struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.Object> struct Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current RuntimeObject * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___list_0)); } inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * get_list_0() const { return ___list_0; } inline List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD, ___current_3)); } inline RuntimeObject * get_current_3() const { return ___current_3; } inline RuntimeObject ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(RuntimeObject * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1_Enumerator<System.Runtime.ExceptionServices.ExceptionDispatchInfo> struct Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * ___list_0; // System.Int32 System.Collections.Generic.List`1_Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1_Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1_Enumerator::current ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911, ___list_0)); } inline List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * get_list_0() const { return ___list_0; } inline List_1_tCD04260AE1254C438132446F1E6892AB86D18743 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911, ___current_3)); } inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * get_current_3() const { return ___current_3; } inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // 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((void**)(&___DaysToMonth365_29), (void*)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((void**)(&___DaysToMonth366_30), (void*)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; } }; // System.DefaultBinder struct DefaultBinder_tFFCBC1B63C1667920094F68AB261486C13814AEC : public Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 { public: public: }; // System.Double struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; // System.IO.Stream struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: // System.IO.Stream_ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_2; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_3; public: inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_2)); } inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; } inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; } inline void set__activeReadWriteTask_2(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value) { ____activeReadWriteTask_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_2), (void*)value); } inline static int32_t get_offset_of__asyncActiveSemaphore_3() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_3)); } inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; } inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; } inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value) { ____asyncActiveSemaphore_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_3), (void*)value); } }; struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields { public: // System.IO.Stream System.IO.Stream::Null Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1; public: inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value); } }; // System.Int16 struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Reflection.FieldInfo struct FieldInfo_t : public MemberInfo_t { public: public: }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; // System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E { public: // System.Boolean[] System.Reflection.ParameterModifier::_byRef BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0; public: inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); } inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; } inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; } inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value) { ____byRef_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke { int32_t* ____byRef_0; }; // Native definition for COM marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com { int32_t* ____byRef_0; }; // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; // System.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((void**)(&___m_source_0), (void*)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((void**)(&___s_ActionToActionObjShunt_1), (void*)value); } }; // 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; }; // System.Threading.ExecutionContext_Reader struct Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B { public: // System.Threading.ExecutionContext System.Threading.ExecutionContext_Reader::m_ec ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ec_0; public: inline static int32_t get_offset_of_m_ec_0() { return static_cast<int32_t>(offsetof(Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B, ___m_ec_0)); } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_m_ec_0() const { return ___m_ec_0; } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_m_ec_0() { return &___m_ec_0; } inline void set_m_ec_0(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value) { ___m_ec_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ec_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Threading.ExecutionContext/Reader struct Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B_marshaled_pinvoke { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ec_0; }; // Native definition for COM marshalling of System.Threading.ExecutionContext/Reader struct Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B_marshaled_com { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ec_0; }; // 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((void**)(&___m_source_0), (void*)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; } }; // System.Threading.SpinWait struct SpinWait_tE079CCE966DA5879ACBE28273573E447C0BA31B9 { public: // System.Int32 System.Threading.SpinWait::m_count int32_t ___m_count_0; public: inline static int32_t get_offset_of_m_count_0() { return static_cast<int32_t>(offsetof(SpinWait_tE079CCE966DA5879ACBE28273573E447C0BA31B9, ___m_count_0)); } inline int32_t get_m_count_0() const { return ___m_count_0; } inline int32_t* get_address_of_m_count_0() { return &___m_count_0; } inline void set_m_count_0(int32_t value) { ___m_count_0 = value; } }; // System.Threading.Tasks.AwaitTaskContinuation struct AwaitTaskContinuation_t883E8FB9C34A1024B54F2D4A9CCBA21CC595286F : public TaskContinuation_t870BBF430CE7A3B6DF15EE1ED7940F1ABA9EEEE9 { public: // System.Threading.ExecutionContext System.Threading.Tasks.AwaitTaskContinuation::m_capturedContext ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_capturedContext_0; // System.Action System.Threading.Tasks.AwaitTaskContinuation::m_action Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___m_action_1; public: inline static int32_t get_offset_of_m_capturedContext_0() { return static_cast<int32_t>(offsetof(AwaitTaskContinuation_t883E8FB9C34A1024B54F2D4A9CCBA21CC595286F, ___m_capturedContext_0)); } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_m_capturedContext_0() const { return ___m_capturedContext_0; } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_m_capturedContext_0() { return &___m_capturedContext_0; } inline void set_m_capturedContext_0(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value) { ___m_capturedContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_capturedContext_0), (void*)value); } inline static int32_t get_offset_of_m_action_1() { return static_cast<int32_t>(offsetof(AwaitTaskContinuation_t883E8FB9C34A1024B54F2D4A9CCBA21CC595286F, ___m_action_1)); } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_m_action_1() const { return ___m_action_1; } inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_m_action_1() { return &___m_action_1; } inline void set_m_action_1(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value) { ___m_action_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_action_1), (void*)value); } }; struct AwaitTaskContinuation_t883E8FB9C34A1024B54F2D4A9CCBA21CC595286F_StaticFields { public: // System.Threading.ContextCallback System.Threading.Tasks.AwaitTaskContinuation::s_invokeActionCallback ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___s_invokeActionCallback_2; public: inline static int32_t get_offset_of_s_invokeActionCallback_2() { return static_cast<int32_t>(offsetof(AwaitTaskContinuation_t883E8FB9C34A1024B54F2D4A9CCBA21CC595286F_StaticFields, ___s_invokeActionCallback_2)); } inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * get_s_invokeActionCallback_2() const { return ___s_invokeActionCallback_2; } inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 ** get_address_of_s_invokeActionCallback_2() { return &___s_invokeActionCallback_2; } inline void set_s_invokeActionCallback_2(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * value) { ___s_invokeActionCallback_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_invokeActionCallback_2), (void*)value); } }; // System.Threading.Tasks.UnobservedTaskExceptionEventArgs struct UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E { public: // System.AggregateException System.Threading.Tasks.UnobservedTaskExceptionEventArgs::m_exception AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * ___m_exception_1; // System.Boolean System.Threading.Tasks.UnobservedTaskExceptionEventArgs::m_observed bool ___m_observed_2; public: inline static int32_t get_offset_of_m_exception_1() { return static_cast<int32_t>(offsetof(UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7, ___m_exception_1)); } inline AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * get_m_exception_1() const { return ___m_exception_1; } inline AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E ** get_address_of_m_exception_1() { return &___m_exception_1; } inline void set_m_exception_1(AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * value) { ___m_exception_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_exception_1), (void*)value); } inline static int32_t get_offset_of_m_observed_2() { return static_cast<int32_t>(offsetof(UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7, ___m_observed_2)); } inline bool get_m_observed_2() const { return ___m_observed_2; } inline bool* get_address_of_m_observed_2() { return &___m_observed_2; } inline void set_m_observed_2(bool value) { ___m_observed_2 = value; } }; // System.Threading.Tasks.VoidTaskResult struct VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 { public: union { struct { }; uint8_t VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40__padding[1]; }; public: }; // System.Threading.Thread struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 : public CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 { public: // System.Threading.InternalThread System.Threading.Thread::internal_thread InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___internal_thread_6; // System.Object System.Threading.Thread::m_ThreadStartArg RuntimeObject * ___m_ThreadStartArg_7; // System.Object System.Threading.Thread::pending_exception RuntimeObject * ___pending_exception_8; // System.Security.Principal.IPrincipal System.Threading.Thread::principal RuntimeObject* ___principal_9; // System.Int32 System.Threading.Thread::principal_version int32_t ___principal_version_10; // System.MulticastDelegate System.Threading.Thread::m_Delegate MulticastDelegate_t * ___m_Delegate_12; // System.Threading.ExecutionContext System.Threading.Thread::m_ExecutionContext ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ExecutionContext_13; // System.Boolean System.Threading.Thread::m_ExecutionContextBelongsToOuterScope bool ___m_ExecutionContextBelongsToOuterScope_14; public: inline static int32_t get_offset_of_internal_thread_6() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___internal_thread_6)); } inline InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * get_internal_thread_6() const { return ___internal_thread_6; } inline InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 ** get_address_of_internal_thread_6() { return &___internal_thread_6; } inline void set_internal_thread_6(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * value) { ___internal_thread_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___internal_thread_6), (void*)value); } inline static int32_t get_offset_of_m_ThreadStartArg_7() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ThreadStartArg_7)); } inline RuntimeObject * get_m_ThreadStartArg_7() const { return ___m_ThreadStartArg_7; } inline RuntimeObject ** get_address_of_m_ThreadStartArg_7() { return &___m_ThreadStartArg_7; } inline void set_m_ThreadStartArg_7(RuntimeObject * value) { ___m_ThreadStartArg_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ThreadStartArg_7), (void*)value); } inline static int32_t get_offset_of_pending_exception_8() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___pending_exception_8)); } inline RuntimeObject * get_pending_exception_8() const { return ___pending_exception_8; } inline RuntimeObject ** get_address_of_pending_exception_8() { return &___pending_exception_8; } inline void set_pending_exception_8(RuntimeObject * value) { ___pending_exception_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___pending_exception_8), (void*)value); } inline static int32_t get_offset_of_principal_9() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___principal_9)); } inline RuntimeObject* get_principal_9() const { return ___principal_9; } inline RuntimeObject** get_address_of_principal_9() { return &___principal_9; } inline void set_principal_9(RuntimeObject* value) { ___principal_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___principal_9), (void*)value); } inline static int32_t get_offset_of_principal_version_10() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___principal_version_10)); } inline int32_t get_principal_version_10() const { return ___principal_version_10; } inline int32_t* get_address_of_principal_version_10() { return &___principal_version_10; } inline void set_principal_version_10(int32_t value) { ___principal_version_10 = value; } inline static int32_t get_offset_of_m_Delegate_12() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_Delegate_12)); } inline MulticastDelegate_t * get_m_Delegate_12() const { return ___m_Delegate_12; } inline MulticastDelegate_t ** get_address_of_m_Delegate_12() { return &___m_Delegate_12; } inline void set_m_Delegate_12(MulticastDelegate_t * value) { ___m_Delegate_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Delegate_12), (void*)value); } inline static int32_t get_offset_of_m_ExecutionContext_13() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ExecutionContext_13)); } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_m_ExecutionContext_13() const { return ___m_ExecutionContext_13; } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_m_ExecutionContext_13() { return &___m_ExecutionContext_13; } inline void set_m_ExecutionContext_13(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value) { ___m_ExecutionContext_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ExecutionContext_13), (void*)value); } inline static int32_t get_offset_of_m_ExecutionContextBelongsToOuterScope_14() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7, ___m_ExecutionContextBelongsToOuterScope_14)); } inline bool get_m_ExecutionContextBelongsToOuterScope_14() const { return ___m_ExecutionContextBelongsToOuterScope_14; } inline bool* get_address_of_m_ExecutionContextBelongsToOuterScope_14() { return &___m_ExecutionContextBelongsToOuterScope_14; } inline void set_m_ExecutionContextBelongsToOuterScope_14(bool value) { ___m_ExecutionContextBelongsToOuterScope_14 = value; } }; struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields { public: // System.LocalDataStoreMgr System.Threading.Thread::s_LocalDataStoreMgr LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___s_LocalDataStoreMgr_0; // System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentCulture AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * ___s_asyncLocalCurrentCulture_4; // System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentUICulture AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * ___s_asyncLocalCurrentUICulture_5; public: inline static int32_t get_offset_of_s_LocalDataStoreMgr_0() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_LocalDataStoreMgr_0)); } inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get_s_LocalDataStoreMgr_0() const { return ___s_LocalDataStoreMgr_0; } inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of_s_LocalDataStoreMgr_0() { return &___s_LocalDataStoreMgr_0; } inline void set_s_LocalDataStoreMgr_0(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value) { ___s_LocalDataStoreMgr_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_LocalDataStoreMgr_0), (void*)value); } inline static int32_t get_offset_of_s_asyncLocalCurrentCulture_4() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_asyncLocalCurrentCulture_4)); } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * get_s_asyncLocalCurrentCulture_4() const { return ___s_asyncLocalCurrentCulture_4; } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A ** get_address_of_s_asyncLocalCurrentCulture_4() { return &___s_asyncLocalCurrentCulture_4; } inline void set_s_asyncLocalCurrentCulture_4(AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * value) { ___s_asyncLocalCurrentCulture_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_asyncLocalCurrentCulture_4), (void*)value); } inline static int32_t get_offset_of_s_asyncLocalCurrentUICulture_5() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_StaticFields, ___s_asyncLocalCurrentUICulture_5)); } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * get_s_asyncLocalCurrentUICulture_5() const { return ___s_asyncLocalCurrentUICulture_5; } inline AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A ** get_address_of_s_asyncLocalCurrentUICulture_5() { return &___s_asyncLocalCurrentUICulture_5; } inline void set_s_asyncLocalCurrentUICulture_5(AsyncLocal_1_tD39651C2EDD14B144FF3D9B9C716F807EB57655A * value) { ___s_asyncLocalCurrentUICulture_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_asyncLocalCurrentUICulture_5), (void*)value); } }; struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields { public: // System.LocalDataStoreHolder System.Threading.Thread::s_LocalDataStore LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ___s_LocalDataStore_1; // System.Globalization.CultureInfo System.Threading.Thread::m_CurrentCulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_CurrentCulture_2; // System.Globalization.CultureInfo System.Threading.Thread::m_CurrentUICulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___m_CurrentUICulture_3; // System.Threading.Thread System.Threading.Thread::current_thread Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * ___current_thread_11; public: inline static int32_t get_offset_of_s_LocalDataStore_1() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___s_LocalDataStore_1)); } inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * get_s_LocalDataStore_1() const { return ___s_LocalDataStore_1; } inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 ** get_address_of_s_LocalDataStore_1() { return &___s_LocalDataStore_1; } inline void set_s_LocalDataStore_1(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * value) { ___s_LocalDataStore_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_LocalDataStore_1), (void*)value); } inline static int32_t get_offset_of_m_CurrentCulture_2() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___m_CurrentCulture_2)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_CurrentCulture_2() const { return ___m_CurrentCulture_2; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_CurrentCulture_2() { return &___m_CurrentCulture_2; } inline void set_m_CurrentCulture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___m_CurrentCulture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentCulture_2), (void*)value); } inline static int32_t get_offset_of_m_CurrentUICulture_3() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___m_CurrentUICulture_3)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_m_CurrentUICulture_3() const { return ___m_CurrentUICulture_3; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_m_CurrentUICulture_3() { return &___m_CurrentUICulture_3; } inline void set_m_CurrentUICulture_3(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___m_CurrentUICulture_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentUICulture_3), (void*)value); } inline static int32_t get_offset_of_current_thread_11() { return static_cast<int32_t>(offsetof(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields, ___current_thread_11)); } inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * get_current_thread_11() const { return ___current_thread_11; } inline Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 ** get_address_of_current_thread_11() { return &___current_thread_11; } inline void set_current_thread_11(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * value) { ___current_thread_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_thread_11), (void*)value); } }; // System.Threading.Timer struct Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: // System.Threading.TimerCallback System.Threading.Timer::callback TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * ___callback_2; // System.Object System.Threading.Timer::state RuntimeObject * ___state_3; // System.Int64 System.Threading.Timer::due_time_ms int64_t ___due_time_ms_4; // System.Int64 System.Threading.Timer::period_ms int64_t ___period_ms_5; // System.Int64 System.Threading.Timer::next_run int64_t ___next_run_6; // System.Boolean System.Threading.Timer::disposed bool ___disposed_7; public: inline static int32_t get_offset_of_callback_2() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___callback_2)); } inline TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * get_callback_2() const { return ___callback_2; } inline TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 ** get_address_of_callback_2() { return &___callback_2; } inline void set_callback_2(TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * value) { ___callback_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_2), (void*)value); } inline static int32_t get_offset_of_state_3() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___state_3)); } inline RuntimeObject * get_state_3() const { return ___state_3; } inline RuntimeObject ** get_address_of_state_3() { return &___state_3; } inline void set_state_3(RuntimeObject * value) { ___state_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___state_3), (void*)value); } inline static int32_t get_offset_of_due_time_ms_4() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___due_time_ms_4)); } inline int64_t get_due_time_ms_4() const { return ___due_time_ms_4; } inline int64_t* get_address_of_due_time_ms_4() { return &___due_time_ms_4; } inline void set_due_time_ms_4(int64_t value) { ___due_time_ms_4 = value; } inline static int32_t get_offset_of_period_ms_5() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___period_ms_5)); } inline int64_t get_period_ms_5() const { return ___period_ms_5; } inline int64_t* get_address_of_period_ms_5() { return &___period_ms_5; } inline void set_period_ms_5(int64_t value) { ___period_ms_5 = value; } inline static int32_t get_offset_of_next_run_6() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___next_run_6)); } inline int64_t get_next_run_6() const { return ___next_run_6; } inline int64_t* get_address_of_next_run_6() { return &___next_run_6; } inline void set_next_run_6(int64_t value) { ___next_run_6 = value; } inline static int32_t get_offset_of_disposed_7() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___disposed_7)); } inline bool get_disposed_7() const { return ___disposed_7; } inline bool* get_address_of_disposed_7() { return &___disposed_7; } inline void set_disposed_7(bool value) { ___disposed_7 = value; } }; struct Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_StaticFields { public: // System.Threading.Timer_Scheduler System.Threading.Timer::scheduler Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * ___scheduler_1; public: inline static int32_t get_offset_of_scheduler_1() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_StaticFields, ___scheduler_1)); } inline Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * get_scheduler_1() const { return ___scheduler_1; } inline Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 ** get_address_of_scheduler_1() { return &___scheduler_1; } inline void set_scheduler_1(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * value) { ___scheduler_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___scheduler_1), (void*)value); } }; // System.TimeZoneInfo_SYSTEMTIME struct SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 { public: // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wYear uint16_t ___wYear_0; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wMonth uint16_t ___wMonth_1; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wDayOfWeek uint16_t ___wDayOfWeek_2; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wDay uint16_t ___wDay_3; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wHour uint16_t ___wHour_4; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wMinute uint16_t ___wMinute_5; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wSecond uint16_t ___wSecond_6; // System.UInt16 System.TimeZoneInfo_SYSTEMTIME::wMilliseconds uint16_t ___wMilliseconds_7; public: inline static int32_t get_offset_of_wYear_0() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wYear_0)); } inline uint16_t get_wYear_0() const { return ___wYear_0; } inline uint16_t* get_address_of_wYear_0() { return &___wYear_0; } inline void set_wYear_0(uint16_t value) { ___wYear_0 = value; } inline static int32_t get_offset_of_wMonth_1() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wMonth_1)); } inline uint16_t get_wMonth_1() const { return ___wMonth_1; } inline uint16_t* get_address_of_wMonth_1() { return &___wMonth_1; } inline void set_wMonth_1(uint16_t value) { ___wMonth_1 = value; } inline static int32_t get_offset_of_wDayOfWeek_2() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wDayOfWeek_2)); } inline uint16_t get_wDayOfWeek_2() const { return ___wDayOfWeek_2; } inline uint16_t* get_address_of_wDayOfWeek_2() { return &___wDayOfWeek_2; } inline void set_wDayOfWeek_2(uint16_t value) { ___wDayOfWeek_2 = value; } inline static int32_t get_offset_of_wDay_3() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wDay_3)); } inline uint16_t get_wDay_3() const { return ___wDay_3; } inline uint16_t* get_address_of_wDay_3() { return &___wDay_3; } inline void set_wDay_3(uint16_t value) { ___wDay_3 = value; } inline static int32_t get_offset_of_wHour_4() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wHour_4)); } inline uint16_t get_wHour_4() const { return ___wHour_4; } inline uint16_t* get_address_of_wHour_4() { return &___wHour_4; } inline void set_wHour_4(uint16_t value) { ___wHour_4 = value; } inline static int32_t get_offset_of_wMinute_5() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wMinute_5)); } inline uint16_t get_wMinute_5() const { return ___wMinute_5; } inline uint16_t* get_address_of_wMinute_5() { return &___wMinute_5; } inline void set_wMinute_5(uint16_t value) { ___wMinute_5 = value; } inline static int32_t get_offset_of_wSecond_6() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wSecond_6)); } inline uint16_t get_wSecond_6() const { return ___wSecond_6; } inline uint16_t* get_address_of_wSecond_6() { return &___wSecond_6; } inline void set_wSecond_6(uint16_t value) { ___wSecond_6 = value; } inline static int32_t get_offset_of_wMilliseconds_7() { return static_cast<int32_t>(offsetof(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2, ___wMilliseconds_7)); } inline uint16_t get_wMilliseconds_7() const { return ___wMilliseconds_7; } inline uint16_t* get_address_of_wMilliseconds_7() { return &___wMilliseconds_7; } inline void set_wMilliseconds_7(uint16_t value) { ___wMilliseconds_7 = value; } }; // System.UInt16 struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.UInt32 struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // System.UIntPtr struct UIntPtr_t { public: // System.Void* System.UIntPtr::_pointer void* ____pointer_1; public: inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); } inline void* get__pointer_1() const { return ____pointer_1; } inline void** get_address_of__pointer_1() { return &____pointer_1; } inline void set__pointer_1(void* value) { ____pointer_1 = value; } }; struct UIntPtr_t_StaticFields { public: // System.UIntPtr System.UIntPtr::Zero uintptr_t ___Zero_0; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); } inline uintptr_t get_Zero_0() const { return ___Zero_0; } inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(uintptr_t value) { ___Zero_0 = value; } }; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; // System.AppDomain struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: // System.IntPtr System.AppDomain::_mono_app_domain intptr_t ____mono_app_domain_1; // System.Object System.AppDomain::_evidence RuntimeObject * ____evidence_6; // System.Object System.AppDomain::_granted RuntimeObject * ____granted_7; // System.Int32 System.AppDomain::_principalPolicy int32_t ____principalPolicy_8; // System.AssemblyLoadEventHandler System.AppDomain::AssemblyLoad AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * ___AssemblyLoad_11; // System.ResolveEventHandler System.AppDomain::AssemblyResolve ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___AssemblyResolve_12; // System.EventHandler System.AppDomain::DomainUnload EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___DomainUnload_13; // System.EventHandler System.AppDomain::ProcessExit EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___ProcessExit_14; // System.ResolveEventHandler System.AppDomain::ResourceResolve ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___ResourceResolve_15; // System.ResolveEventHandler System.AppDomain::TypeResolve ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___TypeResolve_16; // System.UnhandledExceptionEventHandler System.AppDomain::UnhandledException UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * ___UnhandledException_17; // System.EventHandler`1<System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs> System.AppDomain::FirstChanceException EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * ___FirstChanceException_18; // System.Object System.AppDomain::_domain_manager RuntimeObject * ____domain_manager_19; // System.ResolveEventHandler System.AppDomain::ReflectionOnlyAssemblyResolve ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * ___ReflectionOnlyAssemblyResolve_20; // System.Object System.AppDomain::_activation RuntimeObject * ____activation_21; // System.Object System.AppDomain::_applicationIdentity RuntimeObject * ____applicationIdentity_22; // System.Collections.Generic.List`1<System.String> System.AppDomain::compatibility_switch List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23; public: inline static int32_t get_offset_of__mono_app_domain_1() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____mono_app_domain_1)); } inline intptr_t get__mono_app_domain_1() const { return ____mono_app_domain_1; } inline intptr_t* get_address_of__mono_app_domain_1() { return &____mono_app_domain_1; } inline void set__mono_app_domain_1(intptr_t value) { ____mono_app_domain_1 = value; } inline static int32_t get_offset_of__evidence_6() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____evidence_6)); } inline RuntimeObject * get__evidence_6() const { return ____evidence_6; } inline RuntimeObject ** get_address_of__evidence_6() { return &____evidence_6; } inline void set__evidence_6(RuntimeObject * value) { ____evidence_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____evidence_6), (void*)value); } inline static int32_t get_offset_of__granted_7() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____granted_7)); } inline RuntimeObject * get__granted_7() const { return ____granted_7; } inline RuntimeObject ** get_address_of__granted_7() { return &____granted_7; } inline void set__granted_7(RuntimeObject * value) { ____granted_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____granted_7), (void*)value); } inline static int32_t get_offset_of__principalPolicy_8() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____principalPolicy_8)); } inline int32_t get__principalPolicy_8() const { return ____principalPolicy_8; } inline int32_t* get_address_of__principalPolicy_8() { return &____principalPolicy_8; } inline void set__principalPolicy_8(int32_t value) { ____principalPolicy_8 = value; } inline static int32_t get_offset_of_AssemblyLoad_11() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___AssemblyLoad_11)); } inline AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * get_AssemblyLoad_11() const { return ___AssemblyLoad_11; } inline AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 ** get_address_of_AssemblyLoad_11() { return &___AssemblyLoad_11; } inline void set_AssemblyLoad_11(AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * value) { ___AssemblyLoad_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___AssemblyLoad_11), (void*)value); } inline static int32_t get_offset_of_AssemblyResolve_12() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___AssemblyResolve_12)); } inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_AssemblyResolve_12() const { return ___AssemblyResolve_12; } inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_AssemblyResolve_12() { return &___AssemblyResolve_12; } inline void set_AssemblyResolve_12(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value) { ___AssemblyResolve_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___AssemblyResolve_12), (void*)value); } inline static int32_t get_offset_of_DomainUnload_13() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___DomainUnload_13)); } inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * get_DomainUnload_13() const { return ___DomainUnload_13; } inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C ** get_address_of_DomainUnload_13() { return &___DomainUnload_13; } inline void set_DomainUnload_13(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * value) { ___DomainUnload_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___DomainUnload_13), (void*)value); } inline static int32_t get_offset_of_ProcessExit_14() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ProcessExit_14)); } inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * get_ProcessExit_14() const { return ___ProcessExit_14; } inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C ** get_address_of_ProcessExit_14() { return &___ProcessExit_14; } inline void set_ProcessExit_14(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * value) { ___ProcessExit_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___ProcessExit_14), (void*)value); } inline static int32_t get_offset_of_ResourceResolve_15() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ResourceResolve_15)); } inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_ResourceResolve_15() const { return ___ResourceResolve_15; } inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_ResourceResolve_15() { return &___ResourceResolve_15; } inline void set_ResourceResolve_15(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value) { ___ResourceResolve_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___ResourceResolve_15), (void*)value); } inline static int32_t get_offset_of_TypeResolve_16() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___TypeResolve_16)); } inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_TypeResolve_16() const { return ___TypeResolve_16; } inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_TypeResolve_16() { return &___TypeResolve_16; } inline void set_TypeResolve_16(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value) { ___TypeResolve_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___TypeResolve_16), (void*)value); } inline static int32_t get_offset_of_UnhandledException_17() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___UnhandledException_17)); } inline UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * get_UnhandledException_17() const { return ___UnhandledException_17; } inline UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE ** get_address_of_UnhandledException_17() { return &___UnhandledException_17; } inline void set_UnhandledException_17(UnhandledExceptionEventHandler_tB0DFF05ABF7A3A234C87D4F7A71F98E9AB2D91DE * value) { ___UnhandledException_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnhandledException_17), (void*)value); } inline static int32_t get_offset_of_FirstChanceException_18() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___FirstChanceException_18)); } inline EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * get_FirstChanceException_18() const { return ___FirstChanceException_18; } inline EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF ** get_address_of_FirstChanceException_18() { return &___FirstChanceException_18; } inline void set_FirstChanceException_18(EventHandler_1_t1E35ED2E29145994C6C03E57601C6D48C61083FF * value) { ___FirstChanceException_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___FirstChanceException_18), (void*)value); } inline static int32_t get_offset_of__domain_manager_19() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____domain_manager_19)); } inline RuntimeObject * get__domain_manager_19() const { return ____domain_manager_19; } inline RuntimeObject ** get_address_of__domain_manager_19() { return &____domain_manager_19; } inline void set__domain_manager_19(RuntimeObject * value) { ____domain_manager_19 = value; Il2CppCodeGenWriteBarrier((void**)(&____domain_manager_19), (void*)value); } inline static int32_t get_offset_of_ReflectionOnlyAssemblyResolve_20() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___ReflectionOnlyAssemblyResolve_20)); } inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * get_ReflectionOnlyAssemblyResolve_20() const { return ___ReflectionOnlyAssemblyResolve_20; } inline ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 ** get_address_of_ReflectionOnlyAssemblyResolve_20() { return &___ReflectionOnlyAssemblyResolve_20; } inline void set_ReflectionOnlyAssemblyResolve_20(ResolveEventHandler_t045C469BEA8B632FA99FE8867C921BA8DAE0BEE5 * value) { ___ReflectionOnlyAssemblyResolve_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReflectionOnlyAssemblyResolve_20), (void*)value); } inline static int32_t get_offset_of__activation_21() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____activation_21)); } inline RuntimeObject * get__activation_21() const { return ____activation_21; } inline RuntimeObject ** get_address_of__activation_21() { return &____activation_21; } inline void set__activation_21(RuntimeObject * value) { ____activation_21 = value; Il2CppCodeGenWriteBarrier((void**)(&____activation_21), (void*)value); } inline static int32_t get_offset_of__applicationIdentity_22() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ____applicationIdentity_22)); } inline RuntimeObject * get__applicationIdentity_22() const { return ____applicationIdentity_22; } inline RuntimeObject ** get_address_of__applicationIdentity_22() { return &____applicationIdentity_22; } inline void set__applicationIdentity_22(RuntimeObject * value) { ____applicationIdentity_22 = value; Il2CppCodeGenWriteBarrier((void**)(&____applicationIdentity_22), (void*)value); } inline static int32_t get_offset_of_compatibility_switch_23() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8, ___compatibility_switch_23)); } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_compatibility_switch_23() const { return ___compatibility_switch_23; } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_compatibility_switch_23() { return &___compatibility_switch_23; } inline void set_compatibility_switch_23(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value) { ___compatibility_switch_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___compatibility_switch_23), (void*)value); } }; struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields { public: // System.String System.AppDomain::_process_guid String_t* ____process_guid_2; // System.AppDomain System.AppDomain::default_domain AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * ___default_domain_10; public: inline static int32_t get_offset_of__process_guid_2() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields, ____process_guid_2)); } inline String_t* get__process_guid_2() const { return ____process_guid_2; } inline String_t** get_address_of__process_guid_2() { return &____process_guid_2; } inline void set__process_guid_2(String_t* value) { ____process_guid_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____process_guid_2), (void*)value); } inline static int32_t get_offset_of_default_domain_10() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_StaticFields, ___default_domain_10)); } inline AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * get_default_domain_10() const { return ___default_domain_10; } inline AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 ** get_address_of_default_domain_10() { return &___default_domain_10; } inline void set_default_domain_10(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * value) { ___default_domain_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_domain_10), (void*)value); } }; struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::type_resolve_in_progress Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___type_resolve_in_progress_3; // System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___assembly_resolve_in_progress_4; // System.Collections.Generic.Dictionary`2<System.String,System.Object> System.AppDomain::assembly_resolve_in_progress_refonly Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * ___assembly_resolve_in_progress_refonly_5; // System.Object System.AppDomain::_principal RuntimeObject * ____principal_9; public: inline static int32_t get_offset_of_type_resolve_in_progress_3() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___type_resolve_in_progress_3)); } inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_type_resolve_in_progress_3() const { return ___type_resolve_in_progress_3; } inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_type_resolve_in_progress_3() { return &___type_resolve_in_progress_3; } inline void set_type_resolve_in_progress_3(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value) { ___type_resolve_in_progress_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_resolve_in_progress_3), (void*)value); } inline static int32_t get_offset_of_assembly_resolve_in_progress_4() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___assembly_resolve_in_progress_4)); } inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_assembly_resolve_in_progress_4() const { return ___assembly_resolve_in_progress_4; } inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_assembly_resolve_in_progress_4() { return &___assembly_resolve_in_progress_4; } inline void set_assembly_resolve_in_progress_4(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value) { ___assembly_resolve_in_progress_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___assembly_resolve_in_progress_4), (void*)value); } inline static int32_t get_offset_of_assembly_resolve_in_progress_refonly_5() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ___assembly_resolve_in_progress_refonly_5)); } inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * get_assembly_resolve_in_progress_refonly_5() const { return ___assembly_resolve_in_progress_refonly_5; } inline Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA ** get_address_of_assembly_resolve_in_progress_refonly_5() { return &___assembly_resolve_in_progress_refonly_5; } inline void set_assembly_resolve_in_progress_refonly_5(Dictionary_2_t9140A71329927AE4FD0F3CF4D4D66668EBE151EA * value) { ___assembly_resolve_in_progress_refonly_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___assembly_resolve_in_progress_refonly_5), (void*)value); } inline static int32_t get_offset_of__principal_9() { return static_cast<int32_t>(offsetof(AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_ThreadStaticFields, ____principal_9)); } inline RuntimeObject * get__principal_9() const { return ____principal_9; } inline RuntimeObject ** get_address_of__principal_9() { return &____principal_9; } inline void set__principal_9(RuntimeObject * value) { ____principal_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____principal_9), (void*)value); } }; // Native definition for P/Invoke marshalling of System.AppDomain struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_pinvoke : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke { intptr_t ____mono_app_domain_1; Il2CppIUnknown* ____evidence_6; Il2CppIUnknown* ____granted_7; int32_t ____principalPolicy_8; Il2CppMethodPointer ___AssemblyLoad_11; Il2CppMethodPointer ___AssemblyResolve_12; Il2CppMethodPointer ___DomainUnload_13; Il2CppMethodPointer ___ProcessExit_14; Il2CppMethodPointer ___ResourceResolve_15; Il2CppMethodPointer ___TypeResolve_16; Il2CppMethodPointer ___UnhandledException_17; Il2CppMethodPointer ___FirstChanceException_18; Il2CppIUnknown* ____domain_manager_19; Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_20; Il2CppIUnknown* ____activation_21; Il2CppIUnknown* ____applicationIdentity_22; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23; }; // Native definition for COM marshalling of System.AppDomain struct AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8_marshaled_com : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com { intptr_t ____mono_app_domain_1; Il2CppIUnknown* ____evidence_6; Il2CppIUnknown* ____granted_7; int32_t ____principalPolicy_8; Il2CppMethodPointer ___AssemblyLoad_11; Il2CppMethodPointer ___AssemblyResolve_12; Il2CppMethodPointer ___DomainUnload_13; Il2CppMethodPointer ___ProcessExit_14; Il2CppMethodPointer ___ResourceResolve_15; Il2CppMethodPointer ___TypeResolve_16; Il2CppMethodPointer ___UnhandledException_17; Il2CppMethodPointer ___FirstChanceException_18; Il2CppIUnknown* ____domain_manager_19; Il2CppMethodPointer ___ReflectionOnlyAssemblyResolve_20; Il2CppIUnknown* ____activation_21; Il2CppIUnknown* ____applicationIdentity_22; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___compatibility_switch_23; }; // 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((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType> struct KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D { public: // TKey System.Collections.Generic.KeyValuePair`2::key DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D, ___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_t86E21DDA124482935B8F0E8DCC380E2B8206105D, ___value_1)); } inline TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * get_value_1() const { return ___value_1; } inline TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.DateTimeKind struct DateTimeKind_t6BC23532930B812ABFCCEB2B61BC233712B180EE { public: // System.Int32 System.DateTimeKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DateTimeKind_t6BC23532930B812ABFCCEB2B61BC233712B180EE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.DayOfWeek struct DayOfWeek_tE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8 { public: // System.Int32 System.DayOfWeek::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DayOfWeek_tE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.Exception_ExceptionMessageKind struct ExceptionMessageKind_t5151BECAA7C450ADA0DDF5BB98A51E7042166AB7 { public: // System.Int32 System.Exception_ExceptionMessageKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionMessageKind_t5151BECAA7C450ADA0DDF5BB98A51E7042166AB7, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ExceptionArgument struct ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14 { public: // System.Int32 System.ExceptionArgument::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ExceptionResource struct ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A { public: // System.Int32 System.ExceptionResource::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.FileAccess struct FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6 { public: // System.Int32 System.IO.FileAccess::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.PlatformID struct PlatformID_t7969561D329B66D3E609C70CA506A519E06F2776 { public: // System.Int32 System.PlatformID::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlatformID_t7969561D329B66D3E609C70CA506A519E06F2776, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.CallingConventions struct CallingConventions_t495B6EF267B118F780C044F96BCDE78C1982C147 { public: // System.Int32 System.Reflection.CallingConventions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CallingConventions_t495B6EF267B118F780C044F96BCDE78C1982C147, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.ConstructorInfo struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF : public MethodBase_t { public: public: }; struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields { public: // System.String System.Reflection.ConstructorInfo::ConstructorName String_t* ___ConstructorName_0; // System.String System.Reflection.ConstructorInfo::TypeConstructorName String_t* ___TypeConstructorName_1; public: inline static int32_t get_offset_of_ConstructorName_0() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___ConstructorName_0)); } inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; } inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; } inline void set_ConstructorName_0(String_t* value) { ___ConstructorName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ConstructorName_0), (void*)value); } inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___TypeConstructorName_1)); } inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; } inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; } inline void set_TypeConstructorName_1(String_t* value) { ___TypeConstructorName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___TypeConstructorName_1), (void*)value); } }; // System.Reflection.GenericParameterAttributes struct GenericParameterAttributes_t63450AEBA1F27F81502722CE89E01BD01E27A8CE { public: // System.Int32 System.Reflection.GenericParameterAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GenericParameterAttributes_t63450AEBA1F27F81502722CE89E01BD01E27A8CE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.MemberTypes struct MemberTypes_t3FEDC67D8B994D09AF155FFB2CFD26023F245041 { public: // System.Int32 System.Reflection.MemberTypes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MemberTypes_t3FEDC67D8B994D09AF155FFB2CFD26023F245041, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { public: public: }; // System.Reflection.TypeAttributes struct TypeAttributes_tE6ACB574918E5D234E547DB66EE27142AC379B30 { public: // System.Int32 System.Reflection.TypeAttributes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeAttributes_tE6ACB574918E5D234E547DB66EE27142AC379B30, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Runtime.InteropServices.SafeHandle struct SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 : public CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 { public: // System.IntPtr System.Runtime.InteropServices.SafeHandle::handle intptr_t ___handle_0; // System.Int32 System.Runtime.InteropServices.SafeHandle::_state int32_t ____state_1; // System.Boolean System.Runtime.InteropServices.SafeHandle::_ownsHandle bool ____ownsHandle_2; // System.Boolean System.Runtime.InteropServices.SafeHandle::_fullyInitialized bool ____fullyInitialized_3; public: inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ___handle_0)); } inline intptr_t get_handle_0() const { return ___handle_0; } inline intptr_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(intptr_t value) { ___handle_0 = value; } inline static int32_t get_offset_of__state_1() { return static_cast<int32_t>(offsetof(SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ____state_1)); } inline int32_t get__state_1() const { return ____state_1; } inline int32_t* get_address_of__state_1() { return &____state_1; } inline void set__state_1(int32_t value) { ____state_1 = value; } inline static int32_t get_offset_of__ownsHandle_2() { return static_cast<int32_t>(offsetof(SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ____ownsHandle_2)); } inline bool get__ownsHandle_2() const { return ____ownsHandle_2; } inline bool* get_address_of__ownsHandle_2() { return &____ownsHandle_2; } inline void set__ownsHandle_2(bool value) { ____ownsHandle_2 = value; } inline static int32_t get_offset_of__fullyInitialized_3() { return static_cast<int32_t>(offsetof(SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383, ____fullyInitialized_3)); } inline bool get__fullyInitialized_3() const { return ____fullyInitialized_3; } inline bool* get_address_of__fullyInitialized_3() { return &____fullyInitialized_3; } inline void set__fullyInitialized_3(bool value) { ____fullyInitialized_3 = value; } }; // System.Runtime.Remoting.Contexts.Context struct Context_tE86AB6B3D9759C8E715184808579EFE761683724 : public RuntimeObject { public: // System.Int32 System.Runtime.Remoting.Contexts.Context::domain_id int32_t ___domain_id_0; // System.Int32 System.Runtime.Remoting.Contexts.Context::context_id int32_t ___context_id_1; // System.UIntPtr System.Runtime.Remoting.Contexts.Context::static_data uintptr_t ___static_data_2; // System.UIntPtr System.Runtime.Remoting.Contexts.Context::data uintptr_t ___data_3; // System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::server_context_sink_chain RuntimeObject* ___server_context_sink_chain_6; // System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::client_context_sink_chain RuntimeObject* ___client_context_sink_chain_7; // System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty> System.Runtime.Remoting.Contexts.Context::context_properties List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * ___context_properties_8; // System.LocalDataStoreHolder modreq(System.Runtime.CompilerServices.IsVolatile) System.Runtime.Remoting.Contexts.Context::_localDataStore LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ____localDataStore_10; // System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::context_dynamic_properties DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___context_dynamic_properties_13; // System.Runtime.Remoting.Contexts.ContextCallbackObject System.Runtime.Remoting.Contexts.Context::callback_object ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * ___callback_object_14; public: inline static int32_t get_offset_of_domain_id_0() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___domain_id_0)); } inline int32_t get_domain_id_0() const { return ___domain_id_0; } inline int32_t* get_address_of_domain_id_0() { return &___domain_id_0; } inline void set_domain_id_0(int32_t value) { ___domain_id_0 = value; } inline static int32_t get_offset_of_context_id_1() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___context_id_1)); } inline int32_t get_context_id_1() const { return ___context_id_1; } inline int32_t* get_address_of_context_id_1() { return &___context_id_1; } inline void set_context_id_1(int32_t value) { ___context_id_1 = value; } inline static int32_t get_offset_of_static_data_2() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___static_data_2)); } inline uintptr_t get_static_data_2() const { return ___static_data_2; } inline uintptr_t* get_address_of_static_data_2() { return &___static_data_2; } inline void set_static_data_2(uintptr_t value) { ___static_data_2 = value; } inline static int32_t get_offset_of_data_3() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___data_3)); } inline uintptr_t get_data_3() const { return ___data_3; } inline uintptr_t* get_address_of_data_3() { return &___data_3; } inline void set_data_3(uintptr_t value) { ___data_3 = value; } inline static int32_t get_offset_of_server_context_sink_chain_6() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___server_context_sink_chain_6)); } inline RuntimeObject* get_server_context_sink_chain_6() const { return ___server_context_sink_chain_6; } inline RuntimeObject** get_address_of_server_context_sink_chain_6() { return &___server_context_sink_chain_6; } inline void set_server_context_sink_chain_6(RuntimeObject* value) { ___server_context_sink_chain_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___server_context_sink_chain_6), (void*)value); } inline static int32_t get_offset_of_client_context_sink_chain_7() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___client_context_sink_chain_7)); } inline RuntimeObject* get_client_context_sink_chain_7() const { return ___client_context_sink_chain_7; } inline RuntimeObject** get_address_of_client_context_sink_chain_7() { return &___client_context_sink_chain_7; } inline void set_client_context_sink_chain_7(RuntimeObject* value) { ___client_context_sink_chain_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___client_context_sink_chain_7), (void*)value); } inline static int32_t get_offset_of_context_properties_8() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___context_properties_8)); } inline List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * get_context_properties_8() const { return ___context_properties_8; } inline List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D ** get_address_of_context_properties_8() { return &___context_properties_8; } inline void set_context_properties_8(List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * value) { ___context_properties_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___context_properties_8), (void*)value); } inline static int32_t get_offset_of__localDataStore_10() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ____localDataStore_10)); } inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * get__localDataStore_10() const { return ____localDataStore_10; } inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 ** get_address_of__localDataStore_10() { return &____localDataStore_10; } inline void set__localDataStore_10(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * value) { ____localDataStore_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____localDataStore_10), (void*)value); } inline static int32_t get_offset_of_context_dynamic_properties_13() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___context_dynamic_properties_13)); } inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get_context_dynamic_properties_13() const { return ___context_dynamic_properties_13; } inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of_context_dynamic_properties_13() { return &___context_dynamic_properties_13; } inline void set_context_dynamic_properties_13(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value) { ___context_dynamic_properties_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___context_dynamic_properties_13), (void*)value); } inline static int32_t get_offset_of_callback_object_14() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___callback_object_14)); } inline ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * get_callback_object_14() const { return ___callback_object_14; } inline ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 ** get_address_of_callback_object_14() { return &___callback_object_14; } inline void set_callback_object_14(ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * value) { ___callback_object_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_object_14), (void*)value); } }; struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields { public: // System.Object[] System.Runtime.Remoting.Contexts.Context::local_slots ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___local_slots_4; // System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::default_server_context_sink RuntimeObject* ___default_server_context_sink_5; // System.Int32 System.Runtime.Remoting.Contexts.Context::global_count int32_t ___global_count_9; // System.LocalDataStoreMgr System.Runtime.Remoting.Contexts.Context::_localDataStoreMgr LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ____localDataStoreMgr_11; // System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::global_dynamic_properties DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___global_dynamic_properties_12; public: inline static int32_t get_offset_of_local_slots_4() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___local_slots_4)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_local_slots_4() const { return ___local_slots_4; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_local_slots_4() { return &___local_slots_4; } inline void set_local_slots_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___local_slots_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___local_slots_4), (void*)value); } inline static int32_t get_offset_of_default_server_context_sink_5() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___default_server_context_sink_5)); } inline RuntimeObject* get_default_server_context_sink_5() const { return ___default_server_context_sink_5; } inline RuntimeObject** get_address_of_default_server_context_sink_5() { return &___default_server_context_sink_5; } inline void set_default_server_context_sink_5(RuntimeObject* value) { ___default_server_context_sink_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_server_context_sink_5), (void*)value); } inline static int32_t get_offset_of_global_count_9() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___global_count_9)); } inline int32_t get_global_count_9() const { return ___global_count_9; } inline int32_t* get_address_of_global_count_9() { return &___global_count_9; } inline void set_global_count_9(int32_t value) { ___global_count_9 = value; } inline static int32_t get_offset_of__localDataStoreMgr_11() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ____localDataStoreMgr_11)); } inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get__localDataStoreMgr_11() const { return ____localDataStoreMgr_11; } inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of__localDataStoreMgr_11() { return &____localDataStoreMgr_11; } inline void set__localDataStoreMgr_11(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value) { ____localDataStoreMgr_11 = value; Il2CppCodeGenWriteBarrier((void**)(&____localDataStoreMgr_11), (void*)value); } inline static int32_t get_offset_of_global_dynamic_properties_12() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___global_dynamic_properties_12)); } inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get_global_dynamic_properties_12() const { return ___global_dynamic_properties_12; } inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of_global_dynamic_properties_12() { return &___global_dynamic_properties_12; } inline void set_global_dynamic_properties_12(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value) { ___global_dynamic_properties_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___global_dynamic_properties_12), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Runtime.Remoting.Contexts.Context struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke { int32_t ___domain_id_0; int32_t ___context_id_1; uintptr_t ___static_data_2; uintptr_t ___data_3; RuntimeObject* ___server_context_sink_chain_6; RuntimeObject* ___client_context_sink_chain_7; List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * ___context_properties_8; LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ____localDataStore_10; DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___context_dynamic_properties_13; ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * ___callback_object_14; }; // Native definition for COM marshalling of System.Runtime.Remoting.Contexts.Context struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com { int32_t ___domain_id_0; int32_t ___context_id_1; uintptr_t ___static_data_2; uintptr_t ___data_3; RuntimeObject* ___server_context_sink_chain_6; RuntimeObject* ___client_context_sink_chain_7; List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * ___context_properties_8; LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ____localDataStore_10; DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___context_dynamic_properties_13; ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * ___callback_object_14; }; // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.StringComparison struct StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.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((void**)(&___m_callbackInfo_0), (void*)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; Il2CppCodeGenWriteBarrier((void**)&(((&___m_registrationInfo_1))->___m_source_0), (void*)NULL); } }; // 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; }; // System.Threading.ExecutionContext_CaptureOptions struct CaptureOptions_t7D9885DDA178752A2B4CA4EB542756102B918B6C { public: // System.Int32 System.Threading.ExecutionContext_CaptureOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CaptureOptions_t7D9885DDA178752A2B4CA4EB542756102B918B6C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Threading.ExecutionContext_Flags struct Flags_t8F565E43354BBB9A79D7F0308B469D11A82268BD { public: // System.Int32 System.Threading.ExecutionContext_Flags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_t8F565E43354BBB9A79D7F0308B469D11A82268BD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Threading.ManualResetEventSlim struct ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 : public RuntimeObject { public: // System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ManualResetEventSlim::m_lock RuntimeObject * ___m_lock_0; // System.Threading.ManualResetEvent modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ManualResetEventSlim::m_eventObj ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_eventObj_1; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ManualResetEventSlim::m_combinedState int32_t ___m_combinedState_2; public: inline static int32_t get_offset_of_m_lock_0() { return static_cast<int32_t>(offsetof(ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445, ___m_lock_0)); } inline RuntimeObject * get_m_lock_0() const { return ___m_lock_0; } inline RuntimeObject ** get_address_of_m_lock_0() { return &___m_lock_0; } inline void set_m_lock_0(RuntimeObject * value) { ___m_lock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_lock_0), (void*)value); } inline static int32_t get_offset_of_m_eventObj_1() { return static_cast<int32_t>(offsetof(ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445, ___m_eventObj_1)); } inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get_m_eventObj_1() const { return ___m_eventObj_1; } inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of_m_eventObj_1() { return &___m_eventObj_1; } inline void set_m_eventObj_1(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value) { ___m_eventObj_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventObj_1), (void*)value); } inline static int32_t get_offset_of_m_combinedState_2() { return static_cast<int32_t>(offsetof(ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445, ___m_combinedState_2)); } inline int32_t get_m_combinedState_2() const { return ___m_combinedState_2; } inline int32_t* get_address_of_m_combinedState_2() { return &___m_combinedState_2; } inline void set_m_combinedState_2(int32_t value) { ___m_combinedState_2 = value; } }; struct ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445_StaticFields { public: // System.Action`1<System.Object> System.Threading.ManualResetEventSlim::s_cancellationTokenCallback Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_cancellationTokenCallback_3; public: inline static int32_t get_offset_of_s_cancellationTokenCallback_3() { return static_cast<int32_t>(offsetof(ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445_StaticFields, ___s_cancellationTokenCallback_3)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_cancellationTokenCallback_3() const { return ___s_cancellationTokenCallback_3; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_cancellationTokenCallback_3() { return &___s_cancellationTokenCallback_3; } inline void set_s_cancellationTokenCallback_3(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ___s_cancellationTokenCallback_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_cancellationTokenCallback_3), (void*)value); } }; // System.Threading.SpinLock struct SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 { public: // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SpinLock::m_owner int32_t ___m_owner_0; public: inline static int32_t get_offset_of_m_owner_0() { return static_cast<int32_t>(offsetof(SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1, ___m_owner_0)); } inline int32_t get_m_owner_0() const { return ___m_owner_0; } inline int32_t* get_address_of_m_owner_0() { return &___m_owner_0; } inline void set_m_owner_0(int32_t value) { ___m_owner_0 = value; } }; struct SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1_StaticFields { public: // System.Int32 System.Threading.SpinLock::MAXIMUM_WAITERS int32_t ___MAXIMUM_WAITERS_1; public: inline static int32_t get_offset_of_MAXIMUM_WAITERS_1() { return static_cast<int32_t>(offsetof(SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1_StaticFields, ___MAXIMUM_WAITERS_1)); } inline int32_t get_MAXIMUM_WAITERS_1() const { return ___MAXIMUM_WAITERS_1; } inline int32_t* get_address_of_MAXIMUM_WAITERS_1() { return &___MAXIMUM_WAITERS_1; } inline void set_MAXIMUM_WAITERS_1(int32_t value) { ___MAXIMUM_WAITERS_1 = value; } }; // 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; } }; // System.Threading.Tasks.AsyncCausalityStatus struct AsyncCausalityStatus_t551C8435E137F3CE15E458A31D0FF0825FD5FA21 { public: // System.Int32 System.Threading.Tasks.AsyncCausalityStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AsyncCausalityStatus_t551C8435E137F3CE15E458A31D0FF0825FD5FA21, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Threading.Tasks.CausalityRelation struct CausalityRelation_t7B7C548905BFF2D0E24701E2D4FE85DF2C68840A { public: // System.Int32 System.Threading.Tasks.CausalityRelation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CausalityRelation_t7B7C548905BFF2D0E24701E2D4FE85DF2C68840A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Threading.Tasks.CausalityTraceLevel struct CausalityTraceLevel_t43E68E9AA92AD875A33C16851EFA189EA7D394EE { public: // System.Int32 System.Threading.Tasks.CausalityTraceLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CausalityTraceLevel_t43E68E9AA92AD875A33C16851EFA189EA7D394EE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.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; } }; // 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((void**)(&___m_action_5), (void*)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((void**)(&___m_stateObject_6), (void*)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((void**)(&___m_taskScheduler_7), (void*)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((void**)(&___m_parent_8), (void*)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((void**)(&___m_continuationObject_10), (void*)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((void**)(&___m_contingentProperties_15), (void*)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((void**)(&___s_factory_3), (void*)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((void**)(&___s_taskCompletionSentinel_11), (void*)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((void**)(&___s_currentActiveTasks_13), (void*)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((void**)(&___s_activeTasksLock_14), (void*)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((void**)(&___s_taskCancelCallback_16), (void*)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((void**)(&___s_createContingentProperties_17), (void*)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((void**)(&___s_completedTask_18), (void*)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((void**)(&___s_IsExceptionObservedByParentPredicate_19), (void*)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((void**)(&___s_ecCallback_20), (void*)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((void**)(&___s_IsTaskContinuationNullPredicate_21), (void*)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((void**)(&___t_currentTask_0), (void*)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((void**)(&___t_stackGuard_1), (void*)value); } }; // System.Threading.Tasks.Task_ContingentProperties struct ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 : public RuntimeObject { public: // System.Threading.ExecutionContext System.Threading.Tasks.Task_ContingentProperties::m_capturedContext ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_capturedContext_0; // System.Threading.ManualResetEventSlim modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task_ContingentProperties::m_completionEvent ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * ___m_completionEvent_1; // System.Threading.Tasks.TaskExceptionHolder modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task_ContingentProperties::m_exceptionsHolder TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * ___m_exceptionsHolder_2; // System.Threading.CancellationToken System.Threading.Tasks.Task_ContingentProperties::m_cancellationToken CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___m_cancellationToken_3; // System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration> System.Threading.Tasks.Task_ContingentProperties::m_cancellationRegistration Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 * ___m_cancellationRegistration_4; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task_ContingentProperties::m_internalCancellationRequested int32_t ___m_internalCancellationRequested_5; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task_ContingentProperties::m_completionCountdown int32_t ___m_completionCountdown_6; // System.Collections.Generic.List`1<System.Threading.Tasks.Task> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task_ContingentProperties::m_exceptionalChildren List_1_tC62C1E1B0AD84992F0A374A5A4679609955E117E * ___m_exceptionalChildren_7; public: inline static int32_t get_offset_of_m_capturedContext_0() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_capturedContext_0)); } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_m_capturedContext_0() const { return ___m_capturedContext_0; } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_m_capturedContext_0() { return &___m_capturedContext_0; } inline void set_m_capturedContext_0(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value) { ___m_capturedContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_capturedContext_0), (void*)value); } inline static int32_t get_offset_of_m_completionEvent_1() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_completionEvent_1)); } inline ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * get_m_completionEvent_1() const { return ___m_completionEvent_1; } inline ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 ** get_address_of_m_completionEvent_1() { return &___m_completionEvent_1; } inline void set_m_completionEvent_1(ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * value) { ___m_completionEvent_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_completionEvent_1), (void*)value); } inline static int32_t get_offset_of_m_exceptionsHolder_2() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_exceptionsHolder_2)); } inline TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * get_m_exceptionsHolder_2() const { return ___m_exceptionsHolder_2; } inline TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 ** get_address_of_m_exceptionsHolder_2() { return &___m_exceptionsHolder_2; } inline void set_m_exceptionsHolder_2(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * value) { ___m_exceptionsHolder_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_exceptionsHolder_2), (void*)value); } inline static int32_t get_offset_of_m_cancellationToken_3() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_cancellationToken_3)); } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_m_cancellationToken_3() const { return ___m_cancellationToken_3; } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_m_cancellationToken_3() { return &___m_cancellationToken_3; } inline void set_m_cancellationToken_3(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value) { ___m_cancellationToken_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_cancellationToken_3))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_m_cancellationRegistration_4() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_cancellationRegistration_4)); } inline Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 * get_m_cancellationRegistration_4() const { return ___m_cancellationRegistration_4; } inline Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 ** get_address_of_m_cancellationRegistration_4() { return &___m_cancellationRegistration_4; } inline void set_m_cancellationRegistration_4(Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 * value) { ___m_cancellationRegistration_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cancellationRegistration_4), (void*)value); } inline static int32_t get_offset_of_m_internalCancellationRequested_5() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_internalCancellationRequested_5)); } inline int32_t get_m_internalCancellationRequested_5() const { return ___m_internalCancellationRequested_5; } inline int32_t* get_address_of_m_internalCancellationRequested_5() { return &___m_internalCancellationRequested_5; } inline void set_m_internalCancellationRequested_5(int32_t value) { ___m_internalCancellationRequested_5 = value; } inline static int32_t get_offset_of_m_completionCountdown_6() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_completionCountdown_6)); } inline int32_t get_m_completionCountdown_6() const { return ___m_completionCountdown_6; } inline int32_t* get_address_of_m_completionCountdown_6() { return &___m_completionCountdown_6; } inline void set_m_completionCountdown_6(int32_t value) { ___m_completionCountdown_6 = value; } inline static int32_t get_offset_of_m_exceptionalChildren_7() { return static_cast<int32_t>(offsetof(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08, ___m_exceptionalChildren_7)); } inline List_1_tC62C1E1B0AD84992F0A374A5A4679609955E117E * get_m_exceptionalChildren_7() const { return ___m_exceptionalChildren_7; } inline List_1_tC62C1E1B0AD84992F0A374A5A4679609955E117E ** get_address_of_m_exceptionalChildren_7() { return &___m_exceptionalChildren_7; } inline void set_m_exceptionalChildren_7(List_1_tC62C1E1B0AD84992F0A374A5A4679609955E117E * value) { ___m_exceptionalChildren_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_exceptionalChildren_7), (void*)value); } }; // 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; } }; // 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; } }; // System.Threading.Tasks.TaskExceptionHolder struct TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 : public RuntimeObject { public: // System.Threading.Tasks.Task System.Threading.Tasks.TaskExceptionHolder::m_task Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_task_3; // System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * ___m_faultExceptions_4; // System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Threading.Tasks.TaskExceptionHolder::m_cancellationException ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ___m_cancellationException_5; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_isHandled bool ___m_isHandled_6; public: inline static int32_t get_offset_of_m_task_3() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811, ___m_task_3)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_m_task_3() const { return ___m_task_3; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_m_task_3() { return &___m_task_3; } inline void set_m_task_3(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ___m_task_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_task_3), (void*)value); } inline static int32_t get_offset_of_m_faultExceptions_4() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811, ___m_faultExceptions_4)); } inline List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * get_m_faultExceptions_4() const { return ___m_faultExceptions_4; } inline List_1_tCD04260AE1254C438132446F1E6892AB86D18743 ** get_address_of_m_faultExceptions_4() { return &___m_faultExceptions_4; } inline void set_m_faultExceptions_4(List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * value) { ___m_faultExceptions_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_faultExceptions_4), (void*)value); } inline static int32_t get_offset_of_m_cancellationException_5() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811, ___m_cancellationException_5)); } inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * get_m_cancellationException_5() const { return ___m_cancellationException_5; } inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A ** get_address_of_m_cancellationException_5() { return &___m_cancellationException_5; } inline void set_m_cancellationException_5(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * value) { ___m_cancellationException_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cancellationException_5), (void*)value); } inline static int32_t get_offset_of_m_isHandled_6() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811, ___m_isHandled_6)); } inline bool get_m_isHandled_6() const { return ___m_isHandled_6; } inline bool* get_address_of_m_isHandled_6() { return &___m_isHandled_6; } inline void set_m_isHandled_6(bool value) { ___m_isHandled_6 = value; } }; struct TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_StaticFields { public: // System.Boolean System.Threading.Tasks.TaskExceptionHolder::s_failFastOnUnobservedException bool ___s_failFastOnUnobservedException_0; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::s_domainUnloadStarted bool ___s_domainUnloadStarted_1; // System.EventHandler modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::s_adUnloadEventHandler EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___s_adUnloadEventHandler_2; public: inline static int32_t get_offset_of_s_failFastOnUnobservedException_0() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_StaticFields, ___s_failFastOnUnobservedException_0)); } inline bool get_s_failFastOnUnobservedException_0() const { return ___s_failFastOnUnobservedException_0; } inline bool* get_address_of_s_failFastOnUnobservedException_0() { return &___s_failFastOnUnobservedException_0; } inline void set_s_failFastOnUnobservedException_0(bool value) { ___s_failFastOnUnobservedException_0 = value; } inline static int32_t get_offset_of_s_domainUnloadStarted_1() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_StaticFields, ___s_domainUnloadStarted_1)); } inline bool get_s_domainUnloadStarted_1() const { return ___s_domainUnloadStarted_1; } inline bool* get_address_of_s_domainUnloadStarted_1() { return &___s_domainUnloadStarted_1; } inline void set_s_domainUnloadStarted_1(bool value) { ___s_domainUnloadStarted_1 = value; } inline static int32_t get_offset_of_s_adUnloadEventHandler_2() { return static_cast<int32_t>(offsetof(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_StaticFields, ___s_adUnloadEventHandler_2)); } inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * get_s_adUnloadEventHandler_2() const { return ___s_adUnloadEventHandler_2; } inline EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C ** get_address_of_s_adUnloadEventHandler_2() { return &___s_adUnloadEventHandler_2; } inline void set_s_adUnloadEventHandler_2(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * value) { ___s_adUnloadEventHandler_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_adUnloadEventHandler_2), (void*)value); } }; // 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((void**)(&___s_activeTaskSchedulers_0), (void*)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((void**)(&___s_defaultTaskScheduler_1), (void*)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((void**)(&____unobservedTaskException_4), (void*)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((void**)(&____unobservedTaskExceptionLockObject_5), (void*)value); } }; // System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation struct TaskSchedulerAwaitTaskContinuation_t08B24138EF6D3AC7A821332F15F5A5A0F08543B6 : public AwaitTaskContinuation_t883E8FB9C34A1024B54F2D4A9CCBA21CC595286F { public: // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation::m_scheduler TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___m_scheduler_3; public: inline static int32_t get_offset_of_m_scheduler_3() { return static_cast<int32_t>(offsetof(TaskSchedulerAwaitTaskContinuation_t08B24138EF6D3AC7A821332F15F5A5A0F08543B6, ___m_scheduler_3)); } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_m_scheduler_3() const { return ___m_scheduler_3; } inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_m_scheduler_3() { return &___m_scheduler_3; } inline void set_m_scheduler_3(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value) { ___m_scheduler_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_scheduler_3), (void*)value); } }; // System.Threading.Tasks.TaskStatus struct TaskStatus_t4DB45EB7777EB16CEB85E12E43C4F56EAFA59A99 { public: // System.Int32 System.Threading.Tasks.TaskStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskStatus_t4DB45EB7777EB16CEB85E12E43C4F56EAFA59A99, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Threading.ThreadPoolGlobals struct ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5 : public RuntimeObject { public: public: }; struct ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields { public: // System.UInt32 System.Threading.ThreadPoolGlobals::tpQuantum uint32_t ___tpQuantum_0; // System.Int32 System.Threading.ThreadPoolGlobals::processorCount int32_t ___processorCount_1; // System.Boolean System.Threading.ThreadPoolGlobals::tpHosted bool ___tpHosted_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolGlobals::vmTpInitialized bool ___vmTpInitialized_3; // System.Boolean System.Threading.ThreadPoolGlobals::enableWorkerTracking bool ___enableWorkerTracking_4; // System.Threading.ThreadPoolWorkQueue System.Threading.ThreadPoolGlobals::workQueue ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * ___workQueue_5; public: inline static int32_t get_offset_of_tpQuantum_0() { return static_cast<int32_t>(offsetof(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields, ___tpQuantum_0)); } inline uint32_t get_tpQuantum_0() const { return ___tpQuantum_0; } inline uint32_t* get_address_of_tpQuantum_0() { return &___tpQuantum_0; } inline void set_tpQuantum_0(uint32_t value) { ___tpQuantum_0 = value; } inline static int32_t get_offset_of_processorCount_1() { return static_cast<int32_t>(offsetof(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields, ___processorCount_1)); } inline int32_t get_processorCount_1() const { return ___processorCount_1; } inline int32_t* get_address_of_processorCount_1() { return &___processorCount_1; } inline void set_processorCount_1(int32_t value) { ___processorCount_1 = value; } inline static int32_t get_offset_of_tpHosted_2() { return static_cast<int32_t>(offsetof(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields, ___tpHosted_2)); } inline bool get_tpHosted_2() const { return ___tpHosted_2; } inline bool* get_address_of_tpHosted_2() { return &___tpHosted_2; } inline void set_tpHosted_2(bool value) { ___tpHosted_2 = value; } inline static int32_t get_offset_of_vmTpInitialized_3() { return static_cast<int32_t>(offsetof(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields, ___vmTpInitialized_3)); } inline bool get_vmTpInitialized_3() const { return ___vmTpInitialized_3; } inline bool* get_address_of_vmTpInitialized_3() { return &___vmTpInitialized_3; } inline void set_vmTpInitialized_3(bool value) { ___vmTpInitialized_3 = value; } inline static int32_t get_offset_of_enableWorkerTracking_4() { return static_cast<int32_t>(offsetof(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields, ___enableWorkerTracking_4)); } inline bool get_enableWorkerTracking_4() const { return ___enableWorkerTracking_4; } inline bool* get_address_of_enableWorkerTracking_4() { return &___enableWorkerTracking_4; } inline void set_enableWorkerTracking_4(bool value) { ___enableWorkerTracking_4 = value; } inline static int32_t get_offset_of_workQueue_5() { return static_cast<int32_t>(offsetof(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields, ___workQueue_5)); } inline ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * get_workQueue_5() const { return ___workQueue_5; } inline ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 ** get_address_of_workQueue_5() { return &___workQueue_5; } inline void set_workQueue_5(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * value) { ___workQueue_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___workQueue_5), (void*)value); } }; // System.Threading.ThreadPoolWorkQueue struct ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 : public RuntimeObject { public: // System.Threading.ThreadPoolWorkQueue_QueueSegment modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue::queueHead QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * ___queueHead_0; // System.Threading.ThreadPoolWorkQueue_QueueSegment modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue::queueTail QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * ___queueTail_1; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue::numOutstandingThreadRequests int32_t ___numOutstandingThreadRequests_3; public: inline static int32_t get_offset_of_queueHead_0() { return static_cast<int32_t>(offsetof(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011, ___queueHead_0)); } inline QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * get_queueHead_0() const { return ___queueHead_0; } inline QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE ** get_address_of_queueHead_0() { return &___queueHead_0; } inline void set_queueHead_0(QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * value) { ___queueHead_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___queueHead_0), (void*)value); } inline static int32_t get_offset_of_queueTail_1() { return static_cast<int32_t>(offsetof(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011, ___queueTail_1)); } inline QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * get_queueTail_1() const { return ___queueTail_1; } inline QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE ** get_address_of_queueTail_1() { return &___queueTail_1; } inline void set_queueTail_1(QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * value) { ___queueTail_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___queueTail_1), (void*)value); } inline static int32_t get_offset_of_numOutstandingThreadRequests_3() { return static_cast<int32_t>(offsetof(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011, ___numOutstandingThreadRequests_3)); } inline int32_t get_numOutstandingThreadRequests_3() const { return ___numOutstandingThreadRequests_3; } inline int32_t* get_address_of_numOutstandingThreadRequests_3() { return &___numOutstandingThreadRequests_3; } inline void set_numOutstandingThreadRequests_3(int32_t value) { ___numOutstandingThreadRequests_3 = value; } }; struct ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_StaticFields { public: // System.Threading.ThreadPoolWorkQueue_SparseArray`1<System.Threading.ThreadPoolWorkQueue_WorkStealingQueue> System.Threading.ThreadPoolWorkQueue::allThreadQueues SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB * ___allThreadQueues_2; public: inline static int32_t get_offset_of_allThreadQueues_2() { return static_cast<int32_t>(offsetof(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_StaticFields, ___allThreadQueues_2)); } inline SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB * get_allThreadQueues_2() const { return ___allThreadQueues_2; } inline SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB ** get_address_of_allThreadQueues_2() { return &___allThreadQueues_2; } inline void set_allThreadQueues_2(SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB * value) { ___allThreadQueues_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___allThreadQueues_2), (void*)value); } }; // System.Threading.ThreadPoolWorkQueue_QueueSegment struct QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE : public RuntimeObject { public: // System.Threading.IThreadPoolWorkItem[] System.Threading.ThreadPoolWorkQueue_QueueSegment::nodes IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* ___nodes_0; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue_QueueSegment::indexes int32_t ___indexes_1; // System.Threading.ThreadPoolWorkQueue_QueueSegment modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue_QueueSegment::Next QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * ___Next_2; public: inline static int32_t get_offset_of_nodes_0() { return static_cast<int32_t>(offsetof(QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE, ___nodes_0)); } inline IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* get_nodes_0() const { return ___nodes_0; } inline IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154** get_address_of_nodes_0() { return &___nodes_0; } inline void set_nodes_0(IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* value) { ___nodes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___nodes_0), (void*)value); } inline static int32_t get_offset_of_indexes_1() { return static_cast<int32_t>(offsetof(QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE, ___indexes_1)); } inline int32_t get_indexes_1() const { return ___indexes_1; } inline int32_t* get_address_of_indexes_1() { return &___indexes_1; } inline void set_indexes_1(int32_t value) { ___indexes_1 = value; } inline static int32_t get_offset_of_Next_2() { return static_cast<int32_t>(offsetof(QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE, ___Next_2)); } inline QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * get_Next_2() const { return ___Next_2; } inline QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE ** get_address_of_Next_2() { return &___Next_2; } inline void set_Next_2(QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * value) { ___Next_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Next_2), (void*)value); } }; // System.Threading.ThreadState struct ThreadState_t5DE1FACD0DA096CCF07D144CBEB4D124CECC671E { public: // System.Int32 System.Threading.ThreadState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ThreadState_t5DE1FACD0DA096CCF07D144CBEB4D124CECC671E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Threading.WaitHandle struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: // System.IntPtr System.Threading.WaitHandle::waitHandle intptr_t ___waitHandle_3; // Microsoft.Win32.SafeHandles.SafeWaitHandle modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.WaitHandle::safeWaitHandle SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * ___safeWaitHandle_4; // System.Boolean System.Threading.WaitHandle::hasThreadAffinity bool ___hasThreadAffinity_5; public: inline static int32_t get_offset_of_waitHandle_3() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___waitHandle_3)); } inline intptr_t get_waitHandle_3() const { return ___waitHandle_3; } inline intptr_t* get_address_of_waitHandle_3() { return &___waitHandle_3; } inline void set_waitHandle_3(intptr_t value) { ___waitHandle_3 = value; } inline static int32_t get_offset_of_safeWaitHandle_4() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___safeWaitHandle_4)); } inline SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * get_safeWaitHandle_4() const { return ___safeWaitHandle_4; } inline SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 ** get_address_of_safeWaitHandle_4() { return &___safeWaitHandle_4; } inline void set_safeWaitHandle_4(SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * value) { ___safeWaitHandle_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___safeWaitHandle_4), (void*)value); } inline static int32_t get_offset_of_hasThreadAffinity_5() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___hasThreadAffinity_5)); } inline bool get_hasThreadAffinity_5() const { return ___hasThreadAffinity_5; } inline bool* get_address_of_hasThreadAffinity_5() { return &___hasThreadAffinity_5; } inline void set_hasThreadAffinity_5(bool value) { ___hasThreadAffinity_5 = value; } }; struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields { public: // System.IntPtr System.Threading.WaitHandle::InvalidHandle intptr_t ___InvalidHandle_10; public: inline static int32_t get_offset_of_InvalidHandle_10() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields, ___InvalidHandle_10)); } inline intptr_t get_InvalidHandle_10() const { return ___InvalidHandle_10; } inline intptr_t* get_address_of_InvalidHandle_10() { return &___InvalidHandle_10; } inline void set_InvalidHandle_10(intptr_t value) { ___InvalidHandle_10 = value; } }; // Native definition for P/Invoke marshalling of System.Threading.WaitHandle struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke { intptr_t ___waitHandle_3; void* ___safeWaitHandle_4; int32_t ___hasThreadAffinity_5; }; // Native definition for COM marshalling of System.Threading.WaitHandle struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com { intptr_t ___waitHandle_3; void* ___safeWaitHandle_4; int32_t ___hasThreadAffinity_5; }; // 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; } }; // System.TimeZoneInfo_TIME_ZONE_INFORMATION struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 { public: // System.Int32 System.TimeZoneInfo_TIME_ZONE_INFORMATION::Bias int32_t ___Bias_0; // System.String System.TimeZoneInfo_TIME_ZONE_INFORMATION::StandardName String_t* ___StandardName_1; // System.TimeZoneInfo_SYSTEMTIME System.TimeZoneInfo_TIME_ZONE_INFORMATION::StandardDate SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___StandardDate_2; // System.Int32 System.TimeZoneInfo_TIME_ZONE_INFORMATION::StandardBias int32_t ___StandardBias_3; // System.String System.TimeZoneInfo_TIME_ZONE_INFORMATION::DaylightName String_t* ___DaylightName_4; // System.TimeZoneInfo_SYSTEMTIME System.TimeZoneInfo_TIME_ZONE_INFORMATION::DaylightDate SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___DaylightDate_5; // System.Int32 System.TimeZoneInfo_TIME_ZONE_INFORMATION::DaylightBias int32_t ___DaylightBias_6; public: inline static int32_t get_offset_of_Bias_0() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___Bias_0)); } inline int32_t get_Bias_0() const { return ___Bias_0; } inline int32_t* get_address_of_Bias_0() { return &___Bias_0; } inline void set_Bias_0(int32_t value) { ___Bias_0 = value; } inline static int32_t get_offset_of_StandardName_1() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___StandardName_1)); } inline String_t* get_StandardName_1() const { return ___StandardName_1; } inline String_t** get_address_of_StandardName_1() { return &___StandardName_1; } inline void set_StandardName_1(String_t* value) { ___StandardName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___StandardName_1), (void*)value); } inline static int32_t get_offset_of_StandardDate_2() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___StandardDate_2)); } inline SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 get_StandardDate_2() const { return ___StandardDate_2; } inline SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 * get_address_of_StandardDate_2() { return &___StandardDate_2; } inline void set_StandardDate_2(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 value) { ___StandardDate_2 = value; } inline static int32_t get_offset_of_StandardBias_3() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___StandardBias_3)); } inline int32_t get_StandardBias_3() const { return ___StandardBias_3; } inline int32_t* get_address_of_StandardBias_3() { return &___StandardBias_3; } inline void set_StandardBias_3(int32_t value) { ___StandardBias_3 = value; } inline static int32_t get_offset_of_DaylightName_4() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___DaylightName_4)); } inline String_t* get_DaylightName_4() const { return ___DaylightName_4; } inline String_t** get_address_of_DaylightName_4() { return &___DaylightName_4; } inline void set_DaylightName_4(String_t* value) { ___DaylightName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaylightName_4), (void*)value); } inline static int32_t get_offset_of_DaylightDate_5() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___DaylightDate_5)); } inline SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 get_DaylightDate_5() const { return ___DaylightDate_5; } inline SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 * get_address_of_DaylightDate_5() { return &___DaylightDate_5; } inline void set_DaylightDate_5(SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 value) { ___DaylightDate_5 = value; } inline static int32_t get_offset_of_DaylightBias_6() { return static_cast<int32_t>(offsetof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811, ___DaylightBias_6)); } inline int32_t get_DaylightBias_6() const { return ___DaylightBias_6; } inline int32_t* get_address_of_DaylightBias_6() { return &___DaylightBias_6; } inline void set_DaylightBias_6(int32_t value) { ___DaylightBias_6 = value; } }; // Native definition for P/Invoke marshalling of System.TimeZoneInfo/TIME_ZONE_INFORMATION struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke { int32_t ___Bias_0; Il2CppChar ___StandardName_1[32]; SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___StandardDate_2; int32_t ___StandardBias_3; Il2CppChar ___DaylightName_4[32]; SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___DaylightDate_5; int32_t ___DaylightBias_6; }; // Native definition for COM marshalling of System.TimeZoneInfo/TIME_ZONE_INFORMATION struct TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com { int32_t ___Bias_0; Il2CppChar ___StandardName_1[32]; SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___StandardDate_2; int32_t ___StandardBias_3; Il2CppChar ___DaylightName_4[32]; SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 ___DaylightDate_5; int32_t ___DaylightBias_6; }; // System.TimeZoneInfoOptions struct TimeZoneInfoOptions_t123D8B5A23D3DE107FB9D3A29BF5952895C652EE { public: // System.Int32 System.TimeZoneInfoOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TimeZoneInfoOptions_t123D8B5A23D3DE107FB9D3A29BF5952895C652EE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TokenType struct TokenType_t192580F19CFCC8A71F0BD44B8BE1056BA64D869A { public: // System.Int32 System.TokenType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TokenType_t192580F19CFCC8A71F0BD44B8BE1056BA64D869A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TypeCode struct TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6 { public: // System.Int32 System.TypeCode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeCode_t03ED52F888000DAF40C550C434F29F39A23D61C6, ___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; } }; // Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid struct SafeHandleZeroOrMinusOneIsInvalid_t779A965C82098677DF1ED10A134DBCDEC8AACB8E : public SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 { public: public: }; // System.AggregateException struct AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E : public Exception_t { public: // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> System.AggregateException::m_innerExceptions ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * ___m_innerExceptions_17; public: inline static int32_t get_offset_of_m_innerExceptions_17() { return static_cast<int32_t>(offsetof(AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E, ___m_innerExceptions_17)); } inline ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * get_m_innerExceptions_17() const { return ___m_innerExceptions_17; } inline ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 ** get_address_of_m_innerExceptions_17() { return &___m_innerExceptions_17; } inline void set_m_innerExceptions_17(ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * value) { ___m_innerExceptions_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_innerExceptions_17), (void*)value); } }; // System.ApplicationException struct ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 : public Exception_t { public: public: }; // System.IO.FileStream struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 { public: // System.Byte[] System.IO.FileStream::buf ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_6; // System.String System.IO.FileStream::name String_t* ___name_7; // Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * ___safeHandle_8; // System.Boolean System.IO.FileStream::isExposed bool ___isExposed_9; // System.Int64 System.IO.FileStream::append_startpos int64_t ___append_startpos_10; // System.IO.FileAccess System.IO.FileStream::access int32_t ___access_11; // System.Boolean System.IO.FileStream::owner bool ___owner_12; // System.Boolean System.IO.FileStream::async bool ___async_13; // System.Boolean System.IO.FileStream::canseek bool ___canseek_14; // System.Boolean System.IO.FileStream::anonymous bool ___anonymous_15; // System.Boolean System.IO.FileStream::buf_dirty bool ___buf_dirty_16; // System.Int32 System.IO.FileStream::buf_size int32_t ___buf_size_17; // System.Int32 System.IO.FileStream::buf_length int32_t ___buf_length_18; // System.Int32 System.IO.FileStream::buf_offset int32_t ___buf_offset_19; // System.Int64 System.IO.FileStream::buf_start int64_t ___buf_start_20; public: inline static int32_t get_offset_of_buf_6() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_6)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_6() const { return ___buf_6; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_6() { return &___buf_6; } inline void set_buf_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___buf_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_6), (void*)value); } inline static int32_t get_offset_of_name_7() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___name_7)); } inline String_t* get_name_7() const { return ___name_7; } inline String_t** get_address_of_name_7() { return &___name_7; } inline void set_name_7(String_t* value) { ___name_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_7), (void*)value); } inline static int32_t get_offset_of_safeHandle_8() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___safeHandle_8)); } inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * get_safeHandle_8() const { return ___safeHandle_8; } inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB ** get_address_of_safeHandle_8() { return &___safeHandle_8; } inline void set_safeHandle_8(SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * value) { ___safeHandle_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___safeHandle_8), (void*)value); } inline static int32_t get_offset_of_isExposed_9() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___isExposed_9)); } inline bool get_isExposed_9() const { return ___isExposed_9; } inline bool* get_address_of_isExposed_9() { return &___isExposed_9; } inline void set_isExposed_9(bool value) { ___isExposed_9 = value; } inline static int32_t get_offset_of_append_startpos_10() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___append_startpos_10)); } inline int64_t get_append_startpos_10() const { return ___append_startpos_10; } inline int64_t* get_address_of_append_startpos_10() { return &___append_startpos_10; } inline void set_append_startpos_10(int64_t value) { ___append_startpos_10 = value; } inline static int32_t get_offset_of_access_11() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___access_11)); } inline int32_t get_access_11() const { return ___access_11; } inline int32_t* get_address_of_access_11() { return &___access_11; } inline void set_access_11(int32_t value) { ___access_11 = value; } inline static int32_t get_offset_of_owner_12() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___owner_12)); } inline bool get_owner_12() const { return ___owner_12; } inline bool* get_address_of_owner_12() { return &___owner_12; } inline void set_owner_12(bool value) { ___owner_12 = value; } inline static int32_t get_offset_of_async_13() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___async_13)); } inline bool get_async_13() const { return ___async_13; } inline bool* get_address_of_async_13() { return &___async_13; } inline void set_async_13(bool value) { ___async_13 = value; } inline static int32_t get_offset_of_canseek_14() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___canseek_14)); } inline bool get_canseek_14() const { return ___canseek_14; } inline bool* get_address_of_canseek_14() { return &___canseek_14; } inline void set_canseek_14(bool value) { ___canseek_14 = value; } inline static int32_t get_offset_of_anonymous_15() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___anonymous_15)); } inline bool get_anonymous_15() const { return ___anonymous_15; } inline bool* get_address_of_anonymous_15() { return &___anonymous_15; } inline void set_anonymous_15(bool value) { ___anonymous_15 = value; } inline static int32_t get_offset_of_buf_dirty_16() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_dirty_16)); } inline bool get_buf_dirty_16() const { return ___buf_dirty_16; } inline bool* get_address_of_buf_dirty_16() { return &___buf_dirty_16; } inline void set_buf_dirty_16(bool value) { ___buf_dirty_16 = value; } inline static int32_t get_offset_of_buf_size_17() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_size_17)); } inline int32_t get_buf_size_17() const { return ___buf_size_17; } inline int32_t* get_address_of_buf_size_17() { return &___buf_size_17; } inline void set_buf_size_17(int32_t value) { ___buf_size_17 = value; } inline static int32_t get_offset_of_buf_length_18() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_length_18)); } inline int32_t get_buf_length_18() const { return ___buf_length_18; } inline int32_t* get_address_of_buf_length_18() { return &___buf_length_18; } inline void set_buf_length_18(int32_t value) { ___buf_length_18 = value; } inline static int32_t get_offset_of_buf_offset_19() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_offset_19)); } inline int32_t get_buf_offset_19() const { return ___buf_offset_19; } inline int32_t* get_address_of_buf_offset_19() { return &___buf_offset_19; } inline void set_buf_offset_19(int32_t value) { ___buf_offset_19 = value; } inline static int32_t get_offset_of_buf_start_20() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_start_20)); } inline int64_t get_buf_start_20() const { return ___buf_start_20; } inline int64_t* get_address_of_buf_start_20() { return &___buf_start_20; } inline void set_buf_start_20(int64_t value) { ___buf_start_20 = value; } }; struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields { public: // System.Byte[] System.IO.FileStream::buf_recycle ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_recycle_4; // System.Object System.IO.FileStream::buf_recycle_lock RuntimeObject * ___buf_recycle_lock_5; public: inline static int32_t get_offset_of_buf_recycle_4() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_4)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_recycle_4() const { return ___buf_recycle_4; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_recycle_4() { return &___buf_recycle_4; } inline void set_buf_recycle_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___buf_recycle_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_4), (void*)value); } inline static int32_t get_offset_of_buf_recycle_lock_5() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_lock_5)); } inline RuntimeObject * get_buf_recycle_lock_5() const { return ___buf_recycle_lock_5; } inline RuntimeObject ** get_address_of_buf_recycle_lock_5() { return &___buf_recycle_lock_5; } inline void set_buf_recycle_lock_5(RuntimeObject * value) { ___buf_recycle_lock_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_lock_5), (void*)value); } }; // System.InvalidTimeZoneException struct InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 : public Exception_t { public: public: }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // System.OperatingSystem struct OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 : public RuntimeObject { public: // System.PlatformID System.OperatingSystem::_platform int32_t ____platform_0; // System.Version System.OperatingSystem::_version Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ____version_1; // System.String System.OperatingSystem::_servicePack String_t* ____servicePack_2; public: inline static int32_t get_offset_of__platform_0() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____platform_0)); } inline int32_t get__platform_0() const { return ____platform_0; } inline int32_t* get_address_of__platform_0() { return &____platform_0; } inline void set__platform_0(int32_t value) { ____platform_0 = value; } inline static int32_t get_offset_of__version_1() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____version_1)); } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * get__version_1() const { return ____version_1; } inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD ** get_address_of__version_1() { return &____version_1; } inline void set__version_1(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * value) { ____version_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____version_1), (void*)value); } inline static int32_t get_offset_of__servicePack_2() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____servicePack_2)); } inline String_t* get__servicePack_2() const { return ____servicePack_2; } inline String_t** get_address_of__servicePack_2() { return &____servicePack_2; } inline void set__servicePack_2(String_t* value) { ____servicePack_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____servicePack_2), (void*)value); } }; // System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 { public: // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject * ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; public: inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); } inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; } inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; } inline void set_m_additionalContext_0(RuntimeObject * value) { ___m_additionalContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value); } inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); } inline int32_t get_m_state_1() const { return ___m_state_1; } inline int32_t* get_address_of_m_state_1() { return &___m_state_1; } inline void set_m_state_1(int32_t value) { ___m_state_1 = value; } }; // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t { public: public: }; // System.Threading.EventWaitHandle struct EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98 : public WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 { public: public: }; // System.Threading.ExecutionContext struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 : public RuntimeObject { public: // System.Threading.SynchronizationContext System.Threading.ExecutionContext::_syncContext SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____syncContext_0; // System.Threading.SynchronizationContext System.Threading.ExecutionContext::_syncContextNoFlow SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____syncContextNoFlow_1; // System.Runtime.Remoting.Messaging.LogicalCallContext System.Threading.ExecutionContext::_logicalCallContext LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ____logicalCallContext_2; // System.Runtime.Remoting.Messaging.IllogicalCallContext System.Threading.ExecutionContext::_illogicalCallContext IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * ____illogicalCallContext_3; // System.Threading.ExecutionContext_Flags System.Threading.ExecutionContext::_flags int32_t ____flags_4; // System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object> System.Threading.ExecutionContext::_localValues Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A * ____localValues_5; // System.Collections.Generic.List`1<System.Threading.IAsyncLocal> System.Threading.ExecutionContext::_localChangeNotifications List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB * ____localChangeNotifications_6; public: inline static int32_t get_offset_of__syncContext_0() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____syncContext_0)); } inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__syncContext_0() const { return ____syncContext_0; } inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__syncContext_0() { return &____syncContext_0; } inline void set__syncContext_0(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value) { ____syncContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncContext_0), (void*)value); } inline static int32_t get_offset_of__syncContextNoFlow_1() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____syncContextNoFlow_1)); } inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__syncContextNoFlow_1() const { return ____syncContextNoFlow_1; } inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__syncContextNoFlow_1() { return &____syncContextNoFlow_1; } inline void set__syncContextNoFlow_1(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value) { ____syncContextNoFlow_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncContextNoFlow_1), (void*)value); } inline static int32_t get_offset_of__logicalCallContext_2() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____logicalCallContext_2)); } inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * get__logicalCallContext_2() const { return ____logicalCallContext_2; } inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E ** get_address_of__logicalCallContext_2() { return &____logicalCallContext_2; } inline void set__logicalCallContext_2(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * value) { ____logicalCallContext_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____logicalCallContext_2), (void*)value); } inline static int32_t get_offset_of__illogicalCallContext_3() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____illogicalCallContext_3)); } inline IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * get__illogicalCallContext_3() const { return ____illogicalCallContext_3; } inline IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 ** get_address_of__illogicalCallContext_3() { return &____illogicalCallContext_3; } inline void set__illogicalCallContext_3(IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * value) { ____illogicalCallContext_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____illogicalCallContext_3), (void*)value); } inline static int32_t get_offset_of__flags_4() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____flags_4)); } inline int32_t get__flags_4() const { return ____flags_4; } inline int32_t* get_address_of__flags_4() { return &____flags_4; } inline void set__flags_4(int32_t value) { ____flags_4 = value; } inline static int32_t get_offset_of__localValues_5() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____localValues_5)); } inline Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A * get__localValues_5() const { return ____localValues_5; } inline Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A ** get_address_of__localValues_5() { return &____localValues_5; } inline void set__localValues_5(Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A * value) { ____localValues_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____localValues_5), (void*)value); } inline static int32_t get_offset_of__localChangeNotifications_6() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____localChangeNotifications_6)); } inline List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB * get__localChangeNotifications_6() const { return ____localChangeNotifications_6; } inline List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB ** get_address_of__localChangeNotifications_6() { return &____localChangeNotifications_6; } inline void set__localChangeNotifications_6(List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB * value) { ____localChangeNotifications_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____localChangeNotifications_6), (void*)value); } }; struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_StaticFields { public: // System.Threading.ExecutionContext System.Threading.ExecutionContext::s_dummyDefaultEC ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___s_dummyDefaultEC_7; public: inline static int32_t get_offset_of_s_dummyDefaultEC_7() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_StaticFields, ___s_dummyDefaultEC_7)); } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_s_dummyDefaultEC_7() const { return ___s_dummyDefaultEC_7; } inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_s_dummyDefaultEC_7() { return &___s_dummyDefaultEC_7; } inline void set_s_dummyDefaultEC_7(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value) { ___s_dummyDefaultEC_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_dummyDefaultEC_7), (void*)value); } }; // System.Threading.InternalThread struct InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 : public CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 { public: // System.Int32 System.Threading.InternalThread::lock_thread_id int32_t ___lock_thread_id_0; // System.IntPtr System.Threading.InternalThread::handle intptr_t ___handle_1; // System.IntPtr System.Threading.InternalThread::native_handle intptr_t ___native_handle_2; // System.IntPtr System.Threading.InternalThread::unused3 intptr_t ___unused3_3; // System.IntPtr System.Threading.InternalThread::name intptr_t ___name_4; // System.Int32 System.Threading.InternalThread::name_len int32_t ___name_len_5; // System.Threading.ThreadState System.Threading.InternalThread::state int32_t ___state_6; // System.Object System.Threading.InternalThread::abort_exc RuntimeObject * ___abort_exc_7; // System.Int32 System.Threading.InternalThread::abort_state_handle int32_t ___abort_state_handle_8; // System.Int64 System.Threading.InternalThread::thread_id int64_t ___thread_id_9; // System.IntPtr System.Threading.InternalThread::debugger_thread intptr_t ___debugger_thread_10; // System.UIntPtr System.Threading.InternalThread::static_data uintptr_t ___static_data_11; // System.IntPtr System.Threading.InternalThread::runtime_thread_info intptr_t ___runtime_thread_info_12; // System.Object System.Threading.InternalThread::current_appcontext RuntimeObject * ___current_appcontext_13; // System.Object System.Threading.InternalThread::root_domain_thread RuntimeObject * ___root_domain_thread_14; // System.Byte[] System.Threading.InternalThread::_serialized_principal ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____serialized_principal_15; // System.Int32 System.Threading.InternalThread::_serialized_principal_version int32_t ____serialized_principal_version_16; // System.IntPtr System.Threading.InternalThread::appdomain_refs intptr_t ___appdomain_refs_17; // System.Int32 System.Threading.InternalThread::interruption_requested int32_t ___interruption_requested_18; // System.IntPtr System.Threading.InternalThread::synch_cs intptr_t ___synch_cs_19; // System.Boolean System.Threading.InternalThread::threadpool_thread bool ___threadpool_thread_20; // System.Boolean System.Threading.InternalThread::thread_interrupt_requested bool ___thread_interrupt_requested_21; // System.Int32 System.Threading.InternalThread::stack_size int32_t ___stack_size_22; // System.Byte System.Threading.InternalThread::apartment_state uint8_t ___apartment_state_23; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.InternalThread::critical_region_level int32_t ___critical_region_level_24; // System.Int32 System.Threading.InternalThread::managed_id int32_t ___managed_id_25; // System.Int32 System.Threading.InternalThread::small_id int32_t ___small_id_26; // System.IntPtr System.Threading.InternalThread::manage_callback intptr_t ___manage_callback_27; // System.IntPtr System.Threading.InternalThread::unused4 intptr_t ___unused4_28; // System.IntPtr System.Threading.InternalThread::flags intptr_t ___flags_29; // System.IntPtr System.Threading.InternalThread::thread_pinning_ref intptr_t ___thread_pinning_ref_30; // System.IntPtr System.Threading.InternalThread::abort_protected_block_count intptr_t ___abort_protected_block_count_31; // System.Int32 System.Threading.InternalThread::priority int32_t ___priority_32; // System.IntPtr System.Threading.InternalThread::owned_mutex intptr_t ___owned_mutex_33; // System.IntPtr System.Threading.InternalThread::suspended_event intptr_t ___suspended_event_34; // System.Int32 System.Threading.InternalThread::self_suspended int32_t ___self_suspended_35; // System.IntPtr System.Threading.InternalThread::unused1 intptr_t ___unused1_36; // System.IntPtr System.Threading.InternalThread::unused2 intptr_t ___unused2_37; // System.IntPtr System.Threading.InternalThread::last intptr_t ___last_38; public: inline static int32_t get_offset_of_lock_thread_id_0() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___lock_thread_id_0)); } inline int32_t get_lock_thread_id_0() const { return ___lock_thread_id_0; } inline int32_t* get_address_of_lock_thread_id_0() { return &___lock_thread_id_0; } inline void set_lock_thread_id_0(int32_t value) { ___lock_thread_id_0 = value; } inline static int32_t get_offset_of_handle_1() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___handle_1)); } inline intptr_t get_handle_1() const { return ___handle_1; } inline intptr_t* get_address_of_handle_1() { return &___handle_1; } inline void set_handle_1(intptr_t value) { ___handle_1 = value; } inline static int32_t get_offset_of_native_handle_2() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___native_handle_2)); } inline intptr_t get_native_handle_2() const { return ___native_handle_2; } inline intptr_t* get_address_of_native_handle_2() { return &___native_handle_2; } inline void set_native_handle_2(intptr_t value) { ___native_handle_2 = value; } inline static int32_t get_offset_of_unused3_3() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___unused3_3)); } inline intptr_t get_unused3_3() const { return ___unused3_3; } inline intptr_t* get_address_of_unused3_3() { return &___unused3_3; } inline void set_unused3_3(intptr_t value) { ___unused3_3 = value; } inline static int32_t get_offset_of_name_4() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___name_4)); } inline intptr_t get_name_4() const { return ___name_4; } inline intptr_t* get_address_of_name_4() { return &___name_4; } inline void set_name_4(intptr_t value) { ___name_4 = value; } inline static int32_t get_offset_of_name_len_5() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___name_len_5)); } inline int32_t get_name_len_5() const { return ___name_len_5; } inline int32_t* get_address_of_name_len_5() { return &___name_len_5; } inline void set_name_len_5(int32_t value) { ___name_len_5 = value; } inline static int32_t get_offset_of_state_6() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___state_6)); } inline int32_t get_state_6() const { return ___state_6; } inline int32_t* get_address_of_state_6() { return &___state_6; } inline void set_state_6(int32_t value) { ___state_6 = value; } inline static int32_t get_offset_of_abort_exc_7() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___abort_exc_7)); } inline RuntimeObject * get_abort_exc_7() const { return ___abort_exc_7; } inline RuntimeObject ** get_address_of_abort_exc_7() { return &___abort_exc_7; } inline void set_abort_exc_7(RuntimeObject * value) { ___abort_exc_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___abort_exc_7), (void*)value); } inline static int32_t get_offset_of_abort_state_handle_8() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___abort_state_handle_8)); } inline int32_t get_abort_state_handle_8() const { return ___abort_state_handle_8; } inline int32_t* get_address_of_abort_state_handle_8() { return &___abort_state_handle_8; } inline void set_abort_state_handle_8(int32_t value) { ___abort_state_handle_8 = value; } inline static int32_t get_offset_of_thread_id_9() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___thread_id_9)); } inline int64_t get_thread_id_9() const { return ___thread_id_9; } inline int64_t* get_address_of_thread_id_9() { return &___thread_id_9; } inline void set_thread_id_9(int64_t value) { ___thread_id_9 = value; } inline static int32_t get_offset_of_debugger_thread_10() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___debugger_thread_10)); } inline intptr_t get_debugger_thread_10() const { return ___debugger_thread_10; } inline intptr_t* get_address_of_debugger_thread_10() { return &___debugger_thread_10; } inline void set_debugger_thread_10(intptr_t value) { ___debugger_thread_10 = value; } inline static int32_t get_offset_of_static_data_11() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___static_data_11)); } inline uintptr_t get_static_data_11() const { return ___static_data_11; } inline uintptr_t* get_address_of_static_data_11() { return &___static_data_11; } inline void set_static_data_11(uintptr_t value) { ___static_data_11 = value; } inline static int32_t get_offset_of_runtime_thread_info_12() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___runtime_thread_info_12)); } inline intptr_t get_runtime_thread_info_12() const { return ___runtime_thread_info_12; } inline intptr_t* get_address_of_runtime_thread_info_12() { return &___runtime_thread_info_12; } inline void set_runtime_thread_info_12(intptr_t value) { ___runtime_thread_info_12 = value; } inline static int32_t get_offset_of_current_appcontext_13() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___current_appcontext_13)); } inline RuntimeObject * get_current_appcontext_13() const { return ___current_appcontext_13; } inline RuntimeObject ** get_address_of_current_appcontext_13() { return &___current_appcontext_13; } inline void set_current_appcontext_13(RuntimeObject * value) { ___current_appcontext_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_appcontext_13), (void*)value); } inline static int32_t get_offset_of_root_domain_thread_14() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___root_domain_thread_14)); } inline RuntimeObject * get_root_domain_thread_14() const { return ___root_domain_thread_14; } inline RuntimeObject ** get_address_of_root_domain_thread_14() { return &___root_domain_thread_14; } inline void set_root_domain_thread_14(RuntimeObject * value) { ___root_domain_thread_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___root_domain_thread_14), (void*)value); } inline static int32_t get_offset_of__serialized_principal_15() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ____serialized_principal_15)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__serialized_principal_15() const { return ____serialized_principal_15; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__serialized_principal_15() { return &____serialized_principal_15; } inline void set__serialized_principal_15(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ____serialized_principal_15 = value; Il2CppCodeGenWriteBarrier((void**)(&____serialized_principal_15), (void*)value); } inline static int32_t get_offset_of__serialized_principal_version_16() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ____serialized_principal_version_16)); } inline int32_t get__serialized_principal_version_16() const { return ____serialized_principal_version_16; } inline int32_t* get_address_of__serialized_principal_version_16() { return &____serialized_principal_version_16; } inline void set__serialized_principal_version_16(int32_t value) { ____serialized_principal_version_16 = value; } inline static int32_t get_offset_of_appdomain_refs_17() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___appdomain_refs_17)); } inline intptr_t get_appdomain_refs_17() const { return ___appdomain_refs_17; } inline intptr_t* get_address_of_appdomain_refs_17() { return &___appdomain_refs_17; } inline void set_appdomain_refs_17(intptr_t value) { ___appdomain_refs_17 = value; } inline static int32_t get_offset_of_interruption_requested_18() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___interruption_requested_18)); } inline int32_t get_interruption_requested_18() const { return ___interruption_requested_18; } inline int32_t* get_address_of_interruption_requested_18() { return &___interruption_requested_18; } inline void set_interruption_requested_18(int32_t value) { ___interruption_requested_18 = value; } inline static int32_t get_offset_of_synch_cs_19() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___synch_cs_19)); } inline intptr_t get_synch_cs_19() const { return ___synch_cs_19; } inline intptr_t* get_address_of_synch_cs_19() { return &___synch_cs_19; } inline void set_synch_cs_19(intptr_t value) { ___synch_cs_19 = value; } inline static int32_t get_offset_of_threadpool_thread_20() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___threadpool_thread_20)); } inline bool get_threadpool_thread_20() const { return ___threadpool_thread_20; } inline bool* get_address_of_threadpool_thread_20() { return &___threadpool_thread_20; } inline void set_threadpool_thread_20(bool value) { ___threadpool_thread_20 = value; } inline static int32_t get_offset_of_thread_interrupt_requested_21() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___thread_interrupt_requested_21)); } inline bool get_thread_interrupt_requested_21() const { return ___thread_interrupt_requested_21; } inline bool* get_address_of_thread_interrupt_requested_21() { return &___thread_interrupt_requested_21; } inline void set_thread_interrupt_requested_21(bool value) { ___thread_interrupt_requested_21 = value; } inline static int32_t get_offset_of_stack_size_22() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___stack_size_22)); } inline int32_t get_stack_size_22() const { return ___stack_size_22; } inline int32_t* get_address_of_stack_size_22() { return &___stack_size_22; } inline void set_stack_size_22(int32_t value) { ___stack_size_22 = value; } inline static int32_t get_offset_of_apartment_state_23() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___apartment_state_23)); } inline uint8_t get_apartment_state_23() const { return ___apartment_state_23; } inline uint8_t* get_address_of_apartment_state_23() { return &___apartment_state_23; } inline void set_apartment_state_23(uint8_t value) { ___apartment_state_23 = value; } inline static int32_t get_offset_of_critical_region_level_24() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___critical_region_level_24)); } inline int32_t get_critical_region_level_24() const { return ___critical_region_level_24; } inline int32_t* get_address_of_critical_region_level_24() { return &___critical_region_level_24; } inline void set_critical_region_level_24(int32_t value) { ___critical_region_level_24 = value; } inline static int32_t get_offset_of_managed_id_25() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___managed_id_25)); } inline int32_t get_managed_id_25() const { return ___managed_id_25; } inline int32_t* get_address_of_managed_id_25() { return &___managed_id_25; } inline void set_managed_id_25(int32_t value) { ___managed_id_25 = value; } inline static int32_t get_offset_of_small_id_26() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___small_id_26)); } inline int32_t get_small_id_26() const { return ___small_id_26; } inline int32_t* get_address_of_small_id_26() { return &___small_id_26; } inline void set_small_id_26(int32_t value) { ___small_id_26 = value; } inline static int32_t get_offset_of_manage_callback_27() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___manage_callback_27)); } inline intptr_t get_manage_callback_27() const { return ___manage_callback_27; } inline intptr_t* get_address_of_manage_callback_27() { return &___manage_callback_27; } inline void set_manage_callback_27(intptr_t value) { ___manage_callback_27 = value; } inline static int32_t get_offset_of_unused4_28() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___unused4_28)); } inline intptr_t get_unused4_28() const { return ___unused4_28; } inline intptr_t* get_address_of_unused4_28() { return &___unused4_28; } inline void set_unused4_28(intptr_t value) { ___unused4_28 = value; } inline static int32_t get_offset_of_flags_29() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___flags_29)); } inline intptr_t get_flags_29() const { return ___flags_29; } inline intptr_t* get_address_of_flags_29() { return &___flags_29; } inline void set_flags_29(intptr_t value) { ___flags_29 = value; } inline static int32_t get_offset_of_thread_pinning_ref_30() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___thread_pinning_ref_30)); } inline intptr_t get_thread_pinning_ref_30() const { return ___thread_pinning_ref_30; } inline intptr_t* get_address_of_thread_pinning_ref_30() { return &___thread_pinning_ref_30; } inline void set_thread_pinning_ref_30(intptr_t value) { ___thread_pinning_ref_30 = value; } inline static int32_t get_offset_of_abort_protected_block_count_31() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___abort_protected_block_count_31)); } inline intptr_t get_abort_protected_block_count_31() const { return ___abort_protected_block_count_31; } inline intptr_t* get_address_of_abort_protected_block_count_31() { return &___abort_protected_block_count_31; } inline void set_abort_protected_block_count_31(intptr_t value) { ___abort_protected_block_count_31 = value; } inline static int32_t get_offset_of_priority_32() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___priority_32)); } inline int32_t get_priority_32() const { return ___priority_32; } inline int32_t* get_address_of_priority_32() { return &___priority_32; } inline void set_priority_32(int32_t value) { ___priority_32 = value; } inline static int32_t get_offset_of_owned_mutex_33() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___owned_mutex_33)); } inline intptr_t get_owned_mutex_33() const { return ___owned_mutex_33; } inline intptr_t* get_address_of_owned_mutex_33() { return &___owned_mutex_33; } inline void set_owned_mutex_33(intptr_t value) { ___owned_mutex_33 = value; } inline static int32_t get_offset_of_suspended_event_34() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___suspended_event_34)); } inline intptr_t get_suspended_event_34() const { return ___suspended_event_34; } inline intptr_t* get_address_of_suspended_event_34() { return &___suspended_event_34; } inline void set_suspended_event_34(intptr_t value) { ___suspended_event_34 = value; } inline static int32_t get_offset_of_self_suspended_35() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___self_suspended_35)); } inline int32_t get_self_suspended_35() const { return ___self_suspended_35; } inline int32_t* get_address_of_self_suspended_35() { return &___self_suspended_35; } inline void set_self_suspended_35(int32_t value) { ___self_suspended_35 = value; } inline static int32_t get_offset_of_unused1_36() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___unused1_36)); } inline intptr_t get_unused1_36() const { return ___unused1_36; } inline intptr_t* get_address_of_unused1_36() { return &___unused1_36; } inline void set_unused1_36(intptr_t value) { ___unused1_36 = value; } inline static int32_t get_offset_of_unused2_37() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___unused2_37)); } inline intptr_t get_unused2_37() const { return ___unused2_37; } inline intptr_t* get_address_of_unused2_37() { return &___unused2_37; } inline void set_unused2_37(intptr_t value) { ___unused2_37 = value; } inline static int32_t get_offset_of_last_38() { return static_cast<int32_t>(offsetof(InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192, ___last_38)); } inline intptr_t get_last_38() const { return ___last_38; } inline intptr_t* get_address_of_last_38() { return &___last_38; } inline void set_last_38(intptr_t value) { ___last_38 = value; } }; // System.Threading.RegisteredWaitHandle struct RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: // System.Threading.WaitHandle System.Threading.RegisteredWaitHandle::_waitObject WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ____waitObject_1; // System.Threading.WaitOrTimerCallback System.Threading.RegisteredWaitHandle::_callback WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * ____callback_2; // System.Object System.Threading.RegisteredWaitHandle::_state RuntimeObject * ____state_3; // System.Threading.WaitHandle System.Threading.RegisteredWaitHandle::_finalEvent WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ____finalEvent_4; // System.Threading.ManualResetEvent System.Threading.RegisteredWaitHandle::_cancelEvent ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ____cancelEvent_5; // System.TimeSpan System.Threading.RegisteredWaitHandle::_timeout TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ____timeout_6; // System.Int32 System.Threading.RegisteredWaitHandle::_callsInProcess int32_t ____callsInProcess_7; // System.Boolean System.Threading.RegisteredWaitHandle::_executeOnlyOnce bool ____executeOnlyOnce_8; // System.Boolean System.Threading.RegisteredWaitHandle::_unregistered bool ____unregistered_9; public: inline static int32_t get_offset_of__waitObject_1() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____waitObject_1)); } inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * get__waitObject_1() const { return ____waitObject_1; } inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 ** get_address_of__waitObject_1() { return &____waitObject_1; } inline void set__waitObject_1(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * value) { ____waitObject_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____waitObject_1), (void*)value); } inline static int32_t get_offset_of__callback_2() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____callback_2)); } inline WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * get__callback_2() const { return ____callback_2; } inline WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF ** get_address_of__callback_2() { return &____callback_2; } inline void set__callback_2(WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * value) { ____callback_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____callback_2), (void*)value); } inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____state_3)); } inline RuntimeObject * get__state_3() const { return ____state_3; } inline RuntimeObject ** get_address_of__state_3() { return &____state_3; } inline void set__state_3(RuntimeObject * value) { ____state_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____state_3), (void*)value); } inline static int32_t get_offset_of__finalEvent_4() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____finalEvent_4)); } inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * get__finalEvent_4() const { return ____finalEvent_4; } inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 ** get_address_of__finalEvent_4() { return &____finalEvent_4; } inline void set__finalEvent_4(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * value) { ____finalEvent_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____finalEvent_4), (void*)value); } inline static int32_t get_offset_of__cancelEvent_5() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____cancelEvent_5)); } inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get__cancelEvent_5() const { return ____cancelEvent_5; } inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of__cancelEvent_5() { return &____cancelEvent_5; } inline void set__cancelEvent_5(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value) { ____cancelEvent_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____cancelEvent_5), (void*)value); } inline static int32_t get_offset_of__timeout_6() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____timeout_6)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get__timeout_6() const { return ____timeout_6; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of__timeout_6() { return &____timeout_6; } inline void set__timeout_6(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ____timeout_6 = value; } inline static int32_t get_offset_of__callsInProcess_7() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____callsInProcess_7)); } inline int32_t get__callsInProcess_7() const { return ____callsInProcess_7; } inline int32_t* get_address_of__callsInProcess_7() { return &____callsInProcess_7; } inline void set__callsInProcess_7(int32_t value) { ____callsInProcess_7 = value; } inline static int32_t get_offset_of__executeOnlyOnce_8() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____executeOnlyOnce_8)); } inline bool get__executeOnlyOnce_8() const { return ____executeOnlyOnce_8; } inline bool* get_address_of__executeOnlyOnce_8() { return &____executeOnlyOnce_8; } inline void set__executeOnlyOnce_8(bool value) { ____executeOnlyOnce_8 = value; } inline static int32_t get_offset_of__unregistered_9() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____unregistered_9)); } inline bool get__unregistered_9() const { return ____unregistered_9; } inline bool* get_address_of__unregistered_9() { return &____unregistered_9; } inline void set__unregistered_9(bool value) { ____unregistered_9 = value; } }; // System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration> struct Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 : public RuntimeObject { public: // T System.Threading.Tasks.Shared`1::Value CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2, ___Value_0)); } inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 get_Value_0() const { return ___Value_0; } inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___Value_0))->___m_callbackInfo_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___Value_0))->___m_registrationInfo_1))->___m_source_0), (void*)NULL); #endif } }; // System.Threading.Tasks.Task_<>c__DisplayClass178_0 struct U3CU3Ec__DisplayClass178_0_tDB7F53582BFA1879573CC515D119580A06752F7E : public RuntimeObject { public: // System.Threading.Tasks.Task System.Threading.Tasks.Task_<>c__DisplayClass178_0::root Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___root_0; // System.Boolean System.Threading.Tasks.Task_<>c__DisplayClass178_0::replicasAreQuitting bool ___replicasAreQuitting_1; // System.Action`1<System.Object> System.Threading.Tasks.Task_<>c__DisplayClass178_0::taskReplicaDelegate Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___taskReplicaDelegate_2; // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.Task_<>c__DisplayClass178_0::creationOptionsForReplicas int32_t ___creationOptionsForReplicas_3; // System.Threading.Tasks.InternalTaskOptions System.Threading.Tasks.Task_<>c__DisplayClass178_0::internalOptionsForReplicas int32_t ___internalOptionsForReplicas_4; public: inline static int32_t get_offset_of_root_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass178_0_tDB7F53582BFA1879573CC515D119580A06752F7E, ___root_0)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_root_0() const { return ___root_0; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_root_0() { return &___root_0; } inline void set_root_0(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ___root_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___root_0), (void*)value); } inline static int32_t get_offset_of_replicasAreQuitting_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass178_0_tDB7F53582BFA1879573CC515D119580A06752F7E, ___replicasAreQuitting_1)); } inline bool get_replicasAreQuitting_1() const { return ___replicasAreQuitting_1; } inline bool* get_address_of_replicasAreQuitting_1() { return &___replicasAreQuitting_1; } inline void set_replicasAreQuitting_1(bool value) { ___replicasAreQuitting_1 = value; } inline static int32_t get_offset_of_taskReplicaDelegate_2() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass178_0_tDB7F53582BFA1879573CC515D119580A06752F7E, ___taskReplicaDelegate_2)); } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_taskReplicaDelegate_2() const { return ___taskReplicaDelegate_2; } inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_taskReplicaDelegate_2() { return &___taskReplicaDelegate_2; } inline void set_taskReplicaDelegate_2(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value) { ___taskReplicaDelegate_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___taskReplicaDelegate_2), (void*)value); } inline static int32_t get_offset_of_creationOptionsForReplicas_3() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass178_0_tDB7F53582BFA1879573CC515D119580A06752F7E, ___creationOptionsForReplicas_3)); } inline int32_t get_creationOptionsForReplicas_3() const { return ___creationOptionsForReplicas_3; } inline int32_t* get_address_of_creationOptionsForReplicas_3() { return &___creationOptionsForReplicas_3; } inline void set_creationOptionsForReplicas_3(int32_t value) { ___creationOptionsForReplicas_3 = value; } inline static int32_t get_offset_of_internalOptionsForReplicas_4() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass178_0_tDB7F53582BFA1879573CC515D119580A06752F7E, ___internalOptionsForReplicas_4)); } inline int32_t get_internalOptionsForReplicas_4() const { return ___internalOptionsForReplicas_4; } inline int32_t* get_address_of_internalOptionsForReplicas_4() { return &___internalOptionsForReplicas_4; } inline void set_internalOptionsForReplicas_4(int32_t value) { ___internalOptionsForReplicas_4 = value; } }; // System.Threading.Tasks.Task_SetOnInvokeMres struct SetOnInvokeMres_tBDCEA7BE3061614FC83A82D8E6FBD5903C3FD2A9 : public ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 { public: public: }; // System.Threading.Tasks.TaskFactory struct TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 : public RuntimeObject { public: // System.Threading.CancellationToken System.Threading.Tasks.TaskFactory::m_defaultCancellationToken CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___m_defaultCancellationToken_0; // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskFactory::m_defaultScheduler TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___m_defaultScheduler_1; // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.TaskFactory::m_defaultCreationOptions int32_t ___m_defaultCreationOptions_2; // System.Threading.Tasks.TaskContinuationOptions System.Threading.Tasks.TaskFactory::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_tF3C6D983390ACFB40B4979E225368F78006D6155, ___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; Il2CppCodeGenWriteBarrier((void**)&(((&___m_defaultCancellationToken_0))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_m_defaultScheduler_1() { return static_cast<int32_t>(offsetof(TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155, ___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((void**)(&___m_defaultScheduler_1), (void*)value); } inline static int32_t get_offset_of_m_defaultCreationOptions_2() { return static_cast<int32_t>(offsetof(TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155, ___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_tF3C6D983390ACFB40B4979E225368F78006D6155, ___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; } }; // System.Threading.Tasks.TaskSchedulerException struct TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24 : public Exception_t { public: public: }; // System.Threading.Tasks.Task`1<System.Threading.Tasks.Task> struct Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 { public: // TResult System.Threading.Tasks.Task`1::m_result Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_result_22; public: inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138, ___m_result_22)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_m_result_22() const { return ___m_result_22; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_m_result_22() { return &___m_result_22; } inline void set_m_result_22(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ___m_result_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_result_22), (void*)value); } }; struct Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138_StaticFields { public: // System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory TaskFactory_1_t58FE324C5DC18B5ED9A0E49CA8543DEEA65B4462 * ___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_t9183BE7C6FB5EAED091785FC3E1D3D41DB3497F7 * ___TaskWhenAnyCast_24; public: inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138_StaticFields, ___s_Factory_23)); } inline TaskFactory_1_t58FE324C5DC18B5ED9A0E49CA8543DEEA65B4462 * get_s_Factory_23() const { return ___s_Factory_23; } inline TaskFactory_1_t58FE324C5DC18B5ED9A0E49CA8543DEEA65B4462 ** get_address_of_s_Factory_23() { return &___s_Factory_23; } inline void set_s_Factory_23(TaskFactory_1_t58FE324C5DC18B5ED9A0E49CA8543DEEA65B4462 * value) { ___s_Factory_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value); } inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138_StaticFields, ___TaskWhenAnyCast_24)); } inline Func_2_t9183BE7C6FB5EAED091785FC3E1D3D41DB3497F7 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; } inline Func_2_t9183BE7C6FB5EAED091785FC3E1D3D41DB3497F7 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; } inline void set_TaskWhenAnyCast_24(Func_2_t9183BE7C6FB5EAED091785FC3E1D3D41DB3497F7 * value) { ___TaskWhenAnyCast_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // 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((void**)(&___s_Factory_23), (void*)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((void**)(&___TaskWhenAnyCast_24), (void*)value); } }; // System.Threading.Tasks.ThreadPoolTaskScheduler struct ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD : public TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 { public: public: }; struct ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD_StaticFields { public: // System.Threading.ParameterizedThreadStart System.Threading.Tasks.ThreadPoolTaskScheduler::s_longRunningThreadWork ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * ___s_longRunningThreadWork_6; public: inline static int32_t get_offset_of_s_longRunningThreadWork_6() { return static_cast<int32_t>(offsetof(ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD_StaticFields, ___s_longRunningThreadWork_6)); } inline ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * get_s_longRunningThreadWork_6() const { return ___s_longRunningThreadWork_6; } inline ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F ** get_address_of_s_longRunningThreadWork_6() { return &___s_longRunningThreadWork_6; } inline void set_s_longRunningThreadWork_6(ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * value) { ___s_longRunningThreadWork_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_longRunningThreadWork_6), (void*)value); } }; // System.Threading.ThreadPoolWorkQueue_WorkStealingQueue struct WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB : public RuntimeObject { public: // System.Threading.IThreadPoolWorkItem[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue_WorkStealingQueue::m_array IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* ___m_array_0; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue_WorkStealingQueue::m_mask int32_t ___m_mask_1; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue_WorkStealingQueue::m_headIndex int32_t ___m_headIndex_2; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.ThreadPoolWorkQueue_WorkStealingQueue::m_tailIndex int32_t ___m_tailIndex_3; // System.Threading.SpinLock System.Threading.ThreadPoolWorkQueue_WorkStealingQueue::m_foreignLock SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 ___m_foreignLock_4; public: inline static int32_t get_offset_of_m_array_0() { return static_cast<int32_t>(offsetof(WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB, ___m_array_0)); } inline IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* get_m_array_0() const { return ___m_array_0; } inline IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154** get_address_of_m_array_0() { return &___m_array_0; } inline void set_m_array_0(IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* value) { ___m_array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_array_0), (void*)value); } inline static int32_t get_offset_of_m_mask_1() { return static_cast<int32_t>(offsetof(WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB, ___m_mask_1)); } inline int32_t get_m_mask_1() const { return ___m_mask_1; } inline int32_t* get_address_of_m_mask_1() { return &___m_mask_1; } inline void set_m_mask_1(int32_t value) { ___m_mask_1 = value; } inline static int32_t get_offset_of_m_headIndex_2() { return static_cast<int32_t>(offsetof(WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB, ___m_headIndex_2)); } inline int32_t get_m_headIndex_2() const { return ___m_headIndex_2; } inline int32_t* get_address_of_m_headIndex_2() { return &___m_headIndex_2; } inline void set_m_headIndex_2(int32_t value) { ___m_headIndex_2 = value; } inline static int32_t get_offset_of_m_tailIndex_3() { return static_cast<int32_t>(offsetof(WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB, ___m_tailIndex_3)); } inline int32_t get_m_tailIndex_3() const { return ___m_tailIndex_3; } inline int32_t* get_address_of_m_tailIndex_3() { return &___m_tailIndex_3; } inline void set_m_tailIndex_3(int32_t value) { ___m_tailIndex_3 = value; } inline static int32_t get_offset_of_m_foreignLock_4() { return static_cast<int32_t>(offsetof(WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB, ___m_foreignLock_4)); } inline SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 get_m_foreignLock_4() const { return ___m_foreignLock_4; } inline SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * get_address_of_m_foreignLock_4() { return &___m_foreignLock_4; } inline void set_m_foreignLock_4(SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 value) { ___m_foreignLock_4 = value; } }; // System.Threading.Timeout struct Timeout_t148C37C092EAF5AFCE1D0C06481466A5F88E4C04 : public RuntimeObject { public: public: }; struct Timeout_t148C37C092EAF5AFCE1D0C06481466A5F88E4C04_StaticFields { public: // System.TimeSpan System.Threading.Timeout::InfiniteTimeSpan TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___InfiniteTimeSpan_0; public: inline static int32_t get_offset_of_InfiniteTimeSpan_0() { return static_cast<int32_t>(offsetof(Timeout_t148C37C092EAF5AFCE1D0C06481466A5F88E4C04_StaticFields, ___InfiniteTimeSpan_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_InfiniteTimeSpan_0() const { return ___InfiniteTimeSpan_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_InfiniteTimeSpan_0() { return &___InfiniteTimeSpan_0; } inline void set_InfiniteTimeSpan_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___InfiniteTimeSpan_0 = value; } }; // System.TimeZoneInfo struct TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 : public RuntimeObject { public: // System.TimeSpan System.TimeZoneInfo::baseUtcOffset TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset_0; // System.String System.TimeZoneInfo::daylightDisplayName String_t* ___daylightDisplayName_1; // System.String System.TimeZoneInfo::displayName String_t* ___displayName_2; // System.String System.TimeZoneInfo::id String_t* ___id_3; // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>> System.TimeZoneInfo::transitions List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * ___transitions_5; // System.String System.TimeZoneInfo::standardDisplayName String_t* ___standardDisplayName_7; // System.Boolean System.TimeZoneInfo::supportsDaylightSavingTime bool ___supportsDaylightSavingTime_8; // System.TimeZoneInfo_AdjustmentRule[] System.TimeZoneInfo::adjustmentRules AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ___adjustmentRules_11; public: inline static int32_t get_offset_of_baseUtcOffset_0() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___baseUtcOffset_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_baseUtcOffset_0() const { return ___baseUtcOffset_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_baseUtcOffset_0() { return &___baseUtcOffset_0; } inline void set_baseUtcOffset_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___baseUtcOffset_0 = value; } inline static int32_t get_offset_of_daylightDisplayName_1() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___daylightDisplayName_1)); } inline String_t* get_daylightDisplayName_1() const { return ___daylightDisplayName_1; } inline String_t** get_address_of_daylightDisplayName_1() { return &___daylightDisplayName_1; } inline void set_daylightDisplayName_1(String_t* value) { ___daylightDisplayName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___daylightDisplayName_1), (void*)value); } inline static int32_t get_offset_of_displayName_2() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___displayName_2)); } inline String_t* get_displayName_2() const { return ___displayName_2; } inline String_t** get_address_of_displayName_2() { return &___displayName_2; } inline void set_displayName_2(String_t* value) { ___displayName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___displayName_2), (void*)value); } inline static int32_t get_offset_of_id_3() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___id_3)); } inline String_t* get_id_3() const { return ___id_3; } inline String_t** get_address_of_id_3() { return &___id_3; } inline void set_id_3(String_t* value) { ___id_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_3), (void*)value); } inline static int32_t get_offset_of_transitions_5() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___transitions_5)); } inline List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * get_transitions_5() const { return ___transitions_5; } inline List_1_tD2FC74CFEE011F74F31183756A690154468817E9 ** get_address_of_transitions_5() { return &___transitions_5; } inline void set_transitions_5(List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * value) { ___transitions_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___transitions_5), (void*)value); } inline static int32_t get_offset_of_standardDisplayName_7() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___standardDisplayName_7)); } inline String_t* get_standardDisplayName_7() const { return ___standardDisplayName_7; } inline String_t** get_address_of_standardDisplayName_7() { return &___standardDisplayName_7; } inline void set_standardDisplayName_7(String_t* value) { ___standardDisplayName_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___standardDisplayName_7), (void*)value); } inline static int32_t get_offset_of_supportsDaylightSavingTime_8() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___supportsDaylightSavingTime_8)); } inline bool get_supportsDaylightSavingTime_8() const { return ___supportsDaylightSavingTime_8; } inline bool* get_address_of_supportsDaylightSavingTime_8() { return &___supportsDaylightSavingTime_8; } inline void set_supportsDaylightSavingTime_8(bool value) { ___supportsDaylightSavingTime_8 = value; } inline static int32_t get_offset_of_adjustmentRules_11() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777, ___adjustmentRules_11)); } inline AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* get_adjustmentRules_11() const { return ___adjustmentRules_11; } inline AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD** get_address_of_adjustmentRules_11() { return &___adjustmentRules_11; } inline void set_adjustmentRules_11(AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* value) { ___adjustmentRules_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___adjustmentRules_11), (void*)value); } }; struct TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields { public: // System.TimeZoneInfo System.TimeZoneInfo::local TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___local_4; // System.Boolean System.TimeZoneInfo::readlinkNotFound bool ___readlinkNotFound_6; // System.TimeZoneInfo System.TimeZoneInfo::utc TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___utc_9; // System.String System.TimeZoneInfo::timeZoneDirectory String_t* ___timeZoneDirectory_10; // Microsoft.Win32.RegistryKey System.TimeZoneInfo::timeZoneKey RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___timeZoneKey_12; // Microsoft.Win32.RegistryKey System.TimeZoneInfo::localZoneKey RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___localZoneKey_13; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo> System.TimeZoneInfo::systemTimeZones ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * ___systemTimeZones_14; public: inline static int32_t get_offset_of_local_4() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___local_4)); } inline TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * get_local_4() const { return ___local_4; } inline TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 ** get_address_of_local_4() { return &___local_4; } inline void set_local_4(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * value) { ___local_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___local_4), (void*)value); } inline static int32_t get_offset_of_readlinkNotFound_6() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___readlinkNotFound_6)); } inline bool get_readlinkNotFound_6() const { return ___readlinkNotFound_6; } inline bool* get_address_of_readlinkNotFound_6() { return &___readlinkNotFound_6; } inline void set_readlinkNotFound_6(bool value) { ___readlinkNotFound_6 = value; } inline static int32_t get_offset_of_utc_9() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___utc_9)); } inline TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * get_utc_9() const { return ___utc_9; } inline TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 ** get_address_of_utc_9() { return &___utc_9; } inline void set_utc_9(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * value) { ___utc_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___utc_9), (void*)value); } inline static int32_t get_offset_of_timeZoneDirectory_10() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___timeZoneDirectory_10)); } inline String_t* get_timeZoneDirectory_10() const { return ___timeZoneDirectory_10; } inline String_t** get_address_of_timeZoneDirectory_10() { return &___timeZoneDirectory_10; } inline void set_timeZoneDirectory_10(String_t* value) { ___timeZoneDirectory_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___timeZoneDirectory_10), (void*)value); } inline static int32_t get_offset_of_timeZoneKey_12() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___timeZoneKey_12)); } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * get_timeZoneKey_12() const { return ___timeZoneKey_12; } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 ** get_address_of_timeZoneKey_12() { return &___timeZoneKey_12; } inline void set_timeZoneKey_12(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * value) { ___timeZoneKey_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___timeZoneKey_12), (void*)value); } inline static int32_t get_offset_of_localZoneKey_13() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___localZoneKey_13)); } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * get_localZoneKey_13() const { return ___localZoneKey_13; } inline RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 ** get_address_of_localZoneKey_13() { return &___localZoneKey_13; } inline void set_localZoneKey_13(RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * value) { ___localZoneKey_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___localZoneKey_13), (void*)value); } inline static int32_t get_offset_of_systemTimeZones_14() { return static_cast<int32_t>(offsetof(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields, ___systemTimeZones_14)); } inline ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * get_systemTimeZones_14() const { return ___systemTimeZones_14; } inline ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 ** get_address_of_systemTimeZones_14() { return &___systemTimeZones_14; } inline void set_systemTimeZones_14(ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * value) { ___systemTimeZones_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___systemTimeZones_14), (void*)value); } }; // System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION struct DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F { public: // System.TimeZoneInfo_TIME_ZONE_INFORMATION System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION::TZI TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 ___TZI_0; // System.String System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION::TimeZoneKeyName String_t* ___TimeZoneKeyName_1; // System.Byte System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION::DynamicDaylightTimeDisabled uint8_t ___DynamicDaylightTimeDisabled_2; public: inline static int32_t get_offset_of_TZI_0() { return static_cast<int32_t>(offsetof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F, ___TZI_0)); } inline TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 get_TZI_0() const { return ___TZI_0; } inline TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * get_address_of_TZI_0() { return &___TZI_0; } inline void set_TZI_0(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 value) { ___TZI_0 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___TZI_0))->___StandardName_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___TZI_0))->___DaylightName_4), (void*)NULL); #endif } inline static int32_t get_offset_of_TimeZoneKeyName_1() { return static_cast<int32_t>(offsetof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F, ___TimeZoneKeyName_1)); } inline String_t* get_TimeZoneKeyName_1() const { return ___TimeZoneKeyName_1; } inline String_t** get_address_of_TimeZoneKeyName_1() { return &___TimeZoneKeyName_1; } inline void set_TimeZoneKeyName_1(String_t* value) { ___TimeZoneKeyName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___TimeZoneKeyName_1), (void*)value); } inline static int32_t get_offset_of_DynamicDaylightTimeDisabled_2() { return static_cast<int32_t>(offsetof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F, ___DynamicDaylightTimeDisabled_2)); } inline uint8_t get_DynamicDaylightTimeDisabled_2() const { return ___DynamicDaylightTimeDisabled_2; } inline uint8_t* get_address_of_DynamicDaylightTimeDisabled_2() { return &___DynamicDaylightTimeDisabled_2; } inline void set_DynamicDaylightTimeDisabled_2(uint8_t value) { ___DynamicDaylightTimeDisabled_2 = value; } }; // Native definition for P/Invoke marshalling of System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION struct DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke { TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke ___TZI_0; Il2CppChar ___TimeZoneKeyName_1[128]; uint8_t ___DynamicDaylightTimeDisabled_2; }; // Native definition for COM marshalling of System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION struct DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_com { TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com ___TZI_0; Il2CppChar ___TimeZoneKeyName_1[128]; uint8_t ___DynamicDaylightTimeDisabled_2; }; // System.TimeZoneInfo_TransitionTime struct TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 { public: // System.DateTime System.TimeZoneInfo_TransitionTime::m_timeOfDay DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_timeOfDay_0; // System.Byte System.TimeZoneInfo_TransitionTime::m_month uint8_t ___m_month_1; // System.Byte System.TimeZoneInfo_TransitionTime::m_week uint8_t ___m_week_2; // System.Byte System.TimeZoneInfo_TransitionTime::m_day uint8_t ___m_day_3; // System.DayOfWeek System.TimeZoneInfo_TransitionTime::m_dayOfWeek int32_t ___m_dayOfWeek_4; // System.Boolean System.TimeZoneInfo_TransitionTime::m_isFixedDateRule bool ___m_isFixedDateRule_5; public: inline static int32_t get_offset_of_m_timeOfDay_0() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_timeOfDay_0)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_timeOfDay_0() const { return ___m_timeOfDay_0; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_timeOfDay_0() { return &___m_timeOfDay_0; } inline void set_m_timeOfDay_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___m_timeOfDay_0 = value; } inline static int32_t get_offset_of_m_month_1() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_month_1)); } inline uint8_t get_m_month_1() const { return ___m_month_1; } inline uint8_t* get_address_of_m_month_1() { return &___m_month_1; } inline void set_m_month_1(uint8_t value) { ___m_month_1 = value; } inline static int32_t get_offset_of_m_week_2() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_week_2)); } inline uint8_t get_m_week_2() const { return ___m_week_2; } inline uint8_t* get_address_of_m_week_2() { return &___m_week_2; } inline void set_m_week_2(uint8_t value) { ___m_week_2 = value; } inline static int32_t get_offset_of_m_day_3() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_day_3)); } inline uint8_t get_m_day_3() const { return ___m_day_3; } inline uint8_t* get_address_of_m_day_3() { return &___m_day_3; } inline void set_m_day_3(uint8_t value) { ___m_day_3 = value; } inline static int32_t get_offset_of_m_dayOfWeek_4() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_dayOfWeek_4)); } inline int32_t get_m_dayOfWeek_4() const { return ___m_dayOfWeek_4; } inline int32_t* get_address_of_m_dayOfWeek_4() { return &___m_dayOfWeek_4; } inline void set_m_dayOfWeek_4(int32_t value) { ___m_dayOfWeek_4 = value; } inline static int32_t get_offset_of_m_isFixedDateRule_5() { return static_cast<int32_t>(offsetof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116, ___m_isFixedDateRule_5)); } inline bool get_m_isFixedDateRule_5() const { return ___m_isFixedDateRule_5; } inline bool* get_address_of_m_isFixedDateRule_5() { return &___m_isFixedDateRule_5; } inline void set_m_isFixedDateRule_5(bool value) { ___m_isFixedDateRule_5 = value; } }; // Native definition for P/Invoke marshalling of System.TimeZoneInfo/TransitionTime struct TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshaled_pinvoke { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_timeOfDay_0; uint8_t ___m_month_1; uint8_t ___m_week_2; uint8_t ___m_day_3; int32_t ___m_dayOfWeek_4; int32_t ___m_isFixedDateRule_5; }; // Native definition for COM marshalling of System.TimeZoneInfo/TransitionTime struct TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshaled_com { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_timeOfDay_0; uint8_t ___m_month_1; uint8_t ___m_week_2; uint8_t ___m_day_3; int32_t ___m_dayOfWeek_4; int32_t ___m_isFixedDateRule_5; }; // System.TimeZoneNotFoundException struct TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // Microsoft.Win32.SafeHandles.SafeWaitHandle struct SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 : public SafeHandleZeroOrMinusOneIsInvalid_t779A965C82098677DF1ED10A134DBCDEC8AACB8E { public: public: }; // System.Action struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579 : public MulticastDelegate_t { public: public: }; // System.Action`1<System.Object> struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 : public MulticastDelegate_t { public: public: }; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.ArithmeticException struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t { public: public: }; // System.Comparison`1<System.TimeZoneInfo_AdjustmentRule> struct Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 : public MulticastDelegate_t { public: public: }; // System.EventHandler struct EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C : public MulticastDelegate_t { public: public: }; // System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs> struct EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC : public MulticastDelegate_t { public: public: }; // System.Func`2<System.Reflection.AssemblyName,System.Reflection.Assembly> struct Func_2_t13827C9725E0D12567E029E178981FB7D0E13430 : public MulticastDelegate_t { public: public: }; // System.Func`4<System.Reflection.Assembly,System.String,System.Boolean,System.Type> struct Func_4_t3D7857A2A0F731D1E992FC5B09E983A8621FABFF : public MulticastDelegate_t { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NotImplementedException struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.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; Il2CppCodeGenWriteBarrier((void**)&(((&____cancellationToken_17))->___m_source_0), (void*)NULL); } }; // System.Reflection.MemberFilter struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 : public MulticastDelegate_t { public: public: }; // System.Reflection.TypeFilter struct TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 : public MulticastDelegate_t { public: public: }; // System.Reflection.TypeInfo struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t { public: public: }; // System.Runtime.Serialization.SerializationException struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields { public: // System.String System.Runtime.Serialization.SerializationException::_nullMessage String_t* ____nullMessage_17; public: inline static int32_t get_offset_of__nullMessage_17() { return static_cast<int32_t>(offsetof(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields, ____nullMessage_17)); } inline String_t* get__nullMessage_17() const { return ____nullMessage_17; } inline String_t** get_address_of__nullMessage_17() { return &____nullMessage_17; } inline void set__nullMessage_17(String_t* value) { ____nullMessage_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____nullMessage_17), (void*)value); } }; // System.Threading.AbandonedMutexException struct AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.Int32 System.Threading.AbandonedMutexException::m_MutexIndex int32_t ___m_MutexIndex_17; // System.Threading.Mutex System.Threading.AbandonedMutexException::m_Mutex Mutex_tEFA4BCB29AF9E8B7BD6F0973C6AFFA072744AB5C * ___m_Mutex_18; public: inline static int32_t get_offset_of_m_MutexIndex_17() { return static_cast<int32_t>(offsetof(AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9, ___m_MutexIndex_17)); } inline int32_t get_m_MutexIndex_17() const { return ___m_MutexIndex_17; } inline int32_t* get_address_of_m_MutexIndex_17() { return &___m_MutexIndex_17; } inline void set_m_MutexIndex_17(int32_t value) { ___m_MutexIndex_17 = value; } inline static int32_t get_offset_of_m_Mutex_18() { return static_cast<int32_t>(offsetof(AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9, ___m_Mutex_18)); } inline Mutex_tEFA4BCB29AF9E8B7BD6F0973C6AFFA072744AB5C * get_m_Mutex_18() const { return ___m_Mutex_18; } inline Mutex_tEFA4BCB29AF9E8B7BD6F0973C6AFFA072744AB5C ** get_address_of_m_Mutex_18() { return &___m_Mutex_18; } inline void set_m_Mutex_18(Mutex_tEFA4BCB29AF9E8B7BD6F0973C6AFFA072744AB5C * value) { ___m_Mutex_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Mutex_18), (void*)value); } }; // System.Threading.ContextCallback struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 : public MulticastDelegate_t { public: public: }; // System.Threading.ManualResetEvent struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 : public EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98 { public: public: }; // System.Threading.ParameterizedThreadStart struct ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F : public MulticastDelegate_t { public: public: }; // System.Threading.Tasks.Task_DelayPromise struct DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2 : public Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 { public: // System.Threading.CancellationToken System.Threading.Tasks.Task_DelayPromise::Token CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___Token_25; // System.Threading.CancellationTokenRegistration System.Threading.Tasks.Task_DelayPromise::Registration CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___Registration_26; // System.Threading.Timer System.Threading.Tasks.Task_DelayPromise::Timer Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * ___Timer_27; public: inline static int32_t get_offset_of_Token_25() { return static_cast<int32_t>(offsetof(DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2, ___Token_25)); } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_Token_25() const { return ___Token_25; } inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_Token_25() { return &___Token_25; } inline void set_Token_25(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value) { ___Token_25 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___Token_25))->___m_source_0), (void*)NULL); } inline static int32_t get_offset_of_Registration_26() { return static_cast<int32_t>(offsetof(DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2, ___Registration_26)); } inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 get_Registration_26() const { return ___Registration_26; } inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * get_address_of_Registration_26() { return &___Registration_26; } inline void set_Registration_26(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 value) { ___Registration_26 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___Registration_26))->___m_callbackInfo_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___Registration_26))->___m_registrationInfo_1))->___m_source_0), (void*)NULL); #endif } inline static int32_t get_offset_of_Timer_27() { return static_cast<int32_t>(offsetof(DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2, ___Timer_27)); } inline Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * get_Timer_27() const { return ___Timer_27; } inline Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 ** get_address_of_Timer_27() { return &___Timer_27; } inline void set_Timer_27(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * value) { ___Timer_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___Timer_27), (void*)value); } }; // System.Threading.Tasks.TaskFactory_CompleteOnInvokePromise struct CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 : public Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 { public: // System.Collections.Generic.IList`1<System.Threading.Tasks.Task> System.Threading.Tasks.TaskFactory_CompleteOnInvokePromise::_tasks RuntimeObject* ____tasks_25; // System.Int32 System.Threading.Tasks.TaskFactory_CompleteOnInvokePromise::m_firstTaskAlreadyCompleted int32_t ___m_firstTaskAlreadyCompleted_26; public: inline static int32_t get_offset_of__tasks_25() { return static_cast<int32_t>(offsetof(CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86, ____tasks_25)); } inline RuntimeObject* get__tasks_25() const { return ____tasks_25; } inline RuntimeObject** get_address_of__tasks_25() { return &____tasks_25; } inline void set__tasks_25(RuntimeObject* value) { ____tasks_25 = value; Il2CppCodeGenWriteBarrier((void**)(&____tasks_25), (void*)value); } inline static int32_t get_offset_of_m_firstTaskAlreadyCompleted_26() { return static_cast<int32_t>(offsetof(CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86, ___m_firstTaskAlreadyCompleted_26)); } inline int32_t get_m_firstTaskAlreadyCompleted_26() const { return ___m_firstTaskAlreadyCompleted_26; } inline int32_t* get_address_of_m_firstTaskAlreadyCompleted_26() { return &___m_firstTaskAlreadyCompleted_26; } inline void set_m_firstTaskAlreadyCompleted_26(int32_t value) { ___m_firstTaskAlreadyCompleted_26 = value; } }; // System.Threading.ThreadAbortException struct ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Threading.ThreadInterruptedException struct ThreadInterruptedException_t40D8296AA9D9E8B74E29BFAE1089CFACC5F03751 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Threading.ThreadStart struct ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF : public MulticastDelegate_t { public: public: }; // System.Threading.ThreadStateException struct ThreadStateException_tCE60AB1B9E16A6D13E3926137BA55832ABE986AE : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Threading.TimerCallback struct TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 : public MulticastDelegate_t { public: public: }; // System.Threading.WaitCallback struct WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC : public MulticastDelegate_t { public: public: }; // System.Threading.WaitHandleCannotBeOpenedException struct WaitHandleCannotBeOpenedException_t869CD999EE7B918C5546E2007AF7C4557281B65B : public ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 { public: public: }; // System.Threading.WaitOrTimerCallback struct WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF : public MulticastDelegate_t { public: public: }; // System.TimeZoneInfo_AdjustmentRule struct AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 : public RuntimeObject { public: // System.DateTime System.TimeZoneInfo_AdjustmentRule::m_dateStart DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_dateStart_0; // System.DateTime System.TimeZoneInfo_AdjustmentRule::m_dateEnd DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___m_dateEnd_1; // System.TimeSpan System.TimeZoneInfo_AdjustmentRule::m_daylightDelta TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___m_daylightDelta_2; // System.TimeZoneInfo_TransitionTime System.TimeZoneInfo_AdjustmentRule::m_daylightTransitionStart TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___m_daylightTransitionStart_3; // System.TimeZoneInfo_TransitionTime System.TimeZoneInfo_AdjustmentRule::m_daylightTransitionEnd TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___m_daylightTransitionEnd_4; // System.TimeSpan System.TimeZoneInfo_AdjustmentRule::m_baseUtcOffsetDelta TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___m_baseUtcOffsetDelta_5; public: inline static int32_t get_offset_of_m_dateStart_0() { return static_cast<int32_t>(offsetof(AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204, ___m_dateStart_0)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_dateStart_0() const { return ___m_dateStart_0; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_dateStart_0() { return &___m_dateStart_0; } inline void set_m_dateStart_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___m_dateStart_0 = value; } inline static int32_t get_offset_of_m_dateEnd_1() { return static_cast<int32_t>(offsetof(AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204, ___m_dateEnd_1)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_m_dateEnd_1() const { return ___m_dateEnd_1; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_m_dateEnd_1() { return &___m_dateEnd_1; } inline void set_m_dateEnd_1(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___m_dateEnd_1 = value; } inline static int32_t get_offset_of_m_daylightDelta_2() { return static_cast<int32_t>(offsetof(AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204, ___m_daylightDelta_2)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_m_daylightDelta_2() const { return ___m_daylightDelta_2; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_m_daylightDelta_2() { return &___m_daylightDelta_2; } inline void set_m_daylightDelta_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___m_daylightDelta_2 = value; } inline static int32_t get_offset_of_m_daylightTransitionStart_3() { return static_cast<int32_t>(offsetof(AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204, ___m_daylightTransitionStart_3)); } inline TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 get_m_daylightTransitionStart_3() const { return ___m_daylightTransitionStart_3; } inline TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * get_address_of_m_daylightTransitionStart_3() { return &___m_daylightTransitionStart_3; } inline void set_m_daylightTransitionStart_3(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 value) { ___m_daylightTransitionStart_3 = value; } inline static int32_t get_offset_of_m_daylightTransitionEnd_4() { return static_cast<int32_t>(offsetof(AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204, ___m_daylightTransitionEnd_4)); } inline TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 get_m_daylightTransitionEnd_4() const { return ___m_daylightTransitionEnd_4; } inline TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * get_address_of_m_daylightTransitionEnd_4() { return &___m_daylightTransitionEnd_4; } inline void set_m_daylightTransitionEnd_4(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 value) { ___m_daylightTransitionEnd_4 = value; } inline static int32_t get_offset_of_m_baseUtcOffsetDelta_5() { return static_cast<int32_t>(offsetof(AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204, ___m_baseUtcOffsetDelta_5)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_m_baseUtcOffsetDelta_5() const { return ___m_baseUtcOffsetDelta_5; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_m_baseUtcOffsetDelta_5() { return &___m_baseUtcOffsetDelta_5; } inline void set_m_baseUtcOffsetDelta_5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___m_baseUtcOffsetDelta_5 = value; } }; // System.TimeoutException struct TimeoutException_t15A6E9A2A5819966712B5CFAF756BAEA40E3B1B7 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.TypeLoadException struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.TypeLoadException::ClassName String_t* ___ClassName_17; // System.String System.TypeLoadException::AssemblyName String_t* ___AssemblyName_18; // System.String System.TypeLoadException::MessageArg String_t* ___MessageArg_19; // System.Int32 System.TypeLoadException::ResourceId int32_t ___ResourceId_20; public: inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ClassName_17)); } inline String_t* get_ClassName_17() const { return ___ClassName_17; } inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; } inline void set_ClassName_17(String_t* value) { ___ClassName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassName_17), (void*)value); } inline static int32_t get_offset_of_AssemblyName_18() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___AssemblyName_18)); } inline String_t* get_AssemblyName_18() const { return ___AssemblyName_18; } inline String_t** get_address_of_AssemblyName_18() { return &___AssemblyName_18; } inline void set_AssemblyName_18(String_t* value) { ___AssemblyName_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___AssemblyName_18), (void*)value); } inline static int32_t get_offset_of_MessageArg_19() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___MessageArg_19)); } inline String_t* get_MessageArg_19() const { return ___MessageArg_19; } inline String_t** get_address_of_MessageArg_19() { return &___MessageArg_19; } inline void set_MessageArg_19(String_t* value) { ___MessageArg_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___MessageArg_19), (void*)value); } inline static int32_t get_offset_of_ResourceId_20() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ResourceId_20)); } inline int32_t get_ResourceId_20() const { return ___ResourceId_20; } inline int32_t* get_address_of_ResourceId_20() { return &___ResourceId_20; } inline void set_ResourceId_20(int32_t value) { ___ResourceId_20 = value; } }; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: public: }; // 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((void**)(&___m_actualValue_19), (void*)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((void**)(&____rangeMessage_18), (void*)value); } }; // System.DllNotFoundException struct DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76 : public TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 { public: public: }; // System.EntryPointNotFoundException struct EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279 : public TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 { public: public: }; // System.ObjectDisposedException struct ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A : public InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 { public: // System.String System.ObjectDisposedException::objectName String_t* ___objectName_17; public: inline static int32_t get_offset_of_objectName_17() { return static_cast<int32_t>(offsetof(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A, ___objectName_17)); } inline String_t* get_objectName_17() const { return ___objectName_17; } inline String_t** get_address_of_objectName_17() { return &___objectName_17; } inline void set_objectName_17(String_t* value) { ___objectName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___objectName_17), (void*)value); } }; // System.OverflowException struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D : public ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 { public: public: }; // System.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F : public TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC { public: // System.MonoTypeInfo System.RuntimeType::type_info MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * ___type_info_26; // System.Object System.RuntimeType::GenericCache RuntimeObject * ___GenericCache_27; // System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * ___m_serializationCtor_28; public: inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___type_info_26)); } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * get_type_info_26() const { return ___type_info_26; } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D ** get_address_of_type_info_26() { return &___type_info_26; } inline void set_type_info_26(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * value) { ___type_info_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_info_26), (void*)value); } inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___GenericCache_27)); } inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; } inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; } inline void set_GenericCache_27(RuntimeObject * value) { ___GenericCache_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___GenericCache_27), (void*)value); } inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___m_serializationCtor_28)); } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; } inline void set_m_serializationCtor_28(RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * value) { ___m_serializationCtor_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_serializationCtor_28), (void*)value); } }; struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields { public: // System.RuntimeType System.RuntimeType::ValueType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ValueType_10; // System.RuntimeType System.RuntimeType::EnumType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_11; // System.RuntimeType System.RuntimeType::ObjectType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ObjectType_12; // System.RuntimeType System.RuntimeType::StringType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___StringType_13; // System.RuntimeType System.RuntimeType::DelegateType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___DelegateType_14; // System.Type[] System.RuntimeType::s_SICtorParamTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___s_SICtorParamTypes_15; // System.RuntimeType System.RuntimeType::s_typedRef RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___s_typedRef_25; public: inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ValueType_10)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ValueType_10() const { return ___ValueType_10; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ValueType_10() { return &___ValueType_10; } inline void set_ValueType_10(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ValueType_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ValueType_10), (void*)value); } inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___EnumType_11)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_11() const { return ___EnumType_11; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_11() { return &___EnumType_11; } inline void set_EnumType_11(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___EnumType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___EnumType_11), (void*)value); } inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ObjectType_12)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ObjectType_12() const { return ___ObjectType_12; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ObjectType_12() { return &___ObjectType_12; } inline void set_ObjectType_12(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ObjectType_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___ObjectType_12), (void*)value); } inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___StringType_13)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_StringType_13() const { return ___StringType_13; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_StringType_13() { return &___StringType_13; } inline void set_StringType_13(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___StringType_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___StringType_13), (void*)value); } inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___DelegateType_14)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_DelegateType_14() const { return ___DelegateType_14; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_DelegateType_14() { return &___DelegateType_14; } inline void set_DelegateType_14(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___DelegateType_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___DelegateType_14), (void*)value); } inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_SICtorParamTypes_15)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; } inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___s_SICtorParamTypes_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_SICtorParamTypes_15), (void*)value); } inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_typedRef_25)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_s_typedRef_25() const { return ___s_typedRef_25; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; } inline void set_s_typedRef_25(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___s_typedRef_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_typedRef_25), (void*)value); } }; // System.Threading.Tasks.TaskCanceledException struct TaskCanceledException_tB1E5209054F302F814E18BBCACDF6546BAF2EC48 : public OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 { public: // System.Threading.Tasks.Task System.Threading.Tasks.TaskCanceledException::m_canceledTask Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_canceledTask_18; public: inline static int32_t get_offset_of_m_canceledTask_18() { return static_cast<int32_t>(offsetof(TaskCanceledException_tB1E5209054F302F814E18BBCACDF6546BAF2EC48, ___m_canceledTask_18)); } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_m_canceledTask_18() const { return ___m_canceledTask_18; } inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_m_canceledTask_18() { return &___m_canceledTask_18; } inline void set_m_canceledTask_18(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value) { ___m_canceledTask_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_canceledTask_18), (void*)value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Exception[] struct ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209 : public RuntimeArray { public: ALIGN_FIELD (8) Exception_t * m_Items[1]; public: inline Exception_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Exception_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, Exception_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Exception_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Exception_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Exception_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Threading.ThreadPoolWorkQueue_WorkStealingQueue[] struct WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9 : public RuntimeArray { public: ALIGN_FIELD (8) WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * m_Items[1]; public: inline WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB ** 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, WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Threading.IThreadPoolWorkItem[] struct IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154 : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject* m_Items[1]; public: inline RuntimeObject* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86 : public RuntimeArray { public: ALIGN_FIELD (8) Delegate_t * m_Items[1]; public: inline Delegate_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Delegate_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, Delegate_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Threading.WaitHandle[] struct WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC : public RuntimeArray { public: ALIGN_FIELD (8) WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * m_Items[1]; public: inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 ** 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, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.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.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.TimeZoneInfo_AdjustmentRule[] struct AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD : public RuntimeArray { public: ALIGN_FIELD (8) AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * m_Items[1]; public: inline AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 ** 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, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.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.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA : public RuntimeArray { public: ALIGN_FIELD (8) ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E m_Items[1]; public: inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL); } inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL); } }; // System.Reflection.MethodInfo[] struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B : public RuntimeArray { public: ALIGN_FIELD (8) MethodInfo_t * m_Items[1]; public: inline MethodInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline MethodInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, MethodInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline MethodInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline MethodInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, MethodInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E : public RuntimeArray { public: ALIGN_FIELD (8) PropertyInfo_t * m_Items[1]; public: inline PropertyInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PropertyInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, PropertyInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline PropertyInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PropertyInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.MemberInfo[] struct MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6 : public RuntimeArray { public: ALIGN_FIELD (8) MemberInfo_t * m_Items[1]; public: inline MemberInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline MemberInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, MemberInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline MemberInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline MemberInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, MemberInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.FieldInfo[] struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE : public RuntimeArray { public: ALIGN_FIELD (8) FieldInfo_t * m_Items[1]; public: inline FieldInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline FieldInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, FieldInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline FieldInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline FieldInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.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; } }; // 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; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); } 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; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL); } }; IL2CPP_EXTERN_C void DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke(const DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F& unmarshaled, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_back(const DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke& marshaled, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F& unmarshaled); IL2CPP_EXTERN_C void DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_cleanup(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_pinvoke(const TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811& unmarshaled, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_pinvoke_back(const TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke& marshaled, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811& unmarshaled); IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_pinvoke_cleanup(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_com(const TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811& unmarshaled, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com& marshaled); IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_com_back(const TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com& marshaled, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811& unmarshaled); IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_com_cleanup(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com& marshaled); // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mB6BFCB1A119B19A4AE30679E41E1F4EC47797EB4_gshared (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetCanceled(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetCanceled_mF517585BF4AC77744F212A6F236047C47E7CB45C_gshared (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___tokenToRecord0, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_mAD80B9B3A23B94A6798C589669A06F1D25D46543_gshared (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * __this, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___result0, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method); // System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_GetEnumerator_m0C8A9A1DBCB1FEFD1FF6A4E807D329949B925A76_gshared (ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::AddRange(System.Collections.Generic.IEnumerable`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m629B40CD4286736C328FA496AAFC388F697CF984_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject* ___collection0, const RuntimeMethod* method); // T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>::.ctor(System.Collections.Generic.IList`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m8F7880F43C4E281DBF7CA5A9431D5E6DD3797B7E_gshared (ReadOnlyCollection_1_t5D996E967221C71E4EC5CC11210C3076432D5A50 * __this, RuntimeObject* ___list0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m6DAC1732E56024E32076DEE1A3863F17635A8944_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task`1<System.Object>::TrySetResult(TResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_1_TrySetResult_m4FE4E07EBB0BA224341A4946FE2C4A813BD8AF64_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, RuntimeObject * ___result0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2__ctor_m1BF7C98CA314D99CE58778C0C661D5F1628B6563_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.EventHandler`1<System.Object>::Invoke(System.Object,TEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler_1_Invoke_mBF3979EE17B68658C4C1AB3A8D64B24F263E3B98_gshared (EventHandler_1_t10245A26B14DDE8DDFD5B263BDE0641F17DCFDC3 * __this, RuntimeObject * ___sender0, RuntimeObject * ___e1, const RuntimeMethod* method); // System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_gshared (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // T[] System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* SparseArray_1_get_Current_m6715E5ACB39FD5E197A696FF118069BAD185668D_gshared (SparseArray_1_t3343BC28ED7AB6481D2C9C24AC382CCEFD5148F1 * __this, const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparseArray_1__ctor_m14F57DABEB0112D1C2DC00D1C734570C06C73DB5_gshared (SparseArray_1_t3343BC28ED7AB6481D2C9C24AC382CCEFD5148F1 * __this, int32_t ___initialSize0, const RuntimeMethod* method); // System.Int32 System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SparseArray_1_Add_mF691405F72340FFB24B2B053CD36CE49E6F93D7A_gshared (SparseArray_1_t3343BC28ED7AB6481D2C9C24AC382CCEFD5148F1 * __this, RuntimeObject * ___e0, const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>::Remove(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparseArray_1_Remove_m68197C62F8B904A1778445F94E694E9F18C90BD7_gshared (SparseArray_1_t3343BC28ED7AB6481D2C9C24AC382CCEFD5148F1 * __this, RuntimeObject * ___e0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_mC5CFC6C9F3007FC24FE020198265D4B5B0659FFC_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Capacity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_get_Capacity_mB976106DA11B4155CBC654A4FEAF355280834D8B_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::set_Capacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Capacity_m5E67DE1CEC89ADB8A82937E2D0CB48A78F962FA3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Void System.Comparison`1<System.Object>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_m3445CDEBFFF4A3A9EAED69CBCC2D247630CA5BD4_gshared (Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Sort(System.Comparison`1<T>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mA3939603201EC0E13489EDA5975A07790CEDB483_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, Comparison_1_tD9DBDF7B2E4774B4D35E113A76D75828A24641F4 * ___comparison0, const RuntimeMethod* method); // T[] System.Collections.Generic.List`1<System.Object>::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* List_1_ToArray_m801D4DEF3587F60F463F04EEABE5CBE711FE5612_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1<System.Object>::Remove(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m908B647BB9F807676DACE34E3E73475C3C3751D4_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m69345D9DEE55AA0CE574D19CB7C430AC638C01A9_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::get_Item(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, const RuntimeMethod* method); // T System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Item(System.Int32) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B List_1_get_Item_mA3E868C42E65CB3DC3966732D238AF05D6338EF7_gshared_inline (List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1 * __this, int32_t ___index0, const RuntimeMethod* method); // TKey System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>::get_Key() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 KeyValuePair_2_get_Key_m15F31F68F9D7F399DEBCC2328913654D36E79C1E_gshared_inline (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * __this, const RuntimeMethod* method); // TValue System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>::get_Value() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m5AF581973CD6FDFDA5540F0A0AAD90D97CC45D5D_gshared_inline (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Count() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mB556AE5EB3416A032123DE8D7E96B5FFD8CC8242_gshared_inline (List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mF7AEA0EFA07EEBC1A4B283A26A7CB720EE7A4C20_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m6015B3C75A1DAB939EB443D59748227888900331_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mE0334FEEB0DA08C563C9A3EBC9841C917C6E8E2E_gshared (List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1 * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>::.ctor(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mDE04093EC61BE2A8488E791E66598DE871AA96AF_gshared (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Add(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mA7FDE3694EEBB4C98536E78A885B8ADBDD00CE1D_gshared (List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1 * __this, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___item0, const RuntimeMethod* method); // System.Int32 System.Array::IndexOf<System.Object>(T[],T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Int32 System.Array::BinarySearch<System.UInt64>(T[],T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mDC37BFA945C8ED7FB8700727168D2F68CCFCE4A3_gshared (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, uint64_t ___value1, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m5074370076D060EDD4DE2D93ABCD6E80B6AA2574 (U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 * __this, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task/DelayPromise::Complete() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelayPromise_Complete_m0CE65AE222FFF596F849ACDF12710DA631C673AD (DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task/ContingentProperties::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContingentProperties__ctor_mD515B94D26AB52AFF131A9C97483E657261B0120 (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::get_IsExceptionObservedByParent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_get_IsExceptionObservedByParent_mF76B3BAD34F96F98D1A8E8ACFF533728CEA7EE07 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Threading.Tasks.Task System.Threading.Tasks.Task::get_InternalCurrent() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892_inline (const RuntimeMethod* method); // System.Threading.ExecutionContext System.Threading.Tasks.Task::get_CapturedContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * Task_get_CapturedContext_m0BF410316395E27B89095D1070AB0D0875B0AAF1 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::get_ExecutingTaskScheduler() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * Task_get_ExecutingTaskScheduler_m3A3340F34EF9D594413E54F46B78874BCB0CA30D_inline (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Threading.ExecutionContext System.Threading.Tasks.Task::CopyExecutionContext(System.Threading.ExecutionContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * Task_CopyExecutionContext_m8B27D58B28710B2B9CDA52970404E67039F0EE53 (ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___capturedContext0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::set_CapturedContext(System.Threading.ExecutionContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_set_CapturedContext_mB7C98613F94CB2B97DB8B283F18E0E47C42B887B (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___value0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::ScheduleAndStart(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_ScheduleAndStart_m7A3334C89BD4B47370D0A3CAE575EA54CCA01AEF (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, bool ___needsProtection0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::InnerInvokeWithArg(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Task_InnerInvokeWithArg_m8313756145BF2BCE95AA05D0B896E4780788DD86 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___childTask0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::HandleException(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_HandleException_m6B4C1844450535E0938234A9A696060C28A5F74C (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, Exception_t * ___unhandledException0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::FinishThreadAbortedTask(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_FinishThreadAbortedTask_m68ACB8E7C1B325A01E7CFB23448F60DF56328760 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, bool ___bTAEAddedToExceptionHolder0, bool ___delegateRan1, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::InternalCancel(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_InternalCancel_m745407E41B4B25AA01E7DBAD85A4857D1F7F520D (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, bool ___bCancelNonExecutingOnly0, const RuntimeMethod* method); // System.Void System.Threading.ManualResetEventSlim::Set() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManualResetEventSlim_Set_m2E94D35286055BA81B9DAD85C4CB9DCF89CF0F81 (ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * __this, const RuntimeMethod* method); // System.Void System.Threading.CancellationTokenRegistration::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenRegistration_Dispose_m12C09B73DC2913C85C776E611EF48DCA63405457 (CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::.ctor() inline void Task_1__ctor_mB6BFCB1A119B19A4AE30679E41E1F4EC47797EB4 (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * __this, const RuntimeMethod* method) { (( void (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, const RuntimeMethod*))Task_1__ctor_mB6BFCB1A119B19A4AE30679E41E1F4EC47797EB4_gshared)(__this, method); } // System.Boolean System.Threading.Tasks.AsyncCausalityTracer::get_LoggingOn() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AsyncCausalityTracer_get_LoggingOn_m1A633E7FCD4DF7D870FFF917FDCDBEDAF24725B7 (const RuntimeMethod* method); // System.Int32 System.Threading.Tasks.Task::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.AsyncCausalityTracer::TraceOperationCreation(System.Threading.Tasks.CausalityTraceLevel,System.Int32,System.String,System.UInt64) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void AsyncCausalityTracer_TraceOperationCreation_m7B5DBD272BC20E986A5120FBF6665241BBACF060 (int32_t ___traceLevel0, int32_t ___taskId1, String_t* ___operationName2, uint64_t ___relatedContext3, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::AddToActiveTasks(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_AddToActiveTasks_m840B00A5EE550016686305EDB927B9A7FE37C421 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, const RuntimeMethod* method); // System.Boolean System.Threading.CancellationToken::get_IsCancellationRequested() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetCanceled(System.Threading.CancellationToken) inline bool Task_1_TrySetCanceled_mF517585BF4AC77744F212A6F236047C47E7CB45C (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___tokenToRecord0, const RuntimeMethod* method) { return (( bool (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))Task_1_TrySetCanceled_mF517585BF4AC77744F212A6F236047C47E7CB45C_gshared)(__this, ___tokenToRecord0, method); } // System.Void System.Threading.Tasks.AsyncCausalityTracer::TraceOperationCompletion(System.Threading.Tasks.CausalityTraceLevel,System.Int32,System.Threading.Tasks.AsyncCausalityStatus) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void AsyncCausalityTracer_TraceOperationCompletion_m63C07B707D3034D2F0F4B395636B410ACC9A78D6 (int32_t ___traceLevel0, int32_t ___taskId1, int32_t ___status2, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::RemoveFromActiveTasks(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_RemoveFromActiveTasks_mEDE131DB4C29D967D6D717CAB002C6C02583BDF5 (int32_t ___taskId0, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>::TrySetResult(TResult) inline bool Task_1_TrySetResult_mAD80B9B3A23B94A6798C589669A06F1D25D46543 (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * __this, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 ___result0, const RuntimeMethod* method) { return (( bool (*) (Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 *, VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 , const RuntimeMethod*))Task_1_TrySetResult_mAD80B9B3A23B94A6798C589669A06F1D25D46543_gshared)(__this, ___result0, method); } // System.Void System.Threading.Timer::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer_Dispose_mAD09E4EAC3D4A4732B55911919A60CACCF8173D9 (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, const RuntimeMethod* method); // System.Void System.Threading.ManualResetEventSlim::.ctor(System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManualResetEventSlim__ctor_m9755B7ADD1C06A7CA340D730FD1E3694BB563B94 (ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * __this, bool ___initialState0, int32_t ___spinCount1, const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method); // System.Void System.OperationCanceledException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperationCanceledException__ctor_m2B7CD7E9C467C67E91F869D2418897991E05CC2F (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Threading.CancellationToken System.Threading.Tasks.Task::get_CancellationToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB Task_get_CancellationToken_m3E8D0E96EEC38EC70AEE5F876AF8A0517B463D75 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Void System.OperationCanceledException::.ctor(System.String,System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperationCanceledException__ctor_mFA31130275508696794961415B1C9F0AC2308DB0 (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * __this, String_t* ___message0, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___token1, const RuntimeMethod* method); // System.Void System.OperationCanceledException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperationCanceledException__ctor_m8FCB4255C71E7CCCD49CF391BC5CE8EF39F47700 (OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::MarkStarted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_MarkStarted_mA6657A4058C324CA5277F16D30C25741C4220030 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.TaskScheduler::TryRunInline(System.Threading.Tasks.Task,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskScheduler_TryRunInline_m9FBFA8F615D96CC9902CA2CBC3D51BCF7444E67B (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, bool ___taskWasPreviouslyQueued1, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskScheduler::InternalQueueTask(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskScheduler_InternalQueueTask_m08940F911E3B4987803048AC88CAE4FB803E1B30 (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskSchedulerException::.ctor(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskSchedulerException__ctor_mFFF7423FCD3DFC4F8A6F7E6028AE6CB1D5865F63 (TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24 * __this, Exception_t * ___innerException0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::AddException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_AddException_m07648B13C5D6B6517EEC4C84D5C022965ED1AE54 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::Finish(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_Finish_m3CBED2C27D7A1E20A9D2A659D4DEA38FCC47DF8F (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, bool ___bUserDelegateExecuted0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskExceptionHolder::EnsureADUnloadCallbackRegistered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_EnsureADUnloadCallbackRegistered_m9143F763B1A627B480F5E1B9993FF68DE28BD080 (const RuntimeMethod* method); // System.Boolean System.CLRConfig::CheckThrowUnobservedTaskExceptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CLRConfig_CheckThrowUnobservedTaskExceptions_m7E817CDBB28FAAD9A350E189D536A84EA75A37D3 (const RuntimeMethod* method); // System.Void System.EventHandler::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventHandler__ctor_m497A2BCD46DB769EAFFDE919303FCAE226906B6F (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.AppDomain System.AppDomain::get_CurrentDomain() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0 (const RuntimeMethod* method); // System.Void System.AppDomain::add_DomainUnload(System.EventHandler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AppDomain_add_DomainUnload_mF24D35CA25C3C808EC78600D0C603B396EC8765F (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * ___value0, const RuntimeMethod* method); // System.Boolean System.Environment::get_HasShutdownStarted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Environment_get_HasShutdownStarted_m722CC30F8A3C58FE3165427FF2858922C13F7A5C (const RuntimeMethod* method); // System.Boolean System.AppDomain::IsFinalizingForUnload() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AppDomain_IsFinalizingForUnload_m1B3D0DA1C7AEA3D6FA5D7D52161B2FF52B2D9912 (AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::GetEnumerator() inline Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 List_1_GetEnumerator_mE27BF65BB76485B01C35B9F6A1D44C4560BF5370 (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * __this, const RuntimeMethod* method) { return (( Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 (*) (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 *, const RuntimeMethod*))List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared)(__this, method); } // T System.Collections.Generic.List`1/Enumerator<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Current() inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * Enumerator_get_Current_m2EA6C5DB454F479076AF2C9098A477B943F7CF71_inline (Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 * __this, const RuntimeMethod* method) { return (( ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * (*) (Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 *, const RuntimeMethod*))Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline)(__this, method); } // System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::get_SourceException() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * ExceptionDispatchInfo_get_SourceException_m212F50A437B8B18AFECE39F2A9F7231787F45F28_inline (ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * __this, const RuntimeMethod* method); // System.AggregateException System.AggregateException::Flatten() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * AggregateException_Flatten_mDA4D8AD18CD6E4E13B69A3CDC8F341D825AFE05C (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, const RuntimeMethod* method); // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> System.AggregateException::get_InnerExceptions() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * AggregateException_get_InnerExceptions_mB81D2B3BD56A3E938B83B0AF766474ED66057040_inline (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, const RuntimeMethod* method); // System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>::GetEnumerator() inline RuntimeObject* ReadOnlyCollection_1_GetEnumerator_mB3A1708B473BA7EE3CED5959613B2AA11A4920BA (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * __this, const RuntimeMethod* method) { return (( RuntimeObject* (*) (ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 *, const RuntimeMethod*))ReadOnlyCollection_1_GetEnumerator_m0C8A9A1DBCB1FEFD1FF6A4E807D329949B925A76_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::MoveNext() inline bool Enumerator_MoveNext_mDBF08ABE6CCFA1D4FCF82C5D409C18615C300000 (Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 *, const RuntimeMethod*))Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::Dispose() inline void Enumerator_Dispose_m60AD9FD2AC64440B5E23B200EAE9B55F366379AB (Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 *, const RuntimeMethod*))Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared)(__this, method); } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m49EF2FE10BC147085D49932EDE07AD581C461818 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, String_t* ___message0, RuntimeObject* ___innerExceptionInfos1, const RuntimeMethod* method); // System.Void System.Threading.Tasks.UnobservedTaskExceptionEventArgs::.ctor(System.AggregateException) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnobservedTaskExceptionEventArgs__ctor_mD866CEFA881E8B9F5C7FB00C62B3575E97BFEED3 (UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 * __this, AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * ___exception0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskScheduler::PublishUnobservedTaskException(System.Object,System.Threading.Tasks.UnobservedTaskExceptionEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskScheduler_PublishUnobservedTaskException_mA2CFE30AA160C2A0FEDAB216CEF09B86AD16ECA4 (RuntimeObject * ___sender0, UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 * ___ueea1, const RuntimeMethod* method); // System.Void System.Object::Finalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskExceptionHolder::SetCancellationException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_SetCancellationException_m98201054DD08F08C9DABEDA502FFDC926412EB35 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskExceptionHolder::AddFaultException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_AddFaultException_mAED32CEEF853B1EECD7CDD5285BD8E1F079DF505 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method); // System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Runtime.ExceptionServices.ExceptionDispatchInfo::Capture(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ExceptionDispatchInfo_Capture_m8E5F721466EDFE9AA8BC532F9AE7A859E0766E23 (Exception_t * ___source0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskExceptionHolder::MarkAsHandled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_MarkAsHandled_mDF29FF00633189AAC6A4D341F14D7DC6E0250835 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, bool ___calledFromFinalizer0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::.ctor(System.Int32) inline void List_1__ctor_m5D913FDA1B5B3FFD94223C59B5A70B418F569213 (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 *, int32_t, const RuntimeMethod*))List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared)(__this, ___capacity0, method); } // System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::Add(T) inline void List_1_Add_m3A0B8640D1A4B9BDC91742284BC44B969CC78279 (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * __this, ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 *, ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::AddRange(System.Collections.Generic.IEnumerable`1<T>) inline void List_1_AddRange_m931E984DEC4E3137C263958DE8354032E8784003 (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 *, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m629B40CD4286736C328FA496AAFC388F697CF984_gshared)(__this, ___collection0, method); } // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // T System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Item(System.Int32) inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * List_1_get_Item_m1F6363F6A46963C8CCA039EF719B7933A3817FF3_inline (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * (*) (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method); } // System.Type System.Exception::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3 (Exception_t * __this, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method); // System.Boolean System.Type::op_Inequality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskExceptionHolder::MarkAsUnhandled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_MarkAsUnhandled_mD22F977332D7F3EAE91FE0665BAEE1873B342301 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::get_Count() inline int32_t List_1_get_Count_m3DAF7D49CDFC1C5CB1461E2030F6FDDA59DBBE1F_inline (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method); } // System.Void System.GC::ReRegisterForFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.GC::SuppressFinalize(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.AggregateException::.ctor(System.Collections.Generic.IEnumerable`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m863A7C10A5AC7652F73FD1DD2441F9FF5544311E (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, RuntimeObject* ___innerExceptionInfos0, const RuntimeMethod* method); // System.Void System.AggregateException::.ctor(System.Exception[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m4BE6D1A4009BE2081C418E517FFDFE415B6CF908 (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* ___innerExceptions0, const RuntimeMethod* method); // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>::.ctor(System.Collections.Generic.IList`1<T>) inline void ReadOnlyCollection_1__ctor_m7B7B9545500B72A83AC286C66E80177D48BE2F7F (ReadOnlyCollection_1_t5DE493537EE0E554797BF0DA823DCBF1903CECC1 * __this, RuntimeObject* ___list0, const RuntimeMethod* method) { (( void (*) (ReadOnlyCollection_1_t5DE493537EE0E554797BF0DA823DCBF1903CECC1 *, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m8F7880F43C4E281DBF7CA5A9431D5E6DD3797B7E_gshared)(__this, ___list0, method); } // System.Boolean System.Threading.Tasks.TaskExceptionHolder::ShouldFailFastOnUnobservedException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskExceptionHolder_ShouldFailFastOnUnobservedException_m598AC45A67885B2AECE374ACE0EC8863F733CD1B (const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskFactory::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory__ctor_m2490F91C5D8A538976744AC434628767958D5EEA (TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler3, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskFactory::CheckMultiTaskContinuationOptions(System.Threading.Tasks.TaskContinuationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640 (int32_t ___continuationOptions0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskFactory::CheckCreationOptions(System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370 (int32_t ___creationOptions0, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskFactory/CompleteOnInvokePromise::.ctor(System.Collections.Generic.IList`1<System.Threading.Tasks.Task>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompleteOnInvokePromise__ctor_mFA5EA438CE61E8FDEB375E5CA2D7D5D1FFE0F175 (CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * __this, RuntimeObject* ___tasks0, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::get_IsCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskFactory/CompleteOnInvokePromise::Invoke(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompleteOnInvokePromise_Invoke_mAA9922CF17CC5F9186EEE5672444AC40BA0ACC3A (CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___completingTask0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::AddCompletionAction(System.Threading.Tasks.ITaskCompletionAction) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_AddCompletionAction_m211F80F6F259D8F8CBB408A901101B91923800C1 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, RuntimeObject* ___action0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task::RemoveContinuation(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_RemoveContinuation_m09A569E89BF4CCCF31646AB74A88BCDFC093DAE4 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, RuntimeObject * ___continuationObject0, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Void System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::.ctor() inline void Task_1__ctor_m4008D170A16EFA60DD6E4D059D75FAAC9D57AD85 (Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * __this, const RuntimeMethod* method) { (( void (*) (Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 *, const RuntimeMethod*))Task_1__ctor_m6DAC1732E56024E32076DEE1A3863F17635A8944_gshared)(__this, method); } // System.Int32 System.Threading.Interlocked::CompareExchange(System.Int32&,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03 (int32_t* ___location10, int32_t ___value1, int32_t ___comparand2, const RuntimeMethod* method); // System.Void System.Threading.Tasks.AsyncCausalityTracer::TraceOperationRelation(System.Threading.Tasks.CausalityTraceLevel,System.Int32,System.Threading.Tasks.CausalityRelation) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void AsyncCausalityTracer_TraceOperationRelation_mA7691DAE55DF8387322376648D9CCBB54EFFC490 (int32_t ___traceLevel0, int32_t ___taskId1, int32_t ___relation2, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>::TrySetResult(TResult) inline bool Task_1_TrySetResult_m8370C01E1E5614744D78DCC74E06F8FCAFDA11C8 (Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___result0, const RuntimeMethod* method) { return (( bool (*) (Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 *, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, const RuntimeMethod*))Task_1_TrySetResult_m4FE4E07EBB0BA224341A4946FE2C4A813BD8AF64_gshared)(__this, ___result0, method); } // System.Boolean System.Threading.Tasks.Task::get_IsDelegateInvoked() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_get_IsDelegateInvoked_m45C6B668A20D03726083A730EFC33873B10B5735 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::get_IsCanceled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_get_IsCanceled_m42A47FCA2C6F33308A08C92C8489E802448F6F42 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::get_CurrentStackGuard() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * Task_get_CurrentStackGuard_m74FB437E43F89B8BDCB272A7257024F586421F11 (const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.StackGuard::TryBeginInliningScope() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StackGuard_TryBeginInliningScope_mE32F6AC0F440280CD1E98D273645CD08AF844B33 (StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::FireTaskScheduledIfNeeded(System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Task_FireTaskScheduledIfNeeded_m6792459336CB25D967928EDA5249F2164991E447_inline (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___ts0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.StackGuard::EndInliningScope() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackGuard_EndInliningScope_mEC7A78B71CB01216F0A7B0462E319234F0F05C39 (StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * __this, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Debugger::get_IsAttached() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Debugger_get_IsAttached_mFCFAAB7A47FA4DEC80A3A68FE13C307C439E9013 (const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskScheduler::AddToActiveTaskSchedulers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskScheduler_AddToActiveTaskSchedulers_m7BFCDD58D6FCD18D27017C309E8D683D642A7F06 (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object>::.ctor() inline void ConditionalWeakTable_2__ctor_m532318C6B13DB33AB8E1A63999A30FBE81BE2FCC (ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * __this, const RuntimeMethod* method) { (( void (*) (ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C *, const RuntimeMethod*))ConditionalWeakTable_2__ctor_m1BF7C98CA314D99CE58778C0C661D5F1628B6563_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Threading.Tasks.TaskScheduler,System.Object>::Add(TKey,TValue) inline void ConditionalWeakTable_2_Add_m5066B6CF71B4388CE9668A469B274DA1F1CE8267 (ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * __this, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C *, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, RuntimeObject *, const RuntimeMethod*))ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_gshared)(__this, ___key0, ___value1, method); } // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.Task::get_CreationOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_get_CreationOptions_m1013CF6F9F645BFA03F13F89DFA749ADABA541C8 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Int32 System.Threading.Interlocked::Increment(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F (int32_t* ___location0, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Void System.EventHandler`1<System.Threading.Tasks.UnobservedTaskExceptionEventArgs>::Invoke(System.Object,TEventArgs) inline void EventHandler_1_Invoke_m5A2B682142BD5C458A2C93E0300172955DBBCEA6 (EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC * __this, RuntimeObject * ___sender0, UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 * ___e1, const RuntimeMethod* method) { (( void (*) (EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC *, RuntimeObject *, UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 *, const RuntimeMethod*))EventHandler_1_Invoke_mBF3979EE17B68658C4C1AB3A8D64B24F263E3B98_gshared)(__this, ___sender0, ___e1, method); } // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.Threading.Tasks.ThreadPoolTaskScheduler::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolTaskScheduler__ctor_mC0B9F37DBA25F766F01EE56C8460330C3708FF1D (ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.AwaitTaskContinuation::.ctor(System.Action,System.Boolean,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AwaitTaskContinuation__ctor_mBEDA16F5D33081AF421A009449B3A1D2B0A0121A (AwaitTaskContinuation_t883E8FB9C34A1024B54F2D4A9CCBA21CC595286F * __this, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___action0, bool ___flowExecutionContext1, int32_t* ___stackMark2, const RuntimeMethod* method); // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskScheduler::get_Default() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87_inline (const RuntimeMethod* method); // System.Void System.Threading.Tasks.AwaitTaskContinuation::Run(System.Threading.Tasks.Task,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AwaitTaskContinuation_Run_mFF38B07062EFB3E2CD42AAB929B2902BB1FFBBC2 (AwaitTaskContinuation_t883E8FB9C34A1024B54F2D4A9CCBA21CC595286F * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, bool ___canInlineContinuationTask1, const RuntimeMethod* method); // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskScheduler::get_InternalCurrent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * TaskScheduler_get_InternalCurrent_m792B2A13D81A8BD8A724321AFA4633B09FF1259C (const RuntimeMethod* method); // System.Threading.Thread System.Threading.Thread::get_CurrentThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E (const RuntimeMethod* method); // System.Boolean System.Threading.Thread::get_IsThreadPoolThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Thread_get_IsThreadPoolThread_m3CF4788DEF7D552D12D5E54E10CF1BD0F763ED55 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr) inline void Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510 (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_gshared)(__this, ___object0, ___method1, method); } // System.Threading.Tasks.Task System.Threading.Tasks.AwaitTaskContinuation::CreateTask(System.Action`1<System.Object>,System.Object,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * AwaitTaskContinuation_CreateTask_m0C24724576818E738998F3EB48C8DAE22EBA2889 (AwaitTaskContinuation_t883E8FB9C34A1024B54F2D4A9CCBA21CC595286F * __this, Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___action0, RuntimeObject * ___state1, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler2, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskContinuation::InlineIfPossibleOrElseQueue(System.Threading.Tasks.Task,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskContinuation_InlineIfPossibleOrElseQueue_m7CCFD190C3F783A343C1103BF27BFE4D19C66FEF (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, bool ___needsProtection1, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m7385A27A6BD7D377F64C862AEAC9F9D6DDE64CA8 (U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439 * __this, const RuntimeMethod* method); // System.Void System.Action::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_Invoke_mC8D676E5DDF967EC5D23DD0E96FB52AA499817FD (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * __this, const RuntimeMethod* method); // System.Void System.Threading.Tasks.AwaitTaskContinuation::ThrowAsyncIfNecessary(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AwaitTaskContinuation_ThrowAsyncIfNecessary_mD1B7B962FF8ED8EC2F105A42998347BDF99FED05 (Exception_t * ___exc0, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.Threading.Tasks.TaskScheduler::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskScheduler__ctor_mD337C4A20B49427C777B496030923E94CA7BC5EF (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, const RuntimeMethod* method); // System.Int32 System.Threading.Tasks.TaskScheduler::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskScheduler_get_Id_mF6A6B32C47D838C93694AAD06998F85B61F71DA7 (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Tasks.Task::ExecuteEntry(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_ExecuteEntry_mA04E6FA3370CA2AB19B6AB209E44E993B14621F1 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, bool ___bPreventDoubleExecution0, const RuntimeMethod* method); // System.Threading.Tasks.TaskCreationOptions System.Threading.Tasks.Task::get_Options() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Task_get_Options_mFCA12B2A5EFA9C47CD82DC7017B770F26B7C512A (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method); // System.Void System.Threading.Thread::.ctor(System.Threading.ParameterizedThreadStart) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread__ctor_m10768310462BE1A521AB4BB70F483741C993ADFD (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * ___start0, const RuntimeMethod* method); // System.Void System.Threading.Thread::set_IsBackground(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_set_IsBackground_mF62551A195DCB09D44E512F52916145E39362D39 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, bool ___value0, const RuntimeMethod* method); // System.Void System.Threading.Thread::Start(System.Object) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Thread_Start_m3D27E6E9735ED3B6BF2CD332B8D90E7E8CE21933 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, RuntimeObject * ___parameter0, const RuntimeMethod* method); // System.Void System.Threading.ThreadPool::UnsafeQueueCustomWorkItem(System.Threading.IThreadPoolWorkItem,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_UnsafeQueueCustomWorkItem_m6FAFD01CC75C06858788F29C2430A4CB85E13568 (RuntimeObject* ___workItem0, bool ___forceGlobal1, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPool::TryPopCustomWorkItem(System.Threading.IThreadPoolWorkItem) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPool_TryPopCustomWorkItem_mCECECEF31175E5AF82E059137F190C0088897A4A (RuntimeObject* ___workItem0, const RuntimeMethod* method); // System.Void System.Threading.ThreadPool::NotifyWorkItemProgress() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_NotifyWorkItemProgress_mD041D082A87EAE7A34E6AE21CB7AF8819422B40A (const RuntimeMethod* method); // System.Void System.Threading.ParameterizedThreadStart::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParameterizedThreadStart__ctor_m236F11FFFC55CB6AC611B16302E2F5F58C60346B (ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method); // System.Void System.Runtime.ConstrainedExecution.CriticalFinalizerObject::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CriticalFinalizerObject__ctor_m99FA3656B2AAC4F7E53A8BFE9E361E7C1F8867C5 (CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 * __this, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void System.Threading.Thread::SetStartHelper(System.Delegate,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SetStartHelper_mA0ABB42BEDC02848CDF5378338F32B71493E5DD4 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, Delegate_t * ___start0, int32_t ___maxStackSize1, const RuntimeMethod* method); // System.Void System.Threading.Thread::Start(System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Start_mFA3CA96DB8FDA3248DF49692ADE09BBD1B894830 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, int32_t* ___stackMark0, const RuntimeMethod* method); // System.Object System.Delegate::get_Target() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Delegate_get_Target_m5371341CE435E001E9FD407AE78F728824CE20E2_inline (Delegate_t * __this, const RuntimeMethod* method); // System.Threading.ExecutionContext System.Threading.ExecutionContext::Capture(System.Threading.StackCrawlMark&,System.Threading.ExecutionContext/CaptureOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ExecutionContext_Capture_m03E9840F580CC8E82725D5969D6132B0ABADD5F2 (int32_t* ___stackMark0, int32_t ___options1, const RuntimeMethod* method); // System.Void System.Threading.ThreadHelper::SetExecutionContextHelper(System.Threading.ExecutionContext) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ThreadHelper_SetExecutionContextHelper_m253F9206E5C01BE9A6BC3ED65106B5C2DB7240FF_inline (ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * __this, ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___ec0, const RuntimeMethod* method); // System.Void System.Threading.Thread::StartInternal(System.Security.Principal.IPrincipal,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_StartInternal_mA1F40AE1915B601089920427BCD391C814D624E0 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, RuntimeObject* ___principal0, int32_t* ___stackMark1, const RuntimeMethod* method); // System.Void System.Threading.ExecutionContext/Reader::.ctor(System.Threading.ExecutionContext) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Reader__ctor_mDB8E37FABE15D47E2E78E77EA6702D0FBAB8FC5E_inline (Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B * __this, ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___ec0, const RuntimeMethod* method); // System.Void System.Threading.ExecutionContext::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionContext__ctor_m60AAAF7CF4BF6DB4192982A1822C4379355DAC64 (ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Thread::get_ExecutionContextBelongsToCurrentScope() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Thread_get_ExecutionContextBelongsToCurrentScope_m0F37C83CC64B2AB00FC01FBC704D161DDE18766A (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.Threading.ExecutionContext System.Threading.ExecutionContext::CreateMutableCopy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ExecutionContext_CreateMutableCopy_mA3CD86A88C02101A1E6F33D0111FBE1DD926238F (ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * __this, const RuntimeMethod* method); // System.Void System.Threading.Thread::set_ExecutionContextBelongsToCurrentScope(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_set_ExecutionContextBelongsToCurrentScope_mD8B987510AE88BD907A27ACC54F4022A04FB30C2 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, bool ___value0, const RuntimeMethod* method); // System.Threading.ExecutionContext System.Threading.ExecutionContext/Reader::DangerousGetRawExecutionContext() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * Reader_DangerousGetRawExecutionContext_m0AAF58869F7AC7C33242B7C6A6ABFA2EF5100EBA_inline (Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B * __this, const RuntimeMethod* method); // System.Void System.Threading.Thread::SleepInternal(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SleepInternal_m69943350F67E5C693262A6278FB7A835AE1942CE (int32_t ___millisecondsTimeout0, const RuntimeMethod* method); // System.Boolean System.Threading.Thread::YieldInternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Thread_YieldInternal_mA0081B312A19ECA8D0A7E49DD9DF8AF5A0C7F851 (const RuntimeMethod* method); // System.Int32 System.Threading.Thread::GetProcessDefaultStackSize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_GetProcessDefaultStackSize_m876EFB49B410ED044DBFA47B7EE2D4F16D7731EC (int32_t ___maxStackSize0, const RuntimeMethod* method); // System.Void System.Threading.ThreadHelper::.ctor(System.Delegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadHelper__ctor_m8262A0EF0381251FDDFA4696B84F68AF3A01411B (ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * __this, Delegate_t * ___start0, const RuntimeMethod* method); // System.Void System.Threading.ThreadStart::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadStart__ctor_m692348FEAEBAF381D62984EE95B217CC024A77D5 (ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Threading.Thread::SetStart(System.MulticastDelegate,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SetStart_m22F9A89D5768A9EF04A85F3FA4E8090CE2667FFE (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, MulticastDelegate_t * ___start0, int32_t ___maxStackSize1, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Threading.Thread::GetCurrentUICultureNoAppX() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * Thread_GetCurrentUICultureNoAppX_m3443520354B118E074F79BF5D5BDBB5B6E31B5AB (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_DefaultThreadCurrentUICulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_DefaultThreadCurrentUICulture_mEB6BC8E5CB2D0BBBB6B7AD860E55683284CCAF3B (const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_UserDefaultUICulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_UserDefaultUICulture_m65D62A67F22DFB25EDD7E629AC3381824704DE40 (const RuntimeMethod* method); // System.Globalization.CultureInfo System.Threading.Thread::GetCurrentCultureNoAppX() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * Thread_GetCurrentCultureNoAppX_mCD2B90A28EFEFFDB4B5855B71ADF1337C6E36843 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_DefaultThreadCurrentCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_DefaultThreadCurrentCulture_mCC52FEEF31992F66C3A74D4566C1CB2C6D2CE581 (const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_UserDefaultCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_UserDefaultCulture_m1057FA0B6C68E6EE22B119A3FA7F6678151CEBEB (const RuntimeMethod* method); // System.Void System.Threading.Thread::ConstructInternalThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_ConstructInternalThread_mC11ABFE9172C63CDFD66A11AFB82B9EA2DE8FE33 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.Runtime.Remoting.Contexts.Context System.AppDomain::InternalGetContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * AppDomain_InternalGetContext_mAA54924C2DC3349E29D79D76403F803BD966031F (const RuntimeMethod* method); // System.Threading.Thread System.Threading.Thread::GetCurrentThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * Thread_GetCurrentThread_m7CFEF67B239579F733823B39EC3D56F77E96BC0E (const RuntimeMethod* method); // System.Void System.Runtime.ConstrainedExecution.CriticalFinalizerObject::Finalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CriticalFinalizerObject_Finalize_m36B07F0B4F395452E3EFB45EF4887C763388AFA7 (CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.Thread::get_IsThreadPoolThreadInternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Thread_get_IsThreadPoolThreadInternal_m909FDD574165BF8D5D02D414E2F55D44299F95AC (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.Threading.InternalThread System.Threading.Thread::get_Internal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.Threading.ThreadState System.Threading.Thread::ValidateThreadState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_ValidateThreadState_mEBF62A50922AE3BABE5C6603386D5370DEA385F3 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.Void System.Threading.Thread::SetState(System.Threading.InternalThread,System.Threading.ThreadState) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SetState_mF0035267AC3FECD199B63396E7B1097D4FC2C7C5 (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___thread0, int32_t ___set1, const RuntimeMethod* method); // System.Void System.Threading.Thread::ClrState(System.Threading.InternalThread,System.Threading.ThreadState) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_ClrState_m108E95E5905DB3F3301DF8FF8A04B956A5136F77 (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___thread0, int32_t ___clr1, const RuntimeMethod* method); // System.Void System.Threading.Thread::SetName_internal(System.Threading.InternalThread,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SetName_internal_mE41978DFBCB89086CBFF60F479FCF0A241500B31 (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___thread0, String_t* ___name1, const RuntimeMethod* method); // System.Threading.ThreadState System.Threading.Thread::GetState(System.Threading.InternalThread) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_GetState_m32A1BAF338D3CCCAE4CC2DD9F3E3CD68AF66C9F2 (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___thread0, const RuntimeMethod* method); // System.Void System.Threading.Thread::SpinWait_nop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SpinWait_nop_mDCFDC9E11E3D93EF2261C217649468A3F3A151D7 (const RuntimeMethod* method); // System.IntPtr System.Threading.Thread::Thread_internal(System.MulticastDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Thread_Thread_internal_m43DFA96F34ADF78F99F0F24267EC34A8E7A57849 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, MulticastDelegate_t * ___start0, const RuntimeMethod* method); // System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method); // System.Void System.SystemException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.Environment::GetPageSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_GetPageSize_m9DDEBE89C1AD0F93124F0DC120F4495B5A72515E (const RuntimeMethod* method); // System.Int32 System.Threading.Thread::SystemMaxStackStize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_SystemMaxStackStize_m2FD92A285AAEB56862E208375C03D537B13BA3EB (const RuntimeMethod* method); // System.Int32 System.Math::Min(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method); // System.Int32 System.Threading.Thread::get_ManagedThreadId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_get_ManagedThreadId_m7FA85162CB00713B94EF5708B19120F791D3AAD1 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.Void System.Threading.ThreadStateException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadStateException__ctor_m8269A7EE51BF315AD8C0A4B64C2B2319035BB767 (ThreadStateException_tCE60AB1B9E16A6D13E3926137BA55832ABE986AE * __this, String_t* ___message0, const RuntimeMethod* method); // System.String System.Exception::GetMessageFromNativeResources(System.Exception/ExceptionMessageKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_GetMessageFromNativeResources_m0C3FB5994F1AC0C76785E05972E3E405E8A0F087 (int32_t ___kind0, const RuntimeMethod* method); // System.Void System.Exception::SetErrorCode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7 (Exception_t * __this, int32_t ___hr0, const RuntimeMethod* method); // System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949 (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.Threading.ContextCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextCallback__ctor_m079F8FC3EE21C47D9FDD09FD90C14BDD34539493 (ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Threading.ThreadStart::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadStart_Invoke_m11B6A66E82F02C74399A7314C14C7F52393CC4B4 (ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * __this, const RuntimeMethod* method); // System.Void System.Threading.ParameterizedThreadStart::Invoke(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParameterizedThreadStart_Invoke_m5A5DFBAD0D99A39DF7ADA9F75D97B068A8809C14 (ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.Threading.ExecutionContext::Run(System.Threading.ExecutionContext,System.Threading.ContextCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionContext_Run_m97152E1791C019905F6297946D7411CA6683CCEB (ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___executionContext0, ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___callback1, RuntimeObject * ___state2, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.TimeSpan::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpan__ctor_m310F37AF5F9F91433A98062BF6E4A248AA6C3DE5 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int32_t ___days0, int32_t ___hours1, int32_t ___minutes2, int32_t ___seconds3, int32_t ___milliseconds4, const RuntimeMethod* method); // System.Void System.Threading.RegisteredWaitHandle::.ctor(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegisteredWaitHandle__ctor_m990C003E1FC4462F986D99BCE3A995F522203483 (RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 * __this, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ___waitObject0, WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * ___callback1, RuntimeObject * ___state2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___timeout3, bool ___executeOnlyOnce4, const RuntimeMethod* method); // System.Void System.Threading.WaitCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitCallback__ctor_m375A357FD7C64F4182FD88B8276D88FE5BE75B31 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPool::QueueUserWorkItem(System.Threading.WaitCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR bool ThreadPool_QueueUserWorkItem_mF344DA7B44CDBE8C7163C1539D429F27E8553185 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * ___callBack0, RuntimeObject * ___state1, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPool::UnsafeQueueUserWorkItem(System.Threading.WaitCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR bool ThreadPool_UnsafeQueueUserWorkItem_mA410427123962A9362AB7314149396196928ECC7 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * ___callBack0, RuntimeObject * ___state1, const RuntimeMethod* method); // System.Double System.TimeSpan::get_TotalMilliseconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalMilliseconds_m48B00B27D485CC556C10A5119BC11E1A1E0FE363 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Threading.RegisteredWaitHandle System.Threading.ThreadPool::RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean,System.Threading.StackCrawlMark&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 * ThreadPool_RegisterWaitForSingleObject_m0642BE341A35D9AB577E4611E254BCF7E5C35540 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ___waitObject0, WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * ___callBack1, RuntimeObject * ___state2, uint32_t ___millisecondsTimeOutInterval3, bool ___executeOnlyOnce4, int32_t* ___stackMark5, bool ___compressStack6, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPool::QueueUserWorkItemHelper(System.Threading.WaitCallback,System.Object,System.Threading.StackCrawlMark&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPool_QueueUserWorkItemHelper_mD11DD16BA8A1C6C90FC15FB3E47F2C62F19669AB (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * ___callBack0, RuntimeObject * ___state1, int32_t* ___stackMark2, bool ___compressStack3, const RuntimeMethod* method); // System.Void System.Threading.ThreadPool::EnsureVMInitialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_EnsureVMInitialized_mA21FAA8238E99EE2F8CDD7E638FEF5E11B5578D6 (const RuntimeMethod* method); // System.Void System.Threading.QueueUserWorkItemCallback::.ctor(System.Threading.WaitCallback,System.Object,System.Boolean,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueUserWorkItemCallback__ctor_mA8BAF438B3BC53CFA970E9728870D5B39A3B86A8 (QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8 * __this, WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * ___waitCallback0, RuntimeObject * ___stateObj1, bool ___compressStack2, int32_t* ___stackMark3, const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueue::Enqueue(System.Threading.IThreadPoolWorkItem,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueue_Enqueue_m0F5AAE9773892321562E794066DD4DBDF4DCA100 (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, RuntimeObject* ___callback0, bool ___forceGlobal1, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPoolWorkQueue::LocalFindAndPop(System.Threading.IThreadPoolWorkItem) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPoolWorkQueue_LocalFindAndPop_m9BE567E92E0DC532DFEE011D236A1159F63E6434 (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, RuntimeObject* ___callback0, const RuntimeMethod* method); // System.Void System.Threading.ThreadPool::InitializeVMTp(System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_InitializeVMTp_m75941381A968807C339207BE8DF497443200121A (bool* ___enableWorkerTracking0, const RuntimeMethod* method); // System.Void System.Threading.ThreadPool::NotifyWorkItemProgressNative() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_NotifyWorkItemProgressNative_mF559EE574FF07EF426C9B8342221616C78CB370B (const RuntimeMethod* method); // System.Int32 System.Environment::get_ProcessorCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_ProcessorCount_m086119F1D40B7319BFC37F4501C6A73517E9B8CD (const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPool::IsThreadPoolHosted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPool_IsThreadPoolHosted_m4C22092ED436EECC64E79C84EEC327B89D7A7D96 (const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueue::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueue__ctor_mDAE229D4F94CACC0E1FF97CBDC78F1034C0AF86D (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueue/QueueSegment::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueSegment__ctor_m7E0672E1810C3887A90DB32CCDE0FC80752495C9 (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueueThreadLocals::.ctor(System.Threading.ThreadPoolWorkQueue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueueThreadLocals__ctor_mD46EF22D8EE15E0585EAC6F9DBF3063D14526362 (ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * __this, ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * ___tpq0, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPool::RequestWorkerThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPool_RequestWorkerThread_m7C6D88D442BC1EB2C17B6070F0791C6FC4F8A947 (const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueue/WorkStealingQueue::LocalPush(System.Threading.IThreadPoolWorkItem) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkStealingQueue_LocalPush_mF4807971CDD7F6089AADF28173FEDDDFF4E96455 (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, RuntimeObject* ___obj0, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPoolWorkQueue/QueueSegment::TryEnqueue(System.Threading.IThreadPoolWorkItem) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueueSegment_TryEnqueue_m83AD5DB0A7D19576FC19EF28974EE515E61B8AA5 (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, RuntimeObject* ___node0, const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueue::EnsureThreadRequested() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueue_EnsureThreadRequested_mEF1AA9C6BEB164BB3CCC05D39D92FDF531B4C39E (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPoolWorkQueue/WorkStealingQueue::LocalFindAndPop(System.Threading.IThreadPoolWorkItem) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WorkStealingQueue_LocalFindAndPop_m837487AF74CF9C8104986911FC7E279101AE1DCC (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, RuntimeObject* ___obj0, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPoolWorkQueue/WorkStealingQueue::LocalPop(System.Threading.IThreadPoolWorkItem&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WorkStealingQueue_LocalPop_m99B519E8984D358D1816A9E01B7A9CD4607B42D0 (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, RuntimeObject** ___obj0, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPoolWorkQueue/QueueSegment::TryDequeue(System.Threading.IThreadPoolWorkItem&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueueSegment_TryDequeue_m4D5D4F85B81CACAD4B7961DC4EF1FD91A99611D2 (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, RuntimeObject** ___node0, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPoolWorkQueue/QueueSegment::IsUsedUp() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueueSegment_IsUsedUp_mE4EA87EE6185EAF7C5C6108B4E435CE1D4FB9F0C (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, const RuntimeMethod* method); // T[] System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::get_Current() inline WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9* SparseArray_1_get_Current_m3B12A0B7ED161127D23F62CC10EDCE7F8ED79051 (SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB * __this, const RuntimeMethod* method) { return (( WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9* (*) (SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB *, const RuntimeMethod*))SparseArray_1_get_Current_m6715E5ACB39FD5E197A696FF118069BAD185668D_gshared)(__this, method); } // System.Boolean System.Threading.ThreadPoolWorkQueue/WorkStealingQueue::TrySteal(System.Threading.IThreadPoolWorkItem&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WorkStealingQueue_TrySteal_mE129DB3DD6A80B3FAF1391366AABFDD488D7956E (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, RuntimeObject** ___obj0, bool* ___missedSteal1, const RuntimeMethod* method); // System.Int32 System.Environment::get_TickCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C (const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueue::MarkThreadRequestSatisfied() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueue_MarkThreadRequestSatisfied_m88FE3B0300E0D183244D54B7A7105141432C1955 (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, const RuntimeMethod* method); // System.Threading.ThreadPoolWorkQueueThreadLocals System.Threading.ThreadPoolWorkQueue::EnsureCurrentThreadHasQueue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * ThreadPoolWorkQueue_EnsureCurrentThreadHasQueue_m554E036E163A749F37BEBCE4F6020E145779758A (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueue::Dequeue(System.Threading.ThreadPoolWorkQueueThreadLocals,System.Threading.IThreadPoolWorkItem&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueue_Dequeue_mC9B6B85A78A962AC577C6474DBF53E2BCE238767 (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * ___tl0, RuntimeObject** ___callback1, bool* ___missedSteal2, const RuntimeMethod* method); // System.Void System.Threading.ThreadPool::ReportThreadStatus(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_ReportThreadStatus_m5497425AF41790F625F8A890141EC9570FA82EE8 (bool ___isWorking0, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPool::NotifyWorkItemComplete() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPool_NotifyWorkItemComplete_m66CC6F7A740C2925320EE3A1D901D9AA5D2B9A77 (const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::.ctor(System.Int32) inline void SparseArray_1__ctor_m0B0CCA1B07E8D3958BD83EFE5CBC7C40A0A9131A (SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB * __this, int32_t ___initialSize0, const RuntimeMethod* method) { (( void (*) (SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB *, int32_t, const RuntimeMethod*))SparseArray_1__ctor_m14F57DABEB0112D1C2DC00D1C734570C06C73DB5_gshared)(__this, ___initialSize0, method); } // System.Void System.Threading.ThreadPoolWorkQueue/QueueSegment::GetIndexes(System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueSegment_GetIndexes_mF55461594A0803BA4A598D15A161EF172EB65953 (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, int32_t* ___upper0, int32_t* ___lower1, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPoolWorkQueue/QueueSegment::CompareExchangeIndexes(System.Int32&,System.Int32,System.Int32&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueueSegment_CompareExchangeIndexes_m2F262328BC6CD50650808F35D906F986F702E299 (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, int32_t* ___prevUpper0, int32_t ___newUpper1, int32_t* ___prevLower2, int32_t ___newLower3, const RuntimeMethod* method); // System.Void System.Threading.SpinWait::SpinOnce() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinWait_SpinOnce_mFE80DED71DC333A3F5C6F98AE9B46AB63B854E87 (SpinWait_tE079CCE966DA5879ACBE28273573E447C0BA31B9 * __this, const RuntimeMethod* method); // System.Void System.Threading.SpinLock::Enter(System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinLock_Enter_mF3E9D6327B1767595E94264ABB9526C5CF3CFC3B (SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * __this, bool* ___lockTaken0, const RuntimeMethod* method); // System.Void System.Threading.SpinLock::Exit(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinLock_Exit_m85BC505E091C592BE7015391FAD05C5BDC8A1D66 (SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * __this, bool ___useMemoryBarrier0, const RuntimeMethod* method); // System.Int32 System.Threading.Interlocked::Exchange(System.Int32&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Exchange_mD5CC61AF0F002355912FAAF84F26BE93639B5FD5 (int32_t* ___location10, int32_t ___value1, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPoolWorkQueue/WorkStealingQueue::TrySteal(System.Threading.IThreadPoolWorkItem&,System.Boolean&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WorkStealingQueue_TrySteal_mB7C9393B530ABEE102EC1955B02A520D01A08E9C (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, RuntimeObject** ___obj0, bool* ___missedSteal1, int32_t ___millisecondsTimeout2, const RuntimeMethod* method); // System.Void System.Threading.SpinLock::TryEnter(System.Int32,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinLock_TryEnter_mC40B3AF891D55A2D0DC2AEC8F83926EBB4A28109 (SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * __this, int32_t ___millisecondsTimeout0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Void System.Threading.SpinLock::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinLock__ctor_m2BB2C4BB309BF3C6D004C3BABAE3C8484DA5B6A0 (SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * __this, bool ___enableThreadOwnerTracking0, const RuntimeMethod* method); // System.Void System.Random::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Random__ctor_mDD202982FB7CEDE3F31824E919AD2BFA6D66BA27 (Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F * __this, int32_t ___Seed0, const RuntimeMethod* method); // System.Void System.Threading.ThreadPoolWorkQueue/WorkStealingQueue::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkStealingQueue__ctor_m5A30B12A759E1174AB423856CECBF73B5A5FA91A (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, const RuntimeMethod* method); // System.Int32 System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::Add(T) inline int32_t SparseArray_1_Add_mE48A7F17E902019686E15A72766DD0AB4CE80971 (SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB * __this, WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * ___e0, const RuntimeMethod* method) { return (( int32_t (*) (SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB *, WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB *, const RuntimeMethod*))SparseArray_1_Add_mF691405F72340FFB24B2B053CD36CE49E6F93D7A_gshared)(__this, ___e0, method); } // System.Void System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Threading.ThreadPoolWorkQueue/WorkStealingQueue>::Remove(T) inline void SparseArray_1_Remove_mEBA9CD59097C8D0C153E48328C21554B81E68414 (SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB * __this, WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * ___e0, const RuntimeMethod* method) { (( void (*) (SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB *, WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB *, const RuntimeMethod*))SparseArray_1_Remove_m68197C62F8B904A1778445F94E694E9F18C90BD7_gshared)(__this, ___e0, method); } // System.Void System.Threading.ThreadPoolWorkQueueThreadLocals::CleanUp() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueueThreadLocals_CleanUp_m2557E74F088EB8EC68E1DAB43458EDAF62F30C04 (ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * __this, const RuntimeMethod* method); // System.UInt32 System.Threading.TimeoutHelper::GetTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TimeoutHelper_GetTime_m6AD4BA5DCA9E4102DC18395A59123E91EB915D98 (const RuntimeMethod* method); // System.Void System.MarshalByRefObject::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method); // System.Void System.Threading.Timer::Init(System.Threading.TimerCallback,System.Object,System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer_Init_mF69134A3E2C8A2B79BA925BCF687B3DCBBF4AB65 (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * ___callback0, RuntimeObject * ___state1, int64_t ___dueTime2, int64_t ___period3, const RuntimeMethod* method); // System.Boolean System.Threading.Timer::Change(System.Int64,System.Int64,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6 (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, int64_t ___dueTime0, int64_t ___period1, bool ___first2, const RuntimeMethod* method); // System.Void System.Threading.Timer/Scheduler::Remove(System.Threading.Timer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler_Remove_m5D87E925B0C6E4BFB7C68F6614C133ADA2628148 (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * ___timer0, const RuntimeMethod* method); // System.Void System.ObjectDisposedException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * __this, String_t* ___objectName0, String_t* ___message1, const RuntimeMethod* method); // System.Int64 System.Threading.Timer::GetTimeMonotonic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Timer_GetTimeMonotonic_m4B6169CEEE39504646E976FBF26B3EFBD609ABFA (const RuntimeMethod* method); // System.Void System.Threading.Timer/Scheduler::Change(System.Threading.Timer,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler_Change_m0B2CF9E01BA6732CE701861DFE5142200CD6654C (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * ___timer0, int64_t ___new_next_run1, const RuntimeMethod* method); // System.Threading.Timer/Scheduler System.Threading.Timer/Scheduler::get_Instance() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * Scheduler_get_Instance_mAD166DADAB60F24F15A36BD49F67172084AA9B4C_inline (const RuntimeMethod* method); // System.Void System.Threading.Timer/Scheduler::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler__ctor_mA11657BA808AF374E216FDAAA472E18F00B84FEB (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, const RuntimeMethod* method); // System.Void System.Threading.ManualResetEvent::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManualResetEvent__ctor_m8973D9E3C622B9602641C017A33870F51D0311E1 (ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * __this, bool ___initialState0, const RuntimeMethod* method); // System.Void System.Threading.Timer/TimerComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerComparer__ctor_m4286C1A800BFB3F6A065A9DB0122B7FC1A440F22 (TimerComparer_tC987818CFADF2F3ECEB89C0BD510600DAD816015 * __this, const RuntimeMethod* method); // System.Void System.Collections.SortedList::.ctor(System.Collections.IComparer,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList__ctor_mE69C668800C6AF9EE9C745E046E151352D424E79 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, RuntimeObject* ___comparer0, int32_t ___capacity1, const RuntimeMethod* method); // System.Void System.Threading.Thread::.ctor(System.Threading.ThreadStart) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread__ctor_m36A33B990160C4499E991D288341CA325AE66DDD (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * ___start0, const RuntimeMethod* method); // System.Void System.Threading.Thread::Start() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Thread_Start_mE2AC4744AFD147FDC84E8D9317B4E3AB890BC2D6 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method); // System.Int32 System.Threading.Timer/Scheduler::InternalRemove(System.Threading.Timer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Scheduler_InternalRemove_m7B12673F6C5012E19754EF3C2E9BD9438D5D23BD (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * ___timer0, const RuntimeMethod* method); // System.Void System.Threading.Timer/Scheduler::Add(System.Threading.Timer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler_Add_m669D8B05D43F207A8BE1AA1912154AB6F0E9EBEB (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * ___timer0, const RuntimeMethod* method); // System.Boolean System.Threading.EventWaitHandle::Set() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Set_m7959A86A39735296FC949EC86FDA42A6CFAAB94C (EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98 * __this, const RuntimeMethod* method); // System.Int32 System.Threading.Timer/Scheduler::FindByDueTime(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Scheduler_FindByDueTime_m2B255CEF6EC7B56CD41F4FD299E09CAAE062D5FB (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, int64_t ___nr0, const RuntimeMethod* method); // System.Void System.Threading.TimerCallback::Invoke(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerCallback_Invoke_m64E1279AA84FA0D01697CB6D7B3D8C01959B4A50 (TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * __this, RuntimeObject * ___state0, const RuntimeMethod* method); // System.Void System.Threading.Thread::set_Name(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_set_Name_mEBD0DF20D69C49612949EA6F24E8E4EADB7F5E77 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Threading.Timer>::.ctor(System.Int32) inline void List_1__ctor_m7C148B97DC87A9125BDE2F8876642459D8A30954 (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 *, int32_t, const RuntimeMethod*))List_1__ctor_mEE468B81D8E7C140F567D10FF7F5894A50EEEA57_gshared)(__this, ___capacity0, method); } // System.Boolean System.Threading.EventWaitHandle::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Reset_m59EBCEA32BC9C67B4E432BEA5FF0A42ED0CC8A6F (EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Threading.Timer>::Add(T) inline void List_1_Add_mB5A8963C62BC566BF95512C93EA0B5ED6D04B8E9 (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * __this, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 *, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // System.Int32 System.Collections.Generic.List`1<System.Threading.Timer>::get_Count() inline int32_t List_1_get_Count_m102A5956CA038B4503A23CBAE433114532EC22E7_inline (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method); } // T System.Collections.Generic.List`1<System.Threading.Timer>::get_Item(System.Int32) inline Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * List_1_get_Item_m6C76B0438807DFB527E73E6166D012198028ACBE_inline (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * (*) (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method); } // System.Void System.Collections.Generic.List`1<System.Threading.Timer>::Clear() inline void List_1_Clear_mACBCDAD884AD8F4AB0A67F8E8626D5FD0C8C6A79 (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 *, const RuntimeMethod*))List_1_Clear_mC5CFC6C9F3007FC24FE020198265D4B5B0659FFC_gshared)(__this, method); } // System.Void System.Threading.Timer/Scheduler::ShrinkIfNeeded(System.Collections.Generic.List`1<System.Threading.Timer>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler_ShrinkIfNeeded_m1DDE9B9B4FECA8D16C922391413085ABCB2B60E4 (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * ___list0, int32_t ___initial1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Threading.Timer>::get_Capacity() inline int32_t List_1_get_Capacity_m4E6CC6EB68ACB4009E66AE14C2969F02B644FAE7 (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 *, const RuntimeMethod*))List_1_get_Capacity_mB976106DA11B4155CBC654A4FEAF355280834D8B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.Threading.Timer>::set_Capacity(System.Int32) inline void List_1_set_Capacity_m0DA623E0A9843F83E643A5E032D775F990F3863E (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * __this, int32_t ___value0, const RuntimeMethod* method) { (( void (*) (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 *, int32_t, const RuntimeMethod*))List_1_set_Capacity_m5E67DE1CEC89ADB8A82937E2D0CB48A78F962FA3_gshared)(__this, ___value0, method); } // System.Void System.Runtime.InteropServices.SafeHandle::DangerousAddRef(System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandle_DangerousAddRef_m38ABCE4B3DF7CEA3B6C79996C22E1D532E10F085 (SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * __this, bool* ___success0, const RuntimeMethod* method); // System.Void System.Threading.WaitHandle::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle_Init_m63320FFB796EB59BF6217787185DD0B9BCE7C6FD (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, const RuntimeMethod* method); // System.Void System.Runtime.InteropServices.SafeHandle::SetHandleAsInvalid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandle_SetHandleAsInvalid_mAFA4A01F6FB566AB67312B96E5024088BDF255F6 (SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * __this, const RuntimeMethod* method); // System.Void Microsoft.Win32.SafeHandles.SafeWaitHandle::.ctor(System.IntPtr,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeWaitHandle__ctor_m7A02720A5A03917CCA8DD68406A124C4AB76191A (SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * __this, intptr_t ___existingHandle0, bool ___ownsHandle1, const RuntimeMethod* method); // System.IntPtr System.Runtime.InteropServices.SafeHandle::DangerousGetHandle() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR intptr_t SafeHandle_DangerousGetHandle_m9014DC4C279F2EF9F9331915135F0AF5AF8A4368_inline (SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.WaitHandle::WaitOne(System.Int64,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WaitHandle_WaitOne_m6283DC18BCD374B579549B156DD30AAA74E64C89 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, int64_t ___timeout0, bool ___exitContext1, const RuntimeMethod* method); // System.Boolean System.Threading.WaitHandle::InternalWaitOne(System.Runtime.InteropServices.SafeHandle,System.Int64,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WaitHandle_InternalWaitOne_m14CF12240D30C25A6C34683080C5A0D982786303 (SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * ___waitableSafeHandle0, int64_t ___millisecondsTimeout1, bool ___hasThreadAffinity2, bool ___exitContext3, const RuntimeMethod* method); // System.Int32 System.Threading.WaitHandle::WaitOneNative(System.Runtime.InteropServices.SafeHandle,System.UInt32,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WaitHandle_WaitOneNative_mC25327F2B99DBB404B62FD48CFCBDB3244F82434 (SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * ___waitableSafeHandle0, uint32_t ___millisecondsTimeout1, bool ___hasThreadAffinity2, bool ___exitContext3, const RuntimeMethod* method); // System.Void System.Threading.WaitHandle::ThrowAbandonedMutexException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle_ThrowAbandonedMutexException_m4AFC4FEDCA7C3EF6E1C04D4176ABA49CC728224C (const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.Threading.WaitHandle::WaitMultiple(System.Threading.WaitHandle[],System.Int32,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WaitHandle_WaitMultiple_mAE04CACC2ADB312E42B0DF0E09EAB1744B50441E (WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* ___waitHandles0, int32_t ___millisecondsTimeout1, bool ___exitContext2, bool ___WaitAll3, const RuntimeMethod* method); // System.Void System.Threading.WaitHandle::ThrowAbandonedMutexException(System.Int32,System.Threading.WaitHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle_ThrowAbandonedMutexException_m69BB8B9A409789BDFA844B2A06303CCB3FD3A69C (int32_t ___location0, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ___handle1, const RuntimeMethod* method); // System.Void System.GC::KeepAlive(System.Object) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void GC_KeepAlive_mE836EDA45A7C6BFDCEA004B9089FA6B4810BDA89 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 System.Threading.WaitHandle::WaitAny(System.Threading.WaitHandle[],System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WaitHandle_WaitAny_m1CA2DEBC40AB9BAF7ADDC0921B2AC332FA44AB1E (WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* ___waitHandles0, int32_t ___millisecondsTimeout1, bool ___exitContext2, const RuntimeMethod* method); // System.Void System.Threading.AbandonedMutexException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AbandonedMutexException__ctor_mD789CDEE6F2EFECA949F0205C4AA37F140476E05 (AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9 * __this, const RuntimeMethod* method); // System.Void System.Threading.AbandonedMutexException::.ctor(System.Int32,System.Threading.WaitHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AbandonedMutexException__ctor_m5D2377FCE41D4EA1068C207B0105C7322D521666 (AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9 * __this, int32_t ___location0, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ___handle1, const RuntimeMethod* method); // System.Void System.Runtime.InteropServices.SafeHandle::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandle_Close_m284B185A04D5FB0A23F55B333737B7DF2CBE1F80 (SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * __this, const RuntimeMethod* method); // Microsoft.Win32.SafeHandles.SafeWaitHandle System.Threading.WaitHandle::get_SafeWaitHandle() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * WaitHandle_get_SafeWaitHandle_m9BA6EA0D8DBD059147DE77EE1E36181EEB5A8AB1 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, const RuntimeMethod* method); // System.Int32 System.Threading.WaitHandle::Wait_internal(System.IntPtr*,System.Int32,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WaitHandle_Wait_internal_m8941E096BE6A528D936BCE4B4D931753FCB0F483 (intptr_t* ___handles0, int32_t ___numHandles1, bool ___waitAll2, int32_t ___ms3, const RuntimeMethod* method); // System.Void System.Runtime.InteropServices.SafeHandle::DangerousRelease() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SafeHandle_DangerousRelease_m3D5C78EBCD583C58AE715F7A8AC1BD3BA976CF01 (SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * __this, const RuntimeMethod* method); // System.IntPtr System.IntPtr::op_Explicit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91 (int32_t ___value0, const RuntimeMethod* method); // System.Void System.ApplicationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_mDC26CE8ECD0DDA5C8FA50C8E8B2614F3B50FC308 (ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.ApplicationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_mFF30CCDE8B078E0ED2E206EEB39611840367607A (ApplicationException_t664823C3E0D3E1E7C7FA1C0DB4E19E98E9811C74 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPoolWorkQueue::Dispatch() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPoolWorkQueue_Dispatch_mCDF7415E4C9D02B34761CAE8EA15CD33DDF85ADF (const RuntimeMethod* method); // System.Exception System.ThrowHelper::CreateArgumentNullException(System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR Exception_t * ThrowHelper_CreateArgumentNullException_m73D3C5638F0A69939498020AA3AE650DAA0178FD (int32_t ___argument0, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument,System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51 (int32_t ___argument0, int32_t ___resource1, const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method); // System.String System.ThrowHelper::GetResourceName(System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ThrowHelper_GetResourceName_m13FDAE58B6F545972524C1B952F26628A50ED48E (int32_t ___resource0, const RuntimeMethod* method); // System.String System.ThrowHelper::GetArgumentName(System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ThrowHelper_GetArgumentName_m557024344066246E63A04D0B1A2DB0F6C6781D2C (int32_t ___argument0, const RuntimeMethod* method); // System.Void System.TimeSpan::.ctor(System.Int64) IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int64_t ___ticks0, const RuntimeMethod* method); // System.Int64 System.TimeSpan::TimeToTicks(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeSpan_TimeToTicks_m30D961C24084E95EA9FE0565B87FCFFE24DD3632 (int32_t ___hour0, int32_t ___minute1, int32_t ___second2, const RuntimeMethod* method); // System.Void System.TimeSpan::.ctor(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int32_t ___hours0, int32_t ___minutes1, int32_t ___seconds2, const RuntimeMethod* method); // System.Int64 System.TimeSpan::get_Ticks() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Int32 System.TimeSpan::get_Hours() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Hours_mE248B39F7E3E07DAD257713114E86A1A2C191A45 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Int32 System.TimeSpan::get_Minutes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Minutes_mCABF9EE7E7F78368DA0F825F5922C06238DD0F22 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Double System.TimeSpan::get_TotalHours() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalHours_mE5E189FF852CBC3046D1B584D2DC6B541D0BD327 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Double System.TimeSpan::get_TotalMinutes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalMinutes_m41B6248DF2E4E6CAFC4A1B3C7ECCD9A10CC16C22 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Double System.TimeSpan::get_TotalSeconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalSeconds_m0F8F314166E6D1F9D36F32EB1272451EDE56B4EA (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Void System.OverflowException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731 (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * __this, String_t* ___message0, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::Add(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Add_mC4C54D4AF8C34EF36288176B85FF2F488A7C5507 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___ts0, const RuntimeMethod* method); // System.Int32 System.TimeSpan::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_CompareTo_mF5675C9DD2AA6D97C68CFAAE340B54EC4485564B (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Int32 System.TimeSpan::CompareTo(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_CompareTo_mCC797C9F7FF3BC0D7C8401666BDE7DCE676449E3 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::Interval(System.Double,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732 (double ___value0, int32_t ___scale1, const RuntimeMethod* method); // System.Boolean System.TimeSpan::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_Equals_m7CD315197413EB59DDBCF923AD564E0021E91A70 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Boolean System.TimeSpan::Equals(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_Equals_m03A10C4E2E28E5E56B4342AC0B9C68EC677C67F4 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___obj0, const RuntimeMethod* method); // System.Int32 System.TimeSpan::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_GetHashCode_m4FD4BD6B179EDD97650F594B0E671EC8FB1E535F (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.Boolean System.Double::IsNaN(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3 (double ___d0, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::Negate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::Subtract(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Subtract_m9A5CA898BD0D57AE22E8E19548B8D635961A71C0 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___ts0, const RuntimeMethod* method); // System.String System.Globalization.TimeSpanFormat::Format(System.TimeSpan,System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeSpanFormat_Format_mDFAF627CECBD00A1DDB27D3D812974B3A2875B8F (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, String_t* ___format1, RuntimeObject* ___formatProvider2, const RuntimeMethod* method); // System.String System.TimeSpan::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeSpan_ToString_m3D31EDB779332CA887A4CB9BD1CA781C59B79EA8 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method); // System.String System.TimeSpan::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeSpan_ToString_m8931E09D0B73F3CF436C70E02D74E14F5479B9BF (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, String_t* ___format0, const RuntimeMethod* method); // System.Boolean System.TimeSpan::get_LegacyMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_get_LegacyMode_mB9C63B017249E99A978D2977C6172848EFBA30F8 (const RuntimeMethod* method); // System.String System.TimeSpan::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeSpan_ToString_m9486CD30DB9A51A6AA51C2672FCB1DFEF074FC9F (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, String_t* ___format0, RuntimeObject* ___formatProvider1, const RuntimeMethod* method); // System.Boolean System.TimeSpan::GetLegacyFormatMode() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool TimeSpan_GetLegacyFormatMode_m058C62B8FEB05BBD84A5437AEDF60DAF2444EBB8_inline (const RuntimeMethod* method); // System.String System.Boolean::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301 (bool* __this, const RuntimeMethod* method); // System.String System.String::Concat(System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07 (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::.ctor() inline void List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708 (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * __this, const RuntimeMethod* method) { (( void (*) (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Boolean System.CurrentSystemTimeZone::GetTimeZoneData(System.Int32,System.Int64[]&,System.String[]&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CurrentSystemTimeZone_GetTimeZoneData_m24EC5AA1CB7F2E2809CE4C2EE66FDB062C2EAFCF (int32_t ___year0, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** ___data1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** ___names2, bool* ___daylight_inverted3, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int64_t ___ticks0, const RuntimeMethod* method); // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Boolean System.DateTime::Equals(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_Equals_m5D0978D469FA7B13308608D7DA97E1AF6265AD42 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, int32_t ___millisecond6, const RuntimeMethod* method); // System.Int32 System.DateTime::DaysInMonth(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_DaysInMonth_mE979D12858E0D6CC14576D283B5AB66AA53B9F90 (int32_t ___year0, int32_t ___month1, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method); // System.TimeSpan System.DateTime::get_TimeOfDay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.DateTime System.DateTime::Add(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_Add_mA4F1A47C77858AC06AF07CCE9BDFF32F442B27DB (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Month() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::get_Day() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/TransitionTime::CreateFixedDateRule(System.DateTime,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___timeOfDay0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method); // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo/AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * AdjustmentRule_CreateAdjustmentRule_m02250B76565B1F45DA0F87EA2630579828049935 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateStart0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateEnd1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___daylightDelta2, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionStart3, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionEnd4, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::Add(T) inline void List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608 (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * __this, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // System.Int32 System.DateTime::get_Year() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.DateTime System.DateTime::AddDays(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddDays_mB11D2BB2D7DD6944D1071809574A951258F94D8E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, double ___value0, const RuntimeMethod* method); // System.DateTime System.DateTime::get_UtcNow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1 (const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::FromTicks(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_FromTicks_mDF1F429F18294D57DE2739DBD2F33637E4E5F8F4 (int64_t ___value0, const RuntimeMethod* method); // System.Boolean System.TimeSpan::op_GreaterThanOrEqual(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThanOrEqual_m7FE9830EF2AAD2BB65628A0FE7F7C70161BB4D9B (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method); // System.String System.Char::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8 (Il2CppChar* __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method); // System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule> System.TimeZoneInfo::CreateAdjustmentRule(System.Int32,System.Int64[]&,System.String[]&,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * TimeZoneInfo_CreateAdjustmentRule_m91309BB1DD028055DF1162AF2C32E3B49B205217 (int32_t ___year0, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** ___data1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** ___names2, String_t* ___standardNameCurrentYear3, String_t* ___daylightNameCurrentYear4, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::get_Count() inline int32_t List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_inline (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::AddRange(System.Collections.Generic.IEnumerable`1<T>) inline void List_1_AddRange_m6A63D4FE58AC9BB75CFFAC71A9F238D5D2FA6B86 (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m629B40CD4286736C328FA496AAFC388F697CF984_gshared)(__this, ___collection0, method); } // System.Void System.Comparison`1<System.TimeZoneInfo/AdjustmentRule>::.ctor(System.Object,System.IntPtr) inline void Comparison_1__ctor_mE0538E25387B755D53C0B704CB16ED1F23AD18E0 (Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Comparison_1__ctor_m3445CDEBFFF4A3A9EAED69CBCC2D247630CA5BD4_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::Sort(System.Comparison`1<T>) inline void List_1_Sort_m3B256FB508DAF70D63EBA562343E275EC0308919 (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * __this, Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 * ___comparison0, const RuntimeMethod* method) { (( void (*) (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *, Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 *, const RuntimeMethod*))List_1_Sort_mA3939603201EC0E13489EDA5975A07790CEDB483_gshared)(__this, ___comparison0, method); } // T[] System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::ToArray() inline AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* List_1_ToArray_m803235EC510CCE1CF53E7D6FB952A83E01154DE1 (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * __this, const RuntimeMethod* method) { return (( AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* (*) (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *, const RuntimeMethod*))List_1_ToArray_m801D4DEF3587F60F463F04EEABE5CBE711FE5612_gshared)(__this, method); } // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo/AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_CreateCustomTimeZone_m11D4C4650268C21964BDAEBE2DF66EF03FA0D44A (String_t* ___id0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, String_t* ___daylightDisplayName4, AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ___adjustmentRules5, bool ___disableDaylightSavingTime6, const RuntimeMethod* method); // System.DateTime System.DateTime::AddMilliseconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddMilliseconds_mD93AB4338708397D6030FF082EBB3FC8C3E195F2 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, double ___value0, const RuntimeMethod* method); // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo/AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * AdjustmentRule_CreateAdjustmentRule_mB15A8247120D71B44A45115C4ABD819A6DFCFD67 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateStart0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateEnd1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___daylightDelta2, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionStart3, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionEnd4, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffsetDelta5, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::TransitionTimeFromTimeZoneInformation(System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION,System.TimeZoneInfo/TransitionTime&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TransitionTimeFromTimeZoneInformation_mB2907D018D3F74650B0214133DA2632953A52575 (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F ___timeZoneInformation0, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * ___transitionTime1, bool ___readStartDate2, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo/TransitionTime::Equals(System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___other0, const RuntimeMethod* method); // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/TransitionTime::CreateFloatingDateRule(System.DateTime,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 TransitionTime_CreateFloatingDateRule_mF22316F8D071F0D8AAE9981156D6CD87637A327E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___dayOfWeek3, const RuntimeMethod* method); // System.Boolean System.String::IsNullOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* ___value0, const RuntimeMethod* method); // System.UInt32 System.TimeZoneInfo::GetDynamicTimeZoneInformationEffectiveYears(System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION&,System.UInt32&,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TimeZoneInfo_GetDynamicTimeZoneInformationEffectiveYears_mD84BD6607A090CF1D7A8C82DE00770D2CAFDFC14 (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___lpTimeZoneInformation0, uint32_t* ___FirstYear1, uint32_t* ___LastYear2, const RuntimeMethod* method); // System.DateTime System.DateTime::get_Date() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_Date_m9466964BC55564ED7EEC022AB9E50D875707B774 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::CreateAdjustmentRuleFromTimeZoneInformation(System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION&,System.DateTime,System.DateTime,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation_m2F69E15F97EACDA6A80A979A0C225BBB24B02F49 (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___timeZoneInformation0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___startDate1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___endDate2, int32_t ___defaultBaseUtcOffset3, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::GetTimeZoneInformationForYear(System.UInt16,System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION&,System.TimeZoneInfo/TIME_ZONE_INFORMATION&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetTimeZoneInformationForYear_m7E665C3816CE3BF020B6813B81C8FF892B0D9DC3 (uint16_t ___wYear0, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___pdtzi1, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * ___ptzi2, const RuntimeMethod* method); // System.Void System.TimeZoneInfo::.ctor(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo/AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, String_t* ___id0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, String_t* ___daylightDisplayName4, AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ___adjustmentRules5, bool ___disableDaylightSavingTime6, const RuntimeMethod* method); // System.UInt32 System.TimeZoneInfo::GetDynamicTimeZoneInformation(System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TimeZoneInfo_GetDynamicTimeZoneInformation_m98112C4EC3EC3C78A62FD422F73DC66309DA08F0 (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___pTimeZoneInformation0, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::get_Utc() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE (const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::TryCreateTimeZone(System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_TryCreateTimeZone_m61B74EA70226BCF8AAD99419AD574B6459E1E3B4 (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F ___timeZoneInformation0, const RuntimeMethod* method); // System.UInt32 System.TimeZoneInfo::GetDynamicTimeZoneInformationWin32(System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TimeZoneInfo_GetDynamicTimeZoneInformationWin32_mD44C73EC6EF2106606DB096D99DE652AC2351A4A (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___pTimeZoneInformation0, const RuntimeMethod* method); // System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo> System.TimeZoneInfo::GetSystemTimeZones() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * TimeZoneInfo_GetSystemTimeZones_mEA58988461DB651BAAEFE60B72EBCC2403FCDC3A (const RuntimeMethod* method); // System.Collections.Generic.IEnumerator`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo>::GetEnumerator() inline RuntimeObject* ReadOnlyCollection_1_GetEnumerator_m99D19158C39B54528C9227F6F986B66D499C0B42 (ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * __this, const RuntimeMethod* method) { return (( RuntimeObject* (*) (ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 *, const RuntimeMethod*))ReadOnlyCollection_1_GetEnumerator_m0C8A9A1DBCB1FEFD1FF6A4E807D329949B925A76_gshared)(__this, method); } // System.String System.TimeZoneInfo::get_Id() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_Id_mE52B846A9B3701B6BFFC99AD5F486584044304C6_inline (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method); // System.Int32 System.String::Compare(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442 (String_t* ___strA0, String_t* ___strB1, int32_t ___comparisonType2, const RuntimeMethod* method); // System.Void System.TimeZoneNotFoundException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneNotFoundException__ctor_m13C5CB453D2842823AA85B9B4E422C42D659FA19 (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.TimeZoneInfo>::.ctor() inline void List_1__ctor_m8EA0E94A31BE27A0D2CF4FA7BDDC767E5D2ADC23 (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * __this, const RuntimeMethod* method) { (( void (*) (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.TimeZoneInfo>::Add(T) inline void List_1_Add_m3C00FE8E3C5994C50C32F29BEE73E95FC93432F5 (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * __this, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD *, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method); } // System.UInt32 System.TimeZoneInfo::EnumDynamicTimeZoneInformation(System.UInt32,System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TimeZoneInfo_EnumDynamicTimeZoneInformation_mA9B80840DB7EFA7A20521562B5D00BEA0545D3D3 (uint32_t ___dwIndex0, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___lpTimeZoneInformation1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.TimeZoneInfo>::get_Count() inline int32_t List_1_get_Count_mEAB0A1E6130424B195D6DBFD71FAB35A51BA5337_inline (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method); } // System.TimeZoneInfo System.TimeZoneInfo::get_Local() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD (const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::CreateLocal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_CreateLocal_m15C54141FB316F34FA44CA5B96CC02E2CB2F0638 (const RuntimeMethod* method); // System.Int32 System.TimeZoneInfo::readlink(System.String,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_readlink_m42B2B8CB1D4B7CCFE6FBBD7ABD10314EAE094F55 (String_t* ___path0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer1, int32_t ___buflen2, const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_Default_m625C78C2A9A8504B8BA4141994412513DC470CE2 (const RuntimeMethod* method); // System.String System.String::CreateString(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method); // System.Boolean System.IO.File::Exists(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB (String_t* ___path0, const RuntimeMethod* method); // System.String System.TimeZoneInfo::readlink(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_readlink_m36675E5C86E478A8F522061E1AE5DD3F441F1413 (String_t* ___path0, const RuntimeMethod* method); // System.Boolean System.IO.Path::IsPathRooted(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Path_IsPathRooted_mF70DAF863202638692CF75CCFA09ACBBD90C9A53 (String_t* ___path0, const RuntimeMethod* method); // System.String System.IO.Path::GetDirectoryName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetDirectoryName_m61922AA6D7B48EACBA36FF41A1B28F506CFB8A97 (String_t* ___path0, const RuntimeMethod* method); // System.String System.IO.Path::Combine(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311 (String_t* ___path10, String_t* ___path21, const RuntimeMethod* method); // System.String System.IO.Path::GetFullPath(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetFullPath_m58677E6FFAFB7BB4A23011CE50F76487226EDE20 (String_t* ___path0, const RuntimeMethod* method); // System.String System.TimeZoneInfo::get_TimeZoneDirectory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_TimeZoneDirectory_m364906451AD0C6AF1BE27A57739BB888AD144414 (const RuntimeMethod* method); // System.Int32 System.String::get_Length() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Boolean System.String::StartsWith(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::get_IsWindows() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_get_IsWindows_mD360DB90A5AFD0D6CE4E89EBAB7F40D5CEF25706 (const RuntimeMethod* method); // Microsoft.Win32.RegistryKey System.TimeZoneInfo::get_LocalZoneKey() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * TimeZoneInfo_get_LocalZoneKey_mB5065905D83948EB70306D6BCABA0857FE0BF65C (const RuntimeMethod* method); // System.Object Microsoft.Win32.RegistryKey::GetValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RegistryKey_GetValue_mC95227C5F159D15D0A59EE72A31840CE3C6DB381 (RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * __this, String_t* ___name0, const RuntimeMethod* method); // System.String System.TimeZoneInfo::TrimSpecial(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TrimSpecial_m8904FED0584050DFA61E0BD573BDDF2D2E24DD64 (String_t* ___str0, const RuntimeMethod* method); // System.String System.TimeZoneInfo::GetLocalTimeZoneKeyNameWin32Fallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetLocalTimeZoneKeyNameWin32Fallback_m135325753C0EB2FFA39439FCAFF86BC41D8DC1A3 (const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::FindSystemTimeZoneById(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_FindSystemTimeZoneById_m1213ADAB49255703C816325E6F215AE0E7E9F8DD (String_t* ___id0, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::GetLocalTimeZoneInfoWinRTFallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_GetLocalTimeZoneInfoWinRTFallback_mAC4FAB77907E048A003EDB46ACA0A2B3665AAC15 (const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::CreateLocalUnity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_CreateLocalUnity_mD72D1DBB52C82E4AC72C1B697F1F37C935C755EA (const RuntimeMethod* method); // System.String System.Environment::GetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185 (String_t* ___variable0, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::FindSystemTimeZoneByFileName(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_FindSystemTimeZoneByFileName_m8AA63273DF4EAB14398DCD1E7B84FCADF6F84E7D (String_t* ___id0, String_t* ___filepath1, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::TryGetNameFromPath(System.String,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryGetNameFromPath_m030B7AF03FD88B0FCAF5374F33D9E2B22ECCFD42 (String_t* ___path0, String_t** ___name1, const RuntimeMethod* method); // Microsoft.Win32.RegistryKey System.TimeZoneInfo::get_TimeZoneKey() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * TimeZoneInfo_get_TimeZoneKey_m82B63E987CBDF47D6637B89F5A09F5509F5C7529 (const RuntimeMethod* method); // System.String[] Microsoft.Win32.RegistryKey::GetSubKeyNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* RegistryKey_GetSubKeyNames_m117A40457A2C3473D9D9E8CD9916D23DC8B4532F (RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * __this, const RuntimeMethod* method); // Microsoft.Win32.RegistryKey Microsoft.Win32.RegistryKey::OpenSubKey(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * RegistryKey_OpenSubKey_m7BAA592BA6639DE0CBAC3D300C5A28DCA05190F2 (RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Collections.Generic.List`1<System.TimeZoneInfo> System.TimeZoneInfo::GetSystemTimeZonesWinRTFallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * TimeZoneInfo_GetSystemTimeZonesWinRTFallback_m6A927CC8A8AC235866DC2399C990A32C6BF846D0 (const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.TimeZoneInfo>::AddRange(System.Collections.Generic.IEnumerable`1<T>) inline void List_1_AddRange_m3D1C9DA1E2012F97E0097903E50DED0F25776C57 (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD *, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m629B40CD4286736C328FA496AAFC388F697CF984_gshared)(__this, ___collection0, method); } // System.String[] System.IO.Directory::GetFiles(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* Directory_GetFiles_mFC09A86D660CAD8490DB44B25A8D8E981816048E (String_t* ___path0, const RuntimeMethod* method); // System.String System.IO.Path::GetFileName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E (String_t* ___path0, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_CreateCustomTimeZone_mDFF720C53476F656C276D9E4067367669ED433D5 (String_t* ___id0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, const RuntimeMethod* method); // System.OperatingSystem System.Environment::get_OSVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * Environment_get_OSVersion_mD6E99E279170E00D17F7D29F242EF65434812233 (const RuntimeMethod* method); // System.PlatformID System.OperatingSystem::get_Platform() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t OperatingSystem_get_Platform_m36635DD0A3D5442E515AB8D2EA3C7092348A5181_inline (OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * __this, const RuntimeMethod* method); // System.Boolean System.Char::IsLetterOrDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetterOrDigit_mD7307B3157DFA4EC20D58F68ACB6A9793D3A8292 (Il2CppChar ___c0, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // Microsoft.Win32.RegistryKey Microsoft.Win32.RegistryKey::OpenSubKey(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * RegistryKey_OpenSubKey_mFB72687C9F3CB562E0DD9DC07331211E964C6F9E (RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * __this, String_t* ___name0, bool ___writable1, const RuntimeMethod* method); // System.Int64 System.DateTime::get_Ticks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.DateTime System.DateTime::SpecifyKind(System.DateTime,System.DateTimeKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, int32_t ___kind1, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int64_t ___ticks0, int32_t ___kind1, const RuntimeMethod* method); // System.DateTimeKind System.DateTime::get_Kind() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::IsInvalidTime(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsInvalidTime_m986910976B42BA4BA0687D048ADABAA997B6C235 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, const RuntimeMethod* method); // System.DateTime System.TimeZoneInfo::ConvertTimeToUtc(System.DateTime,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTimeToUtc_m84C132EC36ADACD6B6598F4F98219060D047C003 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___sourceTimeZone1, const RuntimeMethod* method); // System.DateTime System.TimeZoneInfo::ConvertTimeFromUtc(System.DateTime,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTimeFromUtc_m471600E7A17C69471FAB60868046709A90FEC03D (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___destinationTimeZone1, const RuntimeMethod* method); // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetUtcOffset_mB87444CE19A766D8190FCA7508AE192E66E9436D (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::TryAddTicks(System.DateTime,System.Int64,System.DateTime&,System.DateTimeKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___date0, int64_t ___ticks1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * ___result2, int32_t ___kind3, const RuntimeMethod* method); // System.DateTime System.TimeZoneInfo::ConvertTimeFromUtc(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTimeFromUtc_m59079E8F2663E2A1A96089CCB397E2FC9A00C422 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, const RuntimeMethod* method); // System.DateTime System.TimeZoneInfo::ConvertTimeToUtc(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTimeToUtc_m6A0B236FDC04E0431DDCB946218961E6218269F4 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___sourceTimeZone1, int32_t ___flags2, const RuntimeMethod* method); // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetUtcOffset_m3472449E929542E987D335203A81C84E148674AB (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, bool* ___isDST1, const RuntimeMethod* method); // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetUtcOffsetFromUtc_mAA79026F581A893DD65B95D5660E146520B471FA (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___time0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___zone1, bool* ___isDaylightSavings2, bool* ___isAmbiguousLocalDst3, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::Equals(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_Equals_mDEDC356830CD3F65D13E71768B2701CB13EA0741 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___other0, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::HasSameRules(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_HasSameRules_m1C002CA4B76F10229AD7C5B30F53F66C7C53720A (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___other0, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::FromRegistryKey(System.String,Microsoft.Win32.RegistryKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_FromRegistryKey_mE18CC429EF151EDD5D9B1AAF8C9A28DD048114FA (String_t* ___id0, RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___key1, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::FindSystemTimeZoneByIdWinRTFallback(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_FindSystemTimeZoneByIdWinRTFallback_m97E8D7110492D9A43A425DA0A06FCCCE3F8ED483 (String_t* ___id0, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::FindSystemTimeZoneByIdCore(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_FindSystemTimeZoneByIdCore_m62ECDFA5D89CE3B68C56D1B72B2CF5FB709DF322 (String_t* ___id0, const RuntimeMethod* method); // System.IO.FileStream System.IO.File::OpenRead(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * File_OpenRead_m3B2974AB5AA8011E587AC834BE71862BF77C2129 (String_t* ___path0, const RuntimeMethod* method); // System.Void System.TimeZoneNotFoundException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneNotFoundException__ctor_m38A84B100985F5907DE77F71A3B98CD3BF1D9CD3 (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::BuildFromStream(System.String,System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_BuildFromStream_m03149B20E6AA12F61EFA3B7745D3DC05DBC65418 (String_t* ___id0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, const RuntimeMethod* method); // System.Void System.IO.Stream::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_Dispose_m186A8E680F2528DEDFF8F0069CC33BD813FFB1C7 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, const RuntimeMethod* method); // System.Void System.InvalidTimeZoneException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m565DFEFCEFD9DB3E307E643A059B9AC57B2B57DD (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * __this, const RuntimeMethod* method); // System.Int32 System.BitConverter::ToInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method); // System.String System.Int32::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02 (int32_t* __this, const RuntimeMethod* method); // System.Void System.TimeZoneInfo::ParseRegTzi(System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>,System.Int32,System.Int32,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_ParseRegTzi_m55C1F9CA43A650277423AE74BF2787446C1D906F (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * ___adjustmentRules0, int32_t ___start_year1, int32_t ___end_year2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer3, const RuntimeMethod* method); // System.TimeZoneInfo/AdjustmentRule[] System.TimeZoneInfo::ValidateRules(System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* TimeZoneInfo_ValidateRules_mB2C193EB81FF713EED1541D27D08BAD59B29E311 (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * ___adjustmentRules0, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo/AdjustmentRule[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_CreateCustomTimeZone_m5927EE8D4214E3F8317098CFB563D431E93C3E48 (String_t* ___id0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, String_t* ___daylightDisplayName4, AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ___adjustmentRules5, const RuntimeMethod* method); // System.Int16 System.BitConverter::ToInt16(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method); // System.Object System.Array::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176 (RuntimeArray * __this, const RuntimeMethod* method); // System.TimeZoneInfo/AdjustmentRule[] System.TimeZoneInfo::GetAdjustmentRules() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* TimeZoneInfo_GetAdjustmentRules_m5ECAA03E2351067B577D5E4EAE036014FCE291DE (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::get_SupportsDaylightSavingTime() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool TimeZoneInfo_get_SupportsDaylightSavingTime_m101C22CB276BB45E9C38F54BF6F944C8C5578C9E_inline (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m1229CE68F507974EBA0DA9C7C728A09E611D18B1 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, bool ___value1, const RuntimeMethod* method); // System.Void System.TimeZoneInfo::GetSystemTimeZonesCore(System.Collections.Generic.List`1<System.TimeZoneInfo>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_GetSystemTimeZonesCore_m9D3D231ABFB243A5720D61CA7FF524E6E6D77808 (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * ___systemTimeZones0, const RuntimeMethod* method); // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo>::.ctor(System.Collections.Generic.IList`1<T>) inline void ReadOnlyCollection_1__ctor_m2669B26D5BD4E1D7DA650B32D5C8C5D4C6F82FE4 (ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * __this, RuntimeObject* ___list0, const RuntimeMethod* method) { (( void (*) (ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 *, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m8F7880F43C4E281DBF7CA5A9431D5E6DD3797B7E_gshared)(__this, ___list0, method); } // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetHelper(System.DateTime,System.TimeZoneInfo,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetUtcOffsetHelper_mEF2AA10E4E24DF9A330DA6BBE230783050E9BA1A (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___tz1, bool* ___isDST2, const RuntimeMethod* method); // System.TimeSpan System.TimeZoneInfo::get_BaseUtcOffset() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method); // System.Void System.Exception::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1 (Exception_t * __this, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::TryGetTransitionOffset(System.DateTime,System.TimeSpan&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryGetTransitionOffset_mE81815E31B2FD48D83635AE3FAADF622DDE6B5D6 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___offset1, bool* ___isDst2, const RuntimeMethod* method); // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetApplicableRule(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * TimeZoneInfo_GetApplicableRule_m960A90264F1FBB60734074D71036FCA304B5F73A (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::IsInDST(System.TimeZoneInfo/AdjustmentRule,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsInDST_m353072CFE30139C66F490E254314847B1C55A61C (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * ___rule0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime1, const RuntimeMethod* method); // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::get_DaylightDelta() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::op_Addition(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_op_Addition_m2C916EE6F60BA72329886F1568FE9DD0D8DF0DB7 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method); // System.Boolean System.TimeSpan::op_Inequality(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo/AdjustmentRule::Equals(System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_Equals_mE58526212854504DB5575E2396F3C97F4F0EEA95 (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * ___other0, const RuntimeMethod* method); // System.DateTime System.TimeZoneInfo::ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTime_mC953F67CC3D9457C7595DBB652418754C2B58FDE (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___sourceTimeZone1, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___destinationTimeZone2, const RuntimeMethod* method); // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::get_DaylightTransitionEnd() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 AdjustmentRule_get_DaylightTransitionEnd_m8EE35970D90C7857BEAE165190F5B9ADC8C57860_inline (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method); // System.DateTime System.TimeZoneInfo::TransitionPoint(System.TimeZoneInfo/TransitionTime,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_TransitionPoint_m5FA051A8EC41B739B1A36720800679E69BF2CFF2 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___transition0, int32_t ___year1, const RuntimeMethod* method); // System.DateTime System.DateTime::op_Subtraction(System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t1, const RuntimeMethod* method); // System.Boolean System.DateTime::op_GreaterThan(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t21, const RuntimeMethod* method); // System.Boolean System.DateTime::op_LessThanOrEqual(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThanOrEqual_m7131235B927010BD9DB3C93FEB51640286D1107B (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t21, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::IsInDSTForYear(System.TimeZoneInfo/AdjustmentRule,System.DateTime,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsInDSTForYear_m5F2B6A89397E4CBE9071FB2982CDA45E6230276E (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * ___rule0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime1, int32_t ___year2, const RuntimeMethod* method); // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::get_DaylightTransitionStart() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 AdjustmentRule_get_DaylightTransitionStart_mC89A599FADA4747E5686154DCBD067EEFBB919F6_inline (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method); // System.Int32 System.TimeZoneInfo/TransitionTime::get_Month() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Month_m06FE288B24621979C4FE9E34D350EBA208CEA267_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method); // System.Boolean System.DateTime::op_GreaterThanOrEqual(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThanOrEqual_mEDD57FC8B24FAF4D6AA94CFE6AE190CF359B66B4 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t21, const RuntimeMethod* method); // System.Boolean System.DateTime::op_LessThan(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThan_m75DE4F8CC5F5EE392829A9B37C5C98B7FC97061A (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t21, const RuntimeMethod* method); // System.DateTime System.DateTime::op_Addition(System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t1, const RuntimeMethod* method); // System.Void System.TimeZoneInfo::Validate(System.String,System.TimeSpan,System.TimeZoneInfo/AdjustmentRule[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702 (String_t* ___id0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset1, AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ___adjustmentRules2, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_mCCC70F63CC8A3BC77B50CFA582D9DB1256846921 (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Boolean System.TimeSpan::op_GreaterThan(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThan_mC4CE0AD3057035058479B695ACDC089F3A6EA486 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method); // System.Boolean System.TimeSpan::op_LessThan(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_LessThan_mF92FF63DD1E52540977D3B1753D43895F7B0A117 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method); // System.Void System.InvalidTimeZoneException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14 (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * __this, String_t* ___message0, const RuntimeMethod* method); // System.DateTime System.TimeZoneInfo/AdjustmentRule::get_DateStart() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method); // System.DateTime System.TimeZoneInfo/AdjustmentRule::get_DateEnd() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 AdjustmentRule_get_DateEnd_m9ECD9D96BFB535E8818CC79B0B261F8E334A722E_inline (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method); // System.Boolean System.DateTime::op_Equality(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_Equality_m5715465D90806F5305BBA5F690377819C55AF084 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d21, const RuntimeMethod* method); // System.String System.TimeZoneInfo::get_DisplayName() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_DisplayName_m583E6E48EAA12F6D87191F71AAE821481F8B006A_inline (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method); // System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method); // System.DateTime System.DateTime::ToUniversalTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_ToUniversalTime_mA8B74D947E186568C55D9C6F56D59F9A3C7775B1 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo/TransitionTime::get_IsFixedDateRule() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool TransitionTime_get_IsFixedDateRule_mC55143797D34E320F86E4B58A265654C634EB38C_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method); // System.Int32 System.TimeZoneInfo/TransitionTime::get_Day() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Day_m82E3998C57838AB654EEB696600CF6C0F9EB52B0_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method); // System.DateTime System.TimeZoneInfo/TransitionTime::get_TimeOfDay() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TransitionTime_get_TimeOfDay_mC4F5083CF75296341B498E873B2C026A95C4ADDE_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method); // System.DayOfWeek System.DateTime::get_DayOfWeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_DayOfWeek_m556E45050ECDB336B3559BC395081B0C5CBE4891 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Int32 System.TimeZoneInfo/TransitionTime::get_Week() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Week_m7708A01103CEADEA75626953931221A1E5CA2F82_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method); // System.DayOfWeek System.TimeZoneInfo/TransitionTime::get_DayOfWeek() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TransitionTime_get_DayOfWeek_m349EE703AD506935676F78DE8438D8C3D5E8C472_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1<System.TimeZoneInfo/AdjustmentRule>::Remove(T) inline bool List_1_Remove_mF3B9CA9E20C7542FAAD6C966B548492F2C7CD5DD (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * __this, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * ___item0, const RuntimeMethod* method) { return (( bool (*) (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *, const RuntimeMethod*))List_1_Remove_m908B647BB9F807676DACE34E3E73475C3C3751D4_gshared)(__this, ___item0, method); } // System.Boolean System.TimeZoneInfo::ValidTZFile(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_ValidTZFile_mDBAA295AA83624116C0BA67C78FDD8521866A8ED (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___length1, const RuntimeMethod* method); // System.TimeZoneInfo System.TimeZoneInfo::ParseTZBuffer(System.String,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_ParseTZBuffer_mB31B17720432692878EC43379CCF629C51F0AC96 (String_t* ___id0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer1, int32_t ___length2, const RuntimeMethod* method); // System.Void System.InvalidTimeZoneException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m45B9443C467C8D8353DBB6F6E7A6E4E7F96CF591 (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Int32 System.TimeZoneInfo::SwapInt32(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_SwapInt32_mA8FE2D4B2E2BF9CD763D600F8CE449DA34AE0BFE (int32_t ___i0, const RuntimeMethod* method); // System.Int32 System.TimeZoneInfo::ReadBigEndianInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___start1, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2<System.Int32,System.String> System.TimeZoneInfo::ParseAbbreviations(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * TimeZoneInfo_ParseAbbreviations_mF9E2B864DA8DDDA370DD9D43D5A7E3D8B7FBA76A (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType> System.TimeZoneInfo::ParseTimesTypes(System.Byte[],System.Int32,System.Int32,System.Collections.Generic.Dictionary`2<System.Int32,System.String>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * TimeZoneInfo_ParseTimesTypes_mDE8026755AF2207FFD76312DB22A472EE850BBA6 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___index1, int32_t ___count2, Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * ___abbreviations3, const RuntimeMethod* method); // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>> System.TimeZoneInfo::ParseTransitions(System.Byte[],System.Int32,System.Int32,System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * TimeZoneInfo_ParseTransitions_mDF9E7750AF2BFA9992708A02AE9429EFC4CF00FE (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___index1, int32_t ___count2, Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * ___time_types3, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::get_Count() inline int32_t Dictionary_2_get_Count_mE31B0BF70F2E5AA680638E8565B00286E26C5548 (Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 *, const RuntimeMethod*))Dictionary_2_get_Count_m69345D9DEE55AA0CE574D19CB7C430AC638C01A9_gshared)(__this, method); } // TValue System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::get_Item(TKey) inline TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * Dictionary_2_get_Item_m0F0789D0F81BD4D8EAFB77487B94A9CEBD730F83 (Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * __this, int32_t ___key0, const RuntimeMethod* method) { return (( TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * (*) (Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 *, int32_t, const RuntimeMethod*))Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_gshared)(__this, ___key0, method); } // T System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::get_Item(System.Int32) inline KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D List_1_get_Item_m8A44B7C37BB53CF3C22046AE0A17B58B0925A7A1_inline (List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D (*) (List_1_tD2FC74CFEE011F74F31183756A690154468817E9 *, int32_t, const RuntimeMethod*))List_1_get_Item_mA3E868C42E65CB3DC3966732D238AF05D6338EF7_gshared_inline)(__this, ___index0, method); } // TKey System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>::get_Key() inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 KeyValuePair_2_get_Key_m86B2C62B2D71E058541AD44447FFE99B23E906AE_inline (KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D * __this, const RuntimeMethod* method) { return (( DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 (*) (KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D *, const RuntimeMethod*))KeyValuePair_2_get_Key_m15F31F68F9D7F399DEBCC2328913654D36E79C1E_gshared_inline)(__this, method); } // TValue System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>::get_Value() inline TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * KeyValuePair_2_get_Value_m53E2812960EF279EE483985E7F647EA7958B61C5_inline (KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D * __this, const RuntimeMethod* method) { return (( TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * (*) (KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D *, const RuntimeMethod*))KeyValuePair_2_get_Value_m5AF581973CD6FDFDA5540F0A0AAD90D97CC45D5D_gshared_inline)(__this, method); } // System.DateTime System.DateTime::AddYears(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddYears_m4D66AFB61758D852CEEFE29D103C88106C6847A2 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo/TransitionTime::op_Inequality(System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_op_Inequality_m8E95819760E1035F55168B42B474A0F401BDEA58 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___t10, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___t21, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::op_Subtraction(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_op_Subtraction_m5978CE5FCEB3D59AF0BC52AF838BFE3237AE8B23 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::FromMinutes(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_FromMinutes_m3038BAC5BAB62262567D7BB3AE6DD845FC985BC2 (double ___value0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::get_Count() inline int32_t List_1_get_Count_m8D9BFB4AA79DACCB93AA6EF7021A01BA086F8B0F_inline (List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tD2FC74CFEE011F74F31183756A690154468817E9 *, const RuntimeMethod*))List_1_get_Count_mB556AE5EB3416A032123DE8D7E96B5FFD8CC8242_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::.ctor() inline void Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, const RuntimeMethod*))Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::Add(TKey,TValue) inline void Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, int32_t ___key0, String_t* ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, int32_t, String_t*, const RuntimeMethod*))Dictionary_2_Add_mF7AEA0EFA07EEBC1A4B283A26A7CB720EE7A4C20_gshared)(__this, ___key0, ___value1, method); } // System.Int32 System.Text.StringBuilder::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07 (StringBuilder_t * __this, const RuntimeMethod* method); // System.String System.Text.StringBuilder::ToString(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6 (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::.ctor(System.Int32) inline void Dictionary_2__ctor_m2D8C7B37F04BBE07E0D052A019C914E9AE6815D8 (Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 *, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m6015B3C75A1DAB939EB443D59748227888900331_gshared)(__this, ___capacity0, method); } // TValue System.Collections.Generic.Dictionary`2<System.Int32,System.String>::get_Item(TKey) inline String_t* Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906 (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, int32_t ___key0, const RuntimeMethod* method) { return (( String_t* (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, int32_t, const RuntimeMethod*))Dictionary_2_get_Item_mEFECE2769017AB70A9B1E7F5F8BBA59375620B54_gshared)(__this, ___key0, method); } // System.Void System.TimeType::.ctor(System.Int32,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeType__ctor_m28FA06EC6A851C81414A6435BE25D1FD494FFE03 (TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * __this, int32_t ___offset0, bool ___is_dst1, String_t* ___abbrev2, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>::Add(TKey,TValue) inline void Dictionary_2_Add_m1CF588B67718D0CF03E628AEB7A822E58F1F5517 (Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * __this, int32_t ___key0, TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 *, int32_t, TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 *, const RuntimeMethod*))Dictionary_2_Add_mF7AEA0EFA07EEBC1A4B283A26A7CB720EE7A4C20_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::.ctor(System.Int32) inline void List_1__ctor_mC454D22A181DBFE033123BA60EB7503279A2E624 (List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (List_1_tD2FC74CFEE011F74F31183756A690154468817E9 *, int32_t, const RuntimeMethod*))List_1__ctor_mE0334FEEB0DA08C563C9A3EBC9841C917C6E8E2E_gshared)(__this, ___capacity0, method); } // System.DateTime System.TimeZoneInfo::DateTimeFromUnixTime(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_DateTimeFromUnixTime_m2EB7BE33769CB44A09ED1C1389AB3E8AF707A83D (int64_t ___unix_time0, const RuntimeMethod* method); // System.Void System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>::.ctor(TKey,TValue) inline void KeyValuePair_2__ctor_m69CD5926C1F3E83585430B234312999946C55C53 (KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___key0, TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * ___value1, const RuntimeMethod* method) { (( void (*) (KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D *, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 , TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 *, const RuntimeMethod*))KeyValuePair_2__ctor_mDE04093EC61BE2A8488E791E66598DE871AA96AF_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>::Add(T) inline void List_1_Add_m76DF40E97717AE8F7F5CD0D1965BB34D12BE0C75 (List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * __this, KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tD2FC74CFEE011F74F31183756A690154468817E9 *, KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D , const RuntimeMethod*))List_1_Add_mA7FDE3694EEBB4C98536E78A885B8ADBDD00CE1D_gshared)(__this, ___item0, method); } // System.DateTime System.DateTime::AddSeconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_AddSeconds_m36DC8835432569A70AC5120359527350DD65D6B2 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, double ___value0, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::IsAmbiguousTime(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsAmbiguousTime_m1C47E17D025683A2FAFB4BBB8F22E8143E5462EC (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, const RuntimeMethod* method); // System.Void System.TimeZoneInfo/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mF312CF80BF0926136E607941EB06550D35DD1BAA (U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7 * __this, const RuntimeMethod* method); // System.Int32 System.DateTime::CompareTo(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_mB538B6524ED249F1A5ED43E00D61F7D9EB3DAD6E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value0, const RuntimeMethod* method); // System.Boolean System.TimeSpan::op_Equality(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Equality_mEA0A4B7FDCAFA54C636292F7EB76F9A16C44096D (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method); // System.Int32 System.DateTime::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_GetHashCode_mCA2FDAC81B0779FA2E478E6C6D92D019CD4B50C0 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method); // System.Void System.TimeZoneInfo/AdjustmentRule::ValidateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateStart0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateEnd1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___daylightDelta2, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionStart3, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionEnd4, const RuntimeMethod* method); // System.Void System.TimeZoneInfo/AdjustmentRule::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule__ctor_m9183A1D0F247640FF9288818795D556B50583AE0 (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo::UtcOffsetOutOfRange(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_UtcOffsetOutOfRange_m90D343BE5ACC4FA2B82B2801550A1D44C72F3E6C (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___offset0, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mC9361E987D8E88A4151406B45438F112BB397770 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___value1, const RuntimeMethod* method); // System.Object System.Runtime.Serialization.SerializationInfo::GetValueNoThrow(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValueNoThrow_m096541B70283B3F278C63DF8D6D1BE8C51C2C7DF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method); // System.Boolean System.TimeZoneInfo/TransitionTime::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_mB551A5FE7A3347F0090F98E80401CC9204C3D191 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 System.TimeZoneInfo/TransitionTime::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_GetHashCode_m8B1F9BB867B601808A812B0AD557142FF5C1A72A (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method); // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/TransitionTime::CreateTransitionTime(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 TransitionTime_CreateTransitionTime_m1D2ABFF0D3FC6E91E34535F6B4C72C9BCC8986FF (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___day3, int32_t ___dayOfWeek4, bool ___isFixedDateRule5, const RuntimeMethod* method); // System.Void System.TimeZoneInfo/TransitionTime::ValidateTransitionTime(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___day3, int32_t ___dayOfWeek4, const RuntimeMethod* method); // System.Void System.TimeZoneInfo/TransitionTime::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m6FD2B88D2632C765F64AD7DA885D92B919264460 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m4877E7BAFE436B280EE47F9C67F62307908413FA (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, uint8_t ___value1, const RuntimeMethod* method); // System.Void System.TimeZoneInfo/TransitionTime::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m174E35C46E6E212DF7B09D81BD53CFE60BD0B693 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Void System.TimeZoneInfo/TransitionTime::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime__ctor_mAA204123C15C0744095BE8681CA125E366AB1659 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_m45A9FAE45051A42186BE7E768E8482DFC17730E1 (int32_t ___h10, int32_t ___h21, const RuntimeMethod* method); // System.Void System.Reflection.MemberInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberInfo__ctor_m2F662BD5B63738672688109B4BCC552C143B1BCC (MemberInfo_t * __this, const RuntimeMethod* method); // System.Type System.TypeNameParser::GetType(System.String,System.Func`2<System.Reflection.AssemblyName,System.Reflection.Assembly>,System.Func`4<System.Reflection.Assembly,System.String,System.Boolean,System.Type>,System.Boolean,System.Boolean,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * TypeNameParser_GetType_m8359CD1600F889CE251C669179BB982D1A2F7013 (String_t* ___typeName0, Func_2_t13827C9725E0D12567E029E178981FB7D0E13430 * ___assemblyResolver1, Func_4_t3D7857A2A0F731D1E992FC5B09E983A8621FABFF * ___typeResolver2, bool ___throwOnError3, bool ___ignoreCase4, int32_t* ___stackMark5, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method); // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.TypeCode System.Type::GetTypeCode(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F (Type_t * ___type0, const RuntimeMethod* method); // System.Void System.Type::CreateBinder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type_CreateBinder_mD7D0BA5DDBCC08A4F9D3A0DA5FE6697BAA29D9E6 (const RuntimeMethod* method); // System.Void System.DefaultBinder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultBinder__ctor_mB89227403F48F787F92A2CB44164430E037D6306 (DefaultBinder_tFFCBC1B63C1667920094F68AB261486C13814AEC * __this, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void System.RuntimeTypeHandle::.ctor(System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeTypeHandle__ctor_mDBF6EF9232CD4D628B9F35842A4865492B540230 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * __this, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___type0, const RuntimeMethod* method); // System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07 (Type_t * __this, int32_t ___bindingAttr0, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types2, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___modifiers3, const RuntimeMethod* method); // System.Boolean System.Reflection.TypeFilter::Invoke(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeFilter_Invoke_m8DAF4C773D296ADEDA08CE83544DF9A06EB98C1C (TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * __this, Type_t * ___m0, RuntimeObject * ___filterCriteria1, const RuntimeMethod* method); // System.Boolean System.Type::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8 (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.RuntimeType::op_Inequality(System.RuntimeType,System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeType_op_Inequality_mA98A719712593FEE5DCCFDB47CCABDB58BEE1B0D (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___left0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___right1, const RuntimeMethod* method); // System.Boolean System.RuntimeTypeHandle::IsInterface(System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeTypeHandle_IsInterface_mA5732C8F02DFDAFA2975448C93D1DF34978D3FFF (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___type0, const RuntimeMethod* method); // System.Boolean System.RuntimeType::IsSpecialSerializableType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeType_IsSpecialSerializableType_m531BB860EC93F0248F0D013EC176FE337E94A72E (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_HasElementType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_HasElementType_m598BEFE66F168CE1D1132C87D394B2EF41F449BF (Type_t * __this, const RuntimeMethod* method); // System.Type System.Type::GetRootElementType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetRootElementType_mE4F0579E18FAAEEB2DB86F1315BFBEC1A9A2FD56 (Type_t * __this, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, const RuntimeMethod* method); // System.Void System.Type::GetEnumData(System.String[]&,System.Array&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type_GetEnumData_m2425B25E15F7A56D7ED172AC5E4FF0AF87BC9883 (Type_t * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** ___enumNames0, RuntimeArray ** ___enumValues1, const RuntimeMethod* method); // System.Int32 System.Array::IndexOf<System.Object>(T[],T) inline int32_t Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370 (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method) { return (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, const RuntimeMethod*))Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_gshared)(___array0, ___value1, method); } // System.Boolean System.Type::IsIntegerType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_IsIntegerType_m19478B79237AE0C92BE81AEEAD7D9DD36DFC0B27 (Type_t * ___t0, const RuntimeMethod* method); // System.Array System.Type::GetEnumRawConstantValues() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Type_GetEnumRawConstantValues_m665064C1BD51087A300A882E46B4992AD3F7BBD2 (Type_t * __this, const RuntimeMethod* method); // System.Int32 System.Type::BinarySearch(System.Array,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_BinarySearch_mFD3B61C83B2C32CE682561A76530C0F5F3E0484B (RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Int32 System.Array::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method); // System.Object System.Array::GetValue(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method); // System.UInt64 System.Enum::ToUInt64(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5 (RuntimeObject * ___value0, const RuntimeMethod* method); // System.Int32 System.Array::BinarySearch<System.UInt64>(T[],T) inline int32_t Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mDC37BFA945C8ED7FB8700727168D2F68CCFCE4A3 (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, uint64_t ___value1, const RuntimeMethod* method) { return (( int32_t (*) (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*, uint64_t, const RuntimeMethod*))Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mDC37BFA945C8ED7FB8700727168D2F68CCFCE4A3_gshared)(___array0, ___value1, method); } // System.Boolean System.Type::get_IsInterface() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.Type::ImplementInterface(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_ImplementInterface_m1920FA37BBC76E5FBB993950C7D760C33B778BD8 (Type_t * __this, Type_t * ___ifaceType0, const RuntimeMethod* method); // System.Void System.NotImplementedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4 (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * __this, const RuntimeMethod* method); // System.Int32 System.Reflection.MemberInfo::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MemberInfo_GetHashCode_mE9E59E8B23F151FD6EE2CB98B8F5138AF3B79761 (MemberInfo_t * __this, const RuntimeMethod* method); // System.Type System.Type::GetType(System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_m77EF3A5A858B45C53D8BF27C74FA00CA83B53E59 (String_t* ___typeName0, bool ___throwOnError1, bool ___ignoreCase2); // System.Void System.TypeLoadException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581 (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Type System.Type::internal_from_name(System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_internal_from_name_m9A232EAB9A51C1A64026F8E0772B2682D8663EDC (String_t* ___name0, bool ___throwOnError1, bool ___ignoreCase2, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.IntPtr System.RuntimeTypeHandle::get_Value() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR intptr_t RuntimeTypeHandle_get_Value_m3277019DD9C1A7E5D22F075DDF8CBDFA4D146BC6_inline (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * __this, const RuntimeMethod* method); // System.Type System.Type::internal_from_handle(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_internal_from_handle_mB8566342149CB843D5D9BA29773A2F13701DAD6B (intptr_t ___handle0, const RuntimeMethod* method); // System.Void System.Reflection.MemberFilter::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemberFilter__ctor_m6E469D6D66E850D3C8C0492FBAE858D81DA66CA0 (MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550 (const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task_<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mD421A18D7B3D53CD889B2E9FB6B14A042E480477 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__cctor_mD421A18D7B3D53CD889B2E9FB6B14A042E480477_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 * L_0 = (U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 *)il2cpp_codegen_object_new(U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3_il2cpp_TypeInfo_var); U3CU3Ec__ctor_m5074370076D060EDD4DE2D93ABCD6E80B6AA2574(L_0, /*hidden argument*/NULL); ((U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void System.Threading.Tasks.Task_<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m5074370076D060EDD4DE2D93ABCD6E80B6AA2574 (U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task_<>c::<Delay>b__276_0(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CDelayU3Eb__276_0_m5AB12E46C061368D100FF6C69F9D056E65A6AE2C (U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 * __this, RuntimeObject * ___state0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec_U3CDelayU3Eb__276_0_m5AB12E46C061368D100FF6C69F9D056E65A6AE2C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___state0; NullCheck(((DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2 *)CastclassSealed((RuntimeObject*)L_0, DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2_il2cpp_TypeInfo_var))); DelayPromise_Complete_m0CE65AE222FFF596F849ACDF12710DA631C673AD(((DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2 *)CastclassSealed((RuntimeObject*)L_0, DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task_<>c::<Delay>b__276_1(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CDelayU3Eb__276_1_m54F939B4DD3A17936C0D754419E2A01555DB8D6A (U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 * __this, RuntimeObject * ___state0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec_U3CDelayU3Eb__276_1_m54F939B4DD3A17936C0D754419E2A01555DB8D6A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___state0; NullCheck(((DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2 *)CastclassSealed((RuntimeObject*)L_0, DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2_il2cpp_TypeInfo_var))); DelayPromise_Complete_m0CE65AE222FFF596F849ACDF12710DA631C673AD(((DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2 *)CastclassSealed((RuntimeObject*)L_0, DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return; } } // System.Threading.Tasks.Task_ContingentProperties System.Threading.Tasks.Task_<>c::<.cctor>b__295_0() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * U3CU3Ec_U3C_cctorU3Eb__295_0_mDCF5EBEFFB333327107E40BF44507418FE7BBFDD (U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec_U3C_cctorU3Eb__295_0_mDCF5EBEFFB333327107E40BF44507418FE7BBFDD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * L_0 = (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 *)il2cpp_codegen_object_new(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08_il2cpp_TypeInfo_var); ContingentProperties__ctor_mD515B94D26AB52AFF131A9C97483E657261B0120(L_0, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Threading.Tasks.Task_<>c::<.cctor>b__295_1(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3C_cctorU3Eb__295_1_m44A2EA1ECE75C2BBF322DB9FC58C4D292B857963 (U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___t0, const RuntimeMethod* method) { { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = ___t0; NullCheck(L_0); bool L_1 = Task_get_IsExceptionObservedByParent_mF76B3BAD34F96F98D1A8E8ACFF533728CEA7EE07(L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Threading.Tasks.Task_<>c::<.cctor>b__295_2(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3C_cctorU3Eb__295_2_mE59AFDA5091AFFCF6A8D7C9F147A2EB2534B4F3C (U3CU3Ec_t07DD323FAAF5A7EC9AE5E0DA9748D2EA6B39DCD3 * __this, RuntimeObject * ___tc0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___tc0; return (bool)((((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task_<>c__DisplayClass178_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass178_0__ctor_mE3AB73DE645CB1E445061A5C3AF7591D19EC1D10 (U3CU3Ec__DisplayClass178_0_tDB7F53582BFA1879573CC515D119580A06752F7E * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task_<>c__DisplayClass178_0::<ExecuteSelfReplicating>b__0(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass178_0_U3CExecuteSelfReplicatingU3Eb__0_mAF07405204F1F6B3977A5E367931D33F38CAB548 (U3CU3Ec__DisplayClass178_0_tDB7F53582BFA1879573CC515D119580A06752F7E * __this, RuntimeObject * ___U3Cp0U3E0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__DisplayClass178_0_U3CExecuteSelfReplicatingU3Eb__0_mAF07405204F1F6B3977A5E367931D33F38CAB548_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_0 = NULL; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_1 = NULL; RuntimeObject * V_2 = NULL; ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * V_3 = NULL; Exception_t * V_4 = NULL; ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * V_5 = NULL; Exception_t * V_6 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892_inline(/*hidden argument*/NULL); V_0 = L_0; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = V_0; NullCheck(L_1); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_2 = VirtFuncInvoker0< Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * >::Invoke(15 /* System.Threading.Tasks.Task System.Threading.Tasks.Task::get_HandedOverChildReplica() */, L_1); V_1 = L_2; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_3 = V_1; if (L_3) { goto IL_0085; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_4 = __this->get_root_0(); NullCheck(L_4); bool L_5 = VirtFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Threading.Tasks.Task::ShouldReplicate() */, L_4); if (L_5) { goto IL_001e; } } { return; } IL_001e: { bool* L_6 = __this->get_address_of_replicasAreQuitting_1(); bool L_7 = VolatileRead((bool*)L_6); if (!L_7) { goto IL_002c; } } { return; } IL_002c: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_8 = __this->get_root_0(); NullCheck(L_8); ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_9 = Task_get_CapturedContext_m0BF410316395E27B89095D1070AB0D0875B0AAF1(L_8, /*hidden argument*/NULL); V_3 = L_9; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_10 = __this->get_root_0(); Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_11 = __this->get_taskReplicaDelegate_2(); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_12 = __this->get_root_0(); NullCheck(L_12); RuntimeObject * L_13 = L_12->get_m_stateObject_6(); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_14 = __this->get_root_0(); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_15 = __this->get_root_0(); NullCheck(L_15); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_16 = Task_get_ExecutingTaskScheduler_m3A3340F34EF9D594413E54F46B78874BCB0CA30D_inline(L_15, /*hidden argument*/NULL); int32_t L_17 = __this->get_creationOptionsForReplicas_3(); int32_t L_18 = __this->get_internalOptionsForReplicas_4(); NullCheck(L_10); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_19 = VirtFuncInvoker6< Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *, RuntimeObject *, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, int32_t, int32_t >::Invoke(12 /* System.Threading.Tasks.Task System.Threading.Tasks.Task::CreateReplicaTask(System.Action`1<System.Object>,System.Object,System.Threading.Tasks.Task,System.Threading.Tasks.TaskScheduler,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions) */, L_10, L_11, L_13, L_14, L_16, L_17, L_18); V_1 = L_19; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_20 = V_1; ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_21 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_22 = Task_CopyExecutionContext_m8B27D58B28710B2B9CDA52970404E67039F0EE53(L_21, /*hidden argument*/NULL); NullCheck(L_20); Task_set_CapturedContext_mB7C98613F94CB2B97DB8B283F18E0E47C42B887B(L_20, L_22, /*hidden argument*/NULL); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_23 = V_1; NullCheck(L_23); Task_ScheduleAndStart_m7A3334C89BD4B47370D0A3CAE575EA54CCA01AEF(L_23, (bool)0, /*hidden argument*/NULL); } IL_0085: { } IL_0086: try { // begin try (depth: 1) Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_24 = __this->get_root_0(); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_25 = V_0; NullCheck(L_24); Task_InnerInvokeWithArg_m8313756145BF2BCE95AA05D0B896E4780788DD86(L_24, L_25, /*hidden argument*/NULL); goto IL_00b6; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0094; throw e; } CATCH_0094: { // begin catch(System.Exception) { V_4 = ((Exception_t *)__exception_local); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_26 = __this->get_root_0(); Exception_t * L_27 = V_4; NullCheck(L_26); Task_HandleException_m6B4C1844450535E0938234A9A696060C28A5F74C(L_26, L_27, /*hidden argument*/NULL); Exception_t * L_28 = V_4; if (!((ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 *)IsInstSealed((RuntimeObject*)L_28, ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_il2cpp_TypeInfo_var))) { goto IL_00b4; } } IL_00ac: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_29 = V_0; NullCheck(L_29); Task_FinishThreadAbortedTask_m68ACB8E7C1B325A01E7CFB23448F60DF56328760(L_29, (bool)0, (bool)1, /*hidden argument*/NULL); } IL_00b4: { goto IL_00b6; } } // end catch (depth: 1) IL_00b6: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_30 = V_0; NullCheck(L_30); RuntimeObject * L_31 = VirtFuncInvoker0< RuntimeObject * >::Invoke(13 /* System.Object System.Threading.Tasks.Task::get_SavedStateForNextReplica() */, L_30); V_2 = L_31; RuntimeObject * L_32 = V_2; if (!L_32) { goto IL_0128; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_33 = __this->get_root_0(); Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_34 = __this->get_taskReplicaDelegate_2(); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_35 = __this->get_root_0(); NullCheck(L_35); RuntimeObject * L_36 = L_35->get_m_stateObject_6(); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_37 = __this->get_root_0(); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_38 = __this->get_root_0(); NullCheck(L_38); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_39 = Task_get_ExecutingTaskScheduler_m3A3340F34EF9D594413E54F46B78874BCB0CA30D_inline(L_38, /*hidden argument*/NULL); int32_t L_40 = __this->get_creationOptionsForReplicas_3(); int32_t L_41 = __this->get_internalOptionsForReplicas_4(); NullCheck(L_33); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_42 = VirtFuncInvoker6< Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *, RuntimeObject *, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *, int32_t, int32_t >::Invoke(12 /* System.Threading.Tasks.Task System.Threading.Tasks.Task::CreateReplicaTask(System.Action`1<System.Object>,System.Object,System.Threading.Tasks.Task,System.Threading.Tasks.TaskScheduler,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.InternalTaskOptions) */, L_33, L_34, L_36, L_37, L_39, L_40, L_41); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_43 = __this->get_root_0(); NullCheck(L_43); ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_44 = Task_get_CapturedContext_m0BF410316395E27B89095D1070AB0D0875B0AAF1(L_43, /*hidden argument*/NULL); V_5 = L_44; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_45 = L_42; ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_46 = V_5; IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_47 = Task_CopyExecutionContext_m8B27D58B28710B2B9CDA52970404E67039F0EE53(L_46, /*hidden argument*/NULL); NullCheck(L_45); Task_set_CapturedContext_mB7C98613F94CB2B97DB8B283F18E0E47C42B887B(L_45, L_47, /*hidden argument*/NULL); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_48 = L_45; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_49 = V_1; NullCheck(L_48); VirtActionInvoker1< Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * >::Invoke(16 /* System.Void System.Threading.Tasks.Task::set_HandedOverChildReplica(System.Threading.Tasks.Task) */, L_48, L_49); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_50 = L_48; RuntimeObject * L_51 = V_2; NullCheck(L_50); VirtActionInvoker1< RuntimeObject * >::Invoke(14 /* System.Void System.Threading.Tasks.Task::set_SavedStateFromPreviousReplica(System.Object) */, L_50, L_51); NullCheck(L_50); Task_ScheduleAndStart_m7A3334C89BD4B47370D0A3CAE575EA54CCA01AEF(L_50, (bool)0, /*hidden argument*/NULL); return; } IL_0128: { __this->set_replicasAreQuitting_1((bool)1); } IL_012f: try { // begin try (depth: 1) Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_52 = V_1; NullCheck(L_52); Task_InternalCancel_m745407E41B4B25AA01E7DBAD85A4857D1F7F520D(L_52, (bool)1, /*hidden argument*/NULL); goto IL_014a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0139; throw e; } CATCH_0139: { // begin catch(System.Exception) V_6 = ((Exception_t *)__exception_local); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_53 = __this->get_root_0(); Exception_t * L_54 = V_6; NullCheck(L_53); Task_HandleException_m6B4C1844450535E0938234A9A696060C28A5F74C(L_53, L_54, /*hidden argument*/NULL); goto IL_014a; } // end catch (depth: 1) IL_014a: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task_ContingentProperties::SetCompleted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContingentProperties_SetCompleted_m3CB1941CBE9F1D241A2AFA4E3F739C98B493E6DE (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * __this, const RuntimeMethod* method) { ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * V_0 = NULL; { ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * L_0 = __this->get_m_completionEvent_1(); il2cpp_codegen_memory_barrier(); V_0 = L_0; ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * L_1 = V_0; if (!L_1) { goto IL_0012; } } { ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445 * L_2 = V_0; NullCheck(L_2); ManualResetEventSlim_Set_m2E94D35286055BA81B9DAD85C4CB9DCF89CF0F81(L_2, /*hidden argument*/NULL); } IL_0012: { return; } } // System.Void System.Threading.Tasks.Task_ContingentProperties::DeregisterCancellationCallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContingentProperties_DeregisterCancellationCallback_mE1C7DC05011B37760179381194AA813E6646C900 (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ContingentProperties_DeregisterCancellationCallback_mE1C7DC05011B37760179381194AA813E6646C900_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 * L_0 = __this->get_m_cancellationRegistration_4(); if (!L_0) { goto IL_0024; } } IL_0008: try { // begin try (depth: 1) Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 * L_1 = __this->get_m_cancellationRegistration_4(); NullCheck(L_1); CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * L_2 = L_1->get_address_of_Value_0(); CancellationTokenRegistration_Dispose_m12C09B73DC2913C85C776E611EF48DCA63405457((CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)L_2, /*hidden argument*/NULL); goto IL_001d; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_001a; throw e; } CATCH_001a: { // begin catch(System.ObjectDisposedException) goto IL_001d; } // end catch (depth: 1) IL_001d: { __this->set_m_cancellationRegistration_4((Shared_1_t6EFAE49AC0A1E070F87779D3DD8273B35F28E7D2 *)NULL); } IL_0024: { return; } } // System.Void System.Threading.Tasks.Task_ContingentProperties::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContingentProperties__ctor_mD515B94D26AB52AFF131A9C97483E657261B0120 (ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * __this, const RuntimeMethod* method) { { il2cpp_codegen_memory_barrier(); __this->set_m_completionCountdown_6(1); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task_DelayPromise::.ctor(System.Threading.CancellationToken) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelayPromise__ctor_m3A76D411C11904928F0FF700384FFA1668669B15 (DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___token0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DelayPromise__ctor_m3A76D411C11904928F0FF700384FFA1668669B15_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673_il2cpp_TypeInfo_var); Task_1__ctor_mB6BFCB1A119B19A4AE30679E41E1F4EC47797EB4(__this, /*hidden argument*/Task_1__ctor_mB6BFCB1A119B19A4AE30679E41E1F4EC47797EB4_RuntimeMethod_var); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = ___token0; __this->set_Token_25(L_0); bool L_1 = AsyncCausalityTracer_get_LoggingOn_m1A633E7FCD4DF7D870FFF917FDCDBEDAF24725B7(/*hidden argument*/NULL); if (!L_1) { goto IL_0027; } } { int32_t L_2 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD(__this, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCreation_m7B5DBD272BC20E986A5120FBF6665241BBACF060(0, L_2, _stringLiteralB016278EAF5A66B124AA177BADC28CD1550C586F, (((int64_t)((int64_t)0))), /*hidden argument*/NULL); } IL_0027: { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); bool L_3 = ((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields*)il2cpp_codegen_static_fields_for(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_3) { goto IL_0035; } } { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_AddToActiveTasks_m840B00A5EE550016686305EDB927B9A7FE37C421(__this, /*hidden argument*/NULL); } IL_0035: { return; } } // System.Void System.Threading.Tasks.Task_DelayPromise::Complete() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelayPromise_Complete_m0CE65AE222FFF596F849ACDF12710DA631C673AD (DelayPromise_t7C7AB82D097218CCDB5A68ED80ED47BC56DE10D2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DelayPromise_Complete_m0CE65AE222FFF596F849ACDF12710DA631C673AD_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_1; memset((&V_1), 0, sizeof(V_1)); VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 V_2; memset((&V_2), 0, sizeof(V_2)); { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = __this->get_Token_25(); V_1 = L_0; bool L_1 = CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(&V_1), /*hidden argument*/NULL); if (!L_1) { goto IL_001f; } } { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = __this->get_Token_25(); bool L_3 = Task_1_TrySetCanceled_mF517585BF4AC77744F212A6F236047C47E7CB45C(__this, L_2, /*hidden argument*/Task_1_TrySetCanceled_mF517585BF4AC77744F212A6F236047C47E7CB45C_RuntimeMethod_var); V_0 = L_3; goto IL_0055; } IL_001f: { bool L_4 = AsyncCausalityTracer_get_LoggingOn_m1A633E7FCD4DF7D870FFF917FDCDBEDAF24725B7(/*hidden argument*/NULL); if (!L_4) { goto IL_0033; } } { int32_t L_5 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD(__this, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m63C07B707D3034D2F0F4B395636B410ACC9A78D6(0, L_5, 1, /*hidden argument*/NULL); } IL_0033: { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); bool L_6 = ((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields*)il2cpp_codegen_static_fields_for(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_6) { goto IL_0045; } } { int32_t L_7 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_RemoveFromActiveTasks_mEDE131DB4C29D967D6D717CAB002C6C02583BDF5(L_7, /*hidden argument*/NULL); } IL_0045: { il2cpp_codegen_initobj((&V_2), sizeof(VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 )); VoidTaskResult_t66EBC10DDE738848DB00F6EC1A2536D7D4715F40 L_8 = V_2; bool L_9 = Task_1_TrySetResult_mAD80B9B3A23B94A6798C589669A06F1D25D46543(__this, L_8, /*hidden argument*/Task_1_TrySetResult_mAD80B9B3A23B94A6798C589669A06F1D25D46543_RuntimeMethod_var); V_0 = L_9; } IL_0055: { bool L_10 = V_0; if (!L_10) { goto IL_0076; } } { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_11 = __this->get_Timer_27(); if (!L_11) { goto IL_006b; } } { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_12 = __this->get_Timer_27(); NullCheck(L_12); Timer_Dispose_mAD09E4EAC3D4A4732B55911919A60CACCF8173D9(L_12, /*hidden argument*/NULL); } IL_006b: { CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * L_13 = __this->get_address_of_Registration_26(); CancellationTokenRegistration_Dispose_m12C09B73DC2913C85C776E611EF48DCA63405457((CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)L_13, /*hidden argument*/NULL); } IL_0076: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.Task_SetOnInvokeMres::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetOnInvokeMres__ctor_m5687AFB1292311BE5361EDDC64D893359D4DA8BD (SetOnInvokeMres_tBDCEA7BE3061614FC83A82D8E6FBD5903C3FD2A9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SetOnInvokeMres__ctor_m5687AFB1292311BE5361EDDC64D893359D4DA8BD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ManualResetEventSlim_t085E880B24016C42F7DE42113674D0A41B4FB445_il2cpp_TypeInfo_var); ManualResetEventSlim__ctor_m9755B7ADD1C06A7CA340D730FD1E3694BB563B94(__this, (bool)0, 0, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.Task_SetOnInvokeMres::Invoke(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetOnInvokeMres_Invoke_m157A2CD514960373752C978636DE35C42FAB083C (SetOnInvokeMres_tBDCEA7BE3061614FC83A82D8E6FBD5903C3FD2A9 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___completingTask0, const RuntimeMethod* method) { { ManualResetEventSlim_Set_m2E94D35286055BA81B9DAD85C4CB9DCF89CF0F81(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskCanceledException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskCanceledException__ctor_m050669D6A0AFCADF5E7EE761F1E32860C187D2D4 (TaskCanceledException_tB1E5209054F302F814E18BBCACDF6546BAF2EC48 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskCanceledException__ctor_m050669D6A0AFCADF5E7EE761F1E32860C187D2D4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8F3F5E0527993BEB4010B7A1444A093EDA2F42EF, /*hidden argument*/NULL); OperationCanceledException__ctor_m2B7CD7E9C467C67E91F869D2418897991E05CC2F(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.TaskCanceledException::.ctor(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskCanceledException__ctor_m45DC90A53B1AF6B996D2B1BEA655A8D2C08C6AE7 (TaskCanceledException_tB1E5209054F302F814E18BBCACDF6546BAF2EC48 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskCanceledException__ctor_m45DC90A53B1AF6B996D2B1BEA655A8D2C08C6AE7_MetadataUsageId); s_Il2CppMethodInitialized = true; } CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); String_t* G_B2_0 = NULL; TaskCanceledException_tB1E5209054F302F814E18BBCACDF6546BAF2EC48 * G_B2_1 = NULL; String_t* G_B1_0 = NULL; TaskCanceledException_tB1E5209054F302F814E18BBCACDF6546BAF2EC48 * G_B1_1 = NULL; CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB G_B3_0; memset((&G_B3_0), 0, sizeof(G_B3_0)); String_t* G_B3_1 = NULL; TaskCanceledException_tB1E5209054F302F814E18BBCACDF6546BAF2EC48 * G_B3_2 = NULL; { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8F3F5E0527993BEB4010B7A1444A093EDA2F42EF, /*hidden argument*/NULL); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = ___task0; G_B1_0 = L_0; G_B1_1 = __this; if (L_1) { G_B2_0 = L_0; G_B2_1 = __this; goto IL_0019; } } { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = V_0; G_B3_0 = L_2; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_001f; } IL_0019: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_3 = ___task0; NullCheck(L_3); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_4 = Task_get_CancellationToken_m3E8D0E96EEC38EC70AEE5F876AF8A0517B463D75(L_3, /*hidden argument*/NULL); G_B3_0 = L_4; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_001f: { NullCheck(G_B3_2); OperationCanceledException__ctor_mFA31130275508696794961415B1C9F0AC2308DB0(G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_5 = ___task0; __this->set_m_canceledTask_18(L_5); return; } } // System.Void System.Threading.Tasks.TaskCanceledException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskCanceledException__ctor_mF6F50812A6475FF25AFA7C541D18C1A3FB02ADFD (TaskCanceledException_tB1E5209054F302F814E18BBCACDF6546BAF2EC48 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; OperationCanceledException__ctor_m8FCB4255C71E7CCCD49CF391BC5CE8EF39F47700(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskContinuation::InlineIfPossibleOrElseQueue(System.Threading.Tasks.Task,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskContinuation_InlineIfPossibleOrElseQueue_m7CCFD190C3F783A343C1103BF27BFE4D19C66FEF (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, bool ___needsProtection1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskContinuation_InlineIfPossibleOrElseQueue_m7CCFD190C3F783A343C1103BF27BFE4D19C66FEF_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * V_0 = NULL; TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24 * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { bool L_0 = ___needsProtection1; if (!L_0) { goto IL_000c; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = ___task0; NullCheck(L_1); bool L_2 = Task_MarkStarted_mA6657A4058C324CA5277F16D30C25741C4220030(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0022; } } { return; } IL_000c: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_3 = ___task0; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_4 = L_3; NullCheck(L_4); int32_t L_5 = L_4->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); NullCheck(L_4); il2cpp_codegen_memory_barrier(); L_4->set_m_stateFlags_9(((int32_t)((int32_t)L_5|(int32_t)((int32_t)65536)))); } IL_0022: { } IL_0023: try { // begin try (depth: 1) { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_6 = ___task0; NullCheck(L_6); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_7 = L_6->get_m_taskScheduler_7(); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_8 = ___task0; NullCheck(L_7); bool L_9 = TaskScheduler_TryRunInline_m9FBFA8F615D96CC9902CA2CBC3D51BCF7444E67B(L_7, L_8, (bool)0, /*hidden argument*/NULL); if (L_9) { goto IL_003e; } } IL_0032: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_10 = ___task0; NullCheck(L_10); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_11 = L_10->get_m_taskScheduler_7(); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_12 = ___task0; NullCheck(L_11); TaskScheduler_InternalQueueTask_m08940F911E3B4987803048AC88CAE4FB803E1B30(L_11, L_12, /*hidden argument*/NULL); } IL_003e: { goto IL_0070; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0040; throw e; } CATCH_0040: { // begin catch(System.Exception) { V_0 = ((Exception_t *)__exception_local); Exception_t * L_13 = V_0; if (!((ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 *)IsInstSealed((RuntimeObject*)L_13, ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_il2cpp_TypeInfo_var))) { goto IL_0059; } } IL_0049: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_14 = ___task0; NullCheck(L_14); int32_t L_15 = L_14->get_m_stateFlags_9(); il2cpp_codegen_memory_barrier(); if (((int32_t)((int32_t)L_15&(int32_t)((int32_t)134217728)))) { goto IL_006e; } } IL_0059: { Exception_t * L_16 = V_0; TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24 * L_17 = (TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24 *)il2cpp_codegen_object_new(TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24_il2cpp_TypeInfo_var); TaskSchedulerException__ctor_mFFF7423FCD3DFC4F8A6F7E6028AE6CB1D5865F63(L_17, L_16, /*hidden argument*/NULL); V_1 = L_17; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_18 = ___task0; TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24 * L_19 = V_1; NullCheck(L_18); Task_AddException_m07648B13C5D6B6517EEC4C84D5C022965ED1AE54(L_18, L_19, /*hidden argument*/NULL); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_20 = ___task0; NullCheck(L_20); Task_Finish_m3CBED2C27D7A1E20A9D2A659D4DEA38FCC47DF8F(L_20, (bool)0, /*hidden argument*/NULL); } IL_006e: { goto IL_0070; } } // end catch (depth: 1) IL_0070: { return; } } // System.Void System.Threading.Tasks.TaskContinuation::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskContinuation__ctor_m80CED39EAC26BB41224D948D7197F1251E4F4631 (TaskContinuation_t870BBF430CE7A3B6DF15EE1ED7940F1ABA9EEEE9 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskExceptionHolder::.ctor(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder__ctor_m9DFCF5C093112C5273718737871BB34B2677A842 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskExceptionHolder__ctor_m9DFCF5C093112C5273718737871BB34B2677A842_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = ___task0; __this->set_m_task_3(L_0); IL2CPP_RUNTIME_CLASS_INIT(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var); TaskExceptionHolder_EnsureADUnloadCallbackRegistered_m9143F763B1A627B480F5E1B9993FF68DE28BD080(/*hidden argument*/NULL); return; } } // System.Boolean System.Threading.Tasks.TaskExceptionHolder::ShouldFailFastOnUnobservedException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskExceptionHolder_ShouldFailFastOnUnobservedException_m598AC45A67885B2AECE374ACE0EC8863F733CD1B (const RuntimeMethod* method) { { bool L_0 = CLRConfig_CheckThrowUnobservedTaskExceptions_m7E817CDBB28FAAD9A350E189D536A84EA75A37D3(/*hidden argument*/NULL); return L_0; } } // System.Void System.Threading.Tasks.TaskExceptionHolder::EnsureADUnloadCallbackRegistered() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_EnsureADUnloadCallbackRegistered_m9143F763B1A627B480F5E1B9993FF68DE28BD080 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskExceptionHolder_EnsureADUnloadCallbackRegistered_m9143F763B1A627B480F5E1B9993FF68DE28BD080_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var); EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_0 = ((TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_StaticFields*)il2cpp_codegen_static_fields_for(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var))->get_s_adUnloadEventHandler_2(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_0033; } } { IL2CPP_RUNTIME_CLASS_INIT(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var); EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_1 = (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)il2cpp_codegen_object_new(EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C_il2cpp_TypeInfo_var); EventHandler__ctor_m497A2BCD46DB769EAFFDE919303FCAE226906B6F(L_1, NULL, (intptr_t)((intptr_t)TaskExceptionHolder_AppDomainUnloadCallback_mAC27C1E4D2719B110D952A915FCC2B763C0FDBAA_RuntimeMethod_var), /*hidden argument*/NULL); EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_2 = InterlockedCompareExchangeImpl<EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *>((EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C **)(((TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_StaticFields*)il2cpp_codegen_static_fields_for(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var))->get_address_of_s_adUnloadEventHandler_2()), L_1, (EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C *)NULL); if (L_2) { goto IL_0033; } } { AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * L_3 = AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var); EventHandler_t2B84E745E28BA26C49C4E99A387FC3B534D1110C * L_4 = ((TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_StaticFields*)il2cpp_codegen_static_fields_for(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var))->get_s_adUnloadEventHandler_2(); il2cpp_codegen_memory_barrier(); NullCheck(L_3); AppDomain_add_DomainUnload_mF24D35CA25C3C808EC78600D0C603B396EC8765F(L_3, L_4, /*hidden argument*/NULL); } IL_0033: { return; } } // System.Void System.Threading.Tasks.TaskExceptionHolder::AppDomainUnloadCallback(System.Object,System.EventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_AppDomainUnloadCallback_mAC27C1E4D2719B110D952A915FCC2B763C0FDBAA (RuntimeObject * ___sender0, EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___e1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskExceptionHolder_AppDomainUnloadCallback_mAC27C1E4D2719B110D952A915FCC2B763C0FDBAA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var); il2cpp_codegen_memory_barrier(); ((TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_StaticFields*)il2cpp_codegen_static_fields_for(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var))->set_s_domainUnloadStarted_1(1); return; } } // System.Void System.Threading.Tasks.TaskExceptionHolder::Finalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_Finalize_mDB06081495D64A2708A09991B67929EDF79EF3FA (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskExceptionHolder_Finalize_mDB06081495D64A2708A09991B67929EDF79EF3FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * V_0 = NULL; UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 * V_1 = NULL; Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 V_2; memset((&V_2), 0, sizeof(V_2)); Exception_t * V_3 = NULL; AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * V_4 = NULL; RuntimeObject* V_5 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 5); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_0 = __this->get_m_faultExceptions_4(); il2cpp_codegen_memory_barrier(); if (!L_0) { goto IL_0103; } } IL_000d: { bool L_1 = __this->get_m_isHandled_6(); il2cpp_codegen_memory_barrier(); if (L_1) { goto IL_0103; } } IL_001a: { bool L_2 = Environment_get_HasShutdownStarted_m722CC30F8A3C58FE3165427FF2858922C13F7A5C(/*hidden argument*/NULL); if (L_2) { goto IL_0103; } } IL_0024: { AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * L_3 = AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0(/*hidden argument*/NULL); NullCheck(L_3); bool L_4 = AppDomain_IsFinalizingForUnload_m1B3D0DA1C7AEA3D6FA5D7D52161B2FF52B2D9912(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0103; } } IL_0033: { IL2CPP_RUNTIME_CLASS_INIT(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var); bool L_5 = ((TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_StaticFields*)il2cpp_codegen_static_fields_for(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var))->get_s_domainUnloadStarted_1(); il2cpp_codegen_memory_barrier(); if (L_5) { goto IL_0103; } } IL_003f: { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_6 = __this->get_m_faultExceptions_4(); il2cpp_codegen_memory_barrier(); NullCheck(L_6); Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 L_7 = List_1_GetEnumerator_mE27BF65BB76485B01C35B9F6A1D44C4560BF5370(L_6, /*hidden argument*/List_1_GetEnumerator_mE27BF65BB76485B01C35B9F6A1D44C4560BF5370_RuntimeMethod_var); V_2 = L_7; } IL_004d: try { // begin try (depth: 2) { goto IL_00ae; } IL_004f: { ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_8 = Enumerator_get_Current_m2EA6C5DB454F479076AF2C9098A477B943F7CF71_inline((Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 *)(&V_2), /*hidden argument*/Enumerator_get_Current_m2EA6C5DB454F479076AF2C9098A477B943F7CF71_RuntimeMethod_var); NullCheck(L_8); Exception_t * L_9 = ExceptionDispatchInfo_get_SourceException_m212F50A437B8B18AFECE39F2A9F7231787F45F28_inline(L_8, /*hidden argument*/NULL); V_3 = L_9; Exception_t * L_10 = V_3; V_4 = ((AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E *)IsInstClass((RuntimeObject*)L_10, AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E_il2cpp_TypeInfo_var)); AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_11 = V_4; if (!L_11) { goto IL_00a4; } } IL_0068: { AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_12 = V_4; NullCheck(L_12); AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_13 = AggregateException_Flatten_mDA4D8AD18CD6E4E13B69A3CDC8F341D825AFE05C(L_12, /*hidden argument*/NULL); NullCheck(L_13); ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_14 = AggregateException_get_InnerExceptions_mB81D2B3BD56A3E938B83B0AF766474ED66057040_inline(L_13, /*hidden argument*/NULL); NullCheck(L_14); RuntimeObject* L_15 = ReadOnlyCollection_1_GetEnumerator_mB3A1708B473BA7EE3CED5959613B2AA11A4920BA(L_14, /*hidden argument*/ReadOnlyCollection_1_GetEnumerator_mB3A1708B473BA7EE3CED5959613B2AA11A4920BA_RuntimeMethod_var); V_5 = L_15; } IL_007b: try { // begin try (depth: 3) { goto IL_008d; } IL_007d: { RuntimeObject* L_16 = V_5; NullCheck(L_16); Exception_t * L_17 = InterfaceFuncInvoker0< Exception_t * >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Exception>::get_Current() */, IEnumerator_1_t2281FCF251CD51C1F13587450034F0E08EBFAD0E_il2cpp_TypeInfo_var, L_16); if (!((ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 *)IsInstSealed((RuntimeObject*)L_17, ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_il2cpp_TypeInfo_var))) { goto IL_008d; } } IL_008b: { IL2CPP_LEAVE(0x10C, FINALLY_0098); } IL_008d: { RuntimeObject* L_18 = V_5; NullCheck(L_18); bool L_19 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_18); if (L_19) { goto IL_007d; } } IL_0096: { IL2CPP_LEAVE(0xAE, FINALLY_0098); } } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0098; } FINALLY_0098: { // begin finally (depth: 3) { RuntimeObject* L_20 = V_5; if (!L_20) { goto IL_00a3; } } IL_009c: { RuntimeObject* L_21 = V_5; NullCheck(L_21); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_21); } IL_00a3: { IL2CPP_END_FINALLY(152) } } // end finally (depth: 3) IL2CPP_CLEANUP(152) { IL2CPP_END_CLEANUP(0x10C, FINALLY_00b9); IL2CPP_JUMP_TBL(0xAE, IL_00ae) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00a4: { Exception_t * L_22 = V_3; if (!((ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 *)IsInstSealed((RuntimeObject*)L_22, ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_il2cpp_TypeInfo_var))) { goto IL_00ae; } } IL_00ac: { IL2CPP_LEAVE(0x10C, FINALLY_00b9); } IL_00ae: { bool L_23 = Enumerator_MoveNext_mDBF08ABE6CCFA1D4FCF82C5D409C18615C300000((Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_mDBF08ABE6CCFA1D4FCF82C5D409C18615C300000_RuntimeMethod_var); if (L_23) { goto IL_004f; } } IL_00b7: { IL2CPP_LEAVE(0xC7, FINALLY_00b9); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b9; } FINALLY_00b9: { // begin finally (depth: 2) Enumerator_Dispose_m60AD9FD2AC64440B5E23B200EAE9B55F366379AB((Enumerator_t23D7E95BCDD5032F1F9E007FFC1937FDFB0BE911 *)(&V_2), /*hidden argument*/Enumerator_Dispose_m60AD9FD2AC64440B5E23B200EAE9B55F366379AB_RuntimeMethod_var); IL2CPP_END_FINALLY(185) } // end finally (depth: 2) IL2CPP_CLEANUP(185) { IL2CPP_END_CLEANUP(0x10C, FINALLY_0105); IL2CPP_JUMP_TBL(0xC7, IL_00c7) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00c7: { String_t* L_24 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4502F52BE77394F4C0ECBD9DEA423CB819129CE0, /*hidden argument*/NULL); List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_25 = __this->get_m_faultExceptions_4(); il2cpp_codegen_memory_barrier(); AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_26 = (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E *)il2cpp_codegen_object_new(AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E_il2cpp_TypeInfo_var); AggregateException__ctor_m49EF2FE10BC147085D49932EDE07AD581C461818(L_26, L_24, L_25, /*hidden argument*/NULL); V_0 = L_26; AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_27 = V_0; UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 * L_28 = (UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 *)il2cpp_codegen_object_new(UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7_il2cpp_TypeInfo_var); UnobservedTaskExceptionEventArgs__ctor_mD866CEFA881E8B9F5C7FB00C62B3575E97BFEED3(L_28, L_27, /*hidden argument*/NULL); V_1 = L_28; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_29 = __this->get_m_task_3(); UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 * L_30 = V_1; IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); TaskScheduler_PublishUnobservedTaskException_mA2CFE30AA160C2A0FEDAB216CEF09B86AD16ECA4(L_29, L_30, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var); bool L_31 = ((TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_StaticFields*)il2cpp_codegen_static_fields_for(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var))->get_s_failFastOnUnobservedException_0(); if (!L_31) { goto IL_0103; } } IL_00f9: { UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 * L_32 = V_1; NullCheck(L_32); bool L_33 = L_32->get_m_observed_2(); if (L_33) { goto IL_0103; } } IL_0101: { AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_34 = V_0; IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, TaskExceptionHolder_Finalize_mDB06081495D64A2708A09991B67929EDF79EF3FA_RuntimeMethod_var); } IL_0103: { IL2CPP_LEAVE(0x10C, FINALLY_0105); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0105; } FINALLY_0105: { // begin finally (depth: 1) Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(261) } // end finally (depth: 1) IL2CPP_CLEANUP(261) { IL2CPP_JUMP_TBL(0x10C, IL_010c) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_010c: { return; } } // System.Boolean System.Threading.Tasks.TaskExceptionHolder::get_ContainsFaultList() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskExceptionHolder_get_ContainsFaultList_m0BD28A069F49306DC78F74060DF55D2F9F5275E3 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, const RuntimeMethod* method) { { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_0 = __this->get_m_faultExceptions_4(); il2cpp_codegen_memory_barrier(); return (bool)((!(((RuntimeObject*)(List_1_tCD04260AE1254C438132446F1E6892AB86D18743 *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Void System.Threading.Tasks.TaskExceptionHolder::Add(System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_Add_m474EACCFF78EE2092046D28A549140F2DB721109 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, RuntimeObject * ___exceptionObject0, bool ___representsCancellation1, const RuntimeMethod* method) { { bool L_0 = ___representsCancellation1; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___exceptionObject0; TaskExceptionHolder_SetCancellationException_m98201054DD08F08C9DABEDA502FFDC926412EB35(__this, L_1, /*hidden argument*/NULL); return; } IL_000b: { RuntimeObject * L_2 = ___exceptionObject0; TaskExceptionHolder_AddFaultException_mAED32CEEF853B1EECD7CDD5285BD8E1F079DF505(__this, L_2, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.TaskExceptionHolder::SetCancellationException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_SetCancellationException_m98201054DD08F08C9DABEDA502FFDC926412EB35 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskExceptionHolder_SetCancellationException_m98201054DD08F08C9DABEDA502FFDC926412EB35_MetadataUsageId); s_Il2CppMethodInitialized = true; } OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * V_0 = NULL; ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * V_1 = NULL; { RuntimeObject * L_0 = ___exceptionObject0; V_0 = ((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)IsInstClass((RuntimeObject*)L_0, OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var)); OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_1 = V_0; if (!L_1) { goto IL_0018; } } { OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 * L_2 = V_0; ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_3 = ExceptionDispatchInfo_Capture_m8E5F721466EDFE9AA8BC532F9AE7A859E0766E23(L_2, /*hidden argument*/NULL); __this->set_m_cancellationException_5(L_3); goto IL_0026; } IL_0018: { RuntimeObject * L_4 = ___exceptionObject0; V_1 = ((ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A *)IsInstSealed((RuntimeObject*)L_4, ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A_il2cpp_TypeInfo_var)); ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_5 = V_1; __this->set_m_cancellationException_5(L_5); } IL_0026: { TaskExceptionHolder_MarkAsHandled_mDF29FF00633189AAC6A4D341F14D7DC6E0250835(__this, (bool)0, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.TaskExceptionHolder::AddFaultException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_AddFaultException_mAED32CEEF853B1EECD7CDD5285BD8E1F079DF505 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, RuntimeObject * ___exceptionObject0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskExceptionHolder_AddFaultException_mAED32CEEF853B1EECD7CDD5285BD8E1F079DF505_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * V_0 = NULL; Exception_t * V_1 = NULL; ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * V_2 = NULL; RuntimeObject* V_3 = NULL; RuntimeObject* V_4 = NULL; Exception_t * V_5 = NULL; RuntimeObject* V_6 = NULL; int32_t V_7 = 0; Type_t * V_8 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_0 = __this->get_m_faultExceptions_4(); il2cpp_codegen_memory_barrier(); V_0 = L_0; List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_1 = V_0; if (L_1) { goto IL_001c; } } { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_2 = (List_1_tCD04260AE1254C438132446F1E6892AB86D18743 *)il2cpp_codegen_object_new(List_1_tCD04260AE1254C438132446F1E6892AB86D18743_il2cpp_TypeInfo_var); List_1__ctor_m5D913FDA1B5B3FFD94223C59B5A70B418F569213(L_2, 1, /*hidden argument*/List_1__ctor_m5D913FDA1B5B3FFD94223C59B5A70B418F569213_RuntimeMethod_var); List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_3 = L_2; V_0 = L_3; il2cpp_codegen_memory_barrier(); __this->set_m_faultExceptions_4(L_3); } IL_001c: { RuntimeObject * L_4 = ___exceptionObject0; V_1 = ((Exception_t *)IsInstClass((RuntimeObject*)L_4, Exception_t_il2cpp_TypeInfo_var)); Exception_t * L_5 = V_1; if (!L_5) { goto IL_0034; } } { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_6 = V_0; Exception_t * L_7 = V_1; ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_8 = ExceptionDispatchInfo_Capture_m8E5F721466EDFE9AA8BC532F9AE7A859E0766E23(L_7, /*hidden argument*/NULL); NullCheck(L_6); List_1_Add_m3A0B8640D1A4B9BDC91742284BC44B969CC78279(L_6, L_8, /*hidden argument*/List_1_Add_m3A0B8640D1A4B9BDC91742284BC44B969CC78279_RuntimeMethod_var); goto IL_00b3; } IL_0034: { RuntimeObject * L_9 = ___exceptionObject0; V_2 = ((ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A *)IsInstSealed((RuntimeObject*)L_9, ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A_il2cpp_TypeInfo_var)); ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_10 = V_2; if (!L_10) { goto IL_0047; } } { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_11 = V_0; ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_12 = V_2; NullCheck(L_11); List_1_Add_m3A0B8640D1A4B9BDC91742284BC44B969CC78279(L_11, L_12, /*hidden argument*/List_1_Add_m3A0B8640D1A4B9BDC91742284BC44B969CC78279_RuntimeMethod_var); goto IL_00b3; } IL_0047: { RuntimeObject * L_13 = ___exceptionObject0; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, IEnumerable_1_t6B3D33CE5B4DC884E5267C7B8CBC12380D09B3F1_il2cpp_TypeInfo_var)); RuntimeObject* L_14 = V_3; if (!L_14) { goto IL_0088; } } { RuntimeObject* L_15 = V_3; NullCheck(L_15); RuntimeObject* L_16 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Exception>::GetEnumerator() */, IEnumerable_1_t6B3D33CE5B4DC884E5267C7B8CBC12380D09B3F1_il2cpp_TypeInfo_var, L_15); V_4 = L_16; } IL_0059: try { // begin try (depth: 1) { goto IL_0071; } IL_005b: { RuntimeObject* L_17 = V_4; NullCheck(L_17); Exception_t * L_18 = InterfaceFuncInvoker0< Exception_t * >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Exception>::get_Current() */, IEnumerator_1_t2281FCF251CD51C1F13587450034F0E08EBFAD0E_il2cpp_TypeInfo_var, L_17); V_5 = L_18; List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_19 = V_0; Exception_t * L_20 = V_5; ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_21 = ExceptionDispatchInfo_Capture_m8E5F721466EDFE9AA8BC532F9AE7A859E0766E23(L_20, /*hidden argument*/NULL); NullCheck(L_19); List_1_Add_m3A0B8640D1A4B9BDC91742284BC44B969CC78279(L_19, L_21, /*hidden argument*/List_1_Add_m3A0B8640D1A4B9BDC91742284BC44B969CC78279_RuntimeMethod_var); } IL_0071: { RuntimeObject* L_22 = V_4; NullCheck(L_22); bool L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_22); if (L_23) { goto IL_005b; } } IL_007a: { IL2CPP_LEAVE(0xB3, FINALLY_007c); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_007c; } FINALLY_007c: { // begin finally (depth: 1) { RuntimeObject* L_24 = V_4; if (!L_24) { goto IL_0087; } } IL_0080: { RuntimeObject* L_25 = V_4; NullCheck(L_25); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_25); } IL_0087: { IL2CPP_END_FINALLY(124) } } // end finally (depth: 1) IL2CPP_CLEANUP(124) { IL2CPP_JUMP_TBL(0xB3, IL_00b3) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0088: { RuntimeObject * L_26 = ___exceptionObject0; V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_26, IEnumerable_1_t37B4D1EEBA6E5098A0F018A779067097451BAD2C_il2cpp_TypeInfo_var)); RuntimeObject* L_27 = V_6; if (!L_27) { goto IL_009e; } } { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_28 = V_0; RuntimeObject* L_29 = V_6; NullCheck(L_28); List_1_AddRange_m931E984DEC4E3137C263958DE8354032E8784003(L_28, L_29, /*hidden argument*/List_1_AddRange_m931E984DEC4E3137C263958DE8354032E8784003_RuntimeMethod_var); goto IL_00b3; } IL_009e: { String_t* L_30 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralA5303371A1DD00CB948B4C58C88CC7779A494241, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_31 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_31, L_30, _stringLiteral8D35B56BCE74A9F8AC3CB4260050F19B572F5AC7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, TaskExceptionHolder_AddFaultException_mAED32CEEF853B1EECD7CDD5285BD8E1F079DF505_RuntimeMethod_var); } IL_00b3: { V_7 = 0; goto IL_0112; } IL_00b8: { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_32 = V_0; int32_t L_33 = V_7; NullCheck(L_32); ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_34 = List_1_get_Item_m1F6363F6A46963C8CCA039EF719B7933A3817FF3_inline(L_32, L_33, /*hidden argument*/List_1_get_Item_m1F6363F6A46963C8CCA039EF719B7933A3817FF3_RuntimeMethod_var); NullCheck(L_34); Exception_t * L_35 = ExceptionDispatchInfo_get_SourceException_m212F50A437B8B18AFECE39F2A9F7231787F45F28_inline(L_34, /*hidden argument*/NULL); NullCheck(L_35); Type_t * L_36 = Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3(L_35, /*hidden argument*/NULL); V_8 = L_36; Type_t * L_37 = V_8; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_38 = { reinterpret_cast<intptr_t> (ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_38, /*hidden argument*/NULL); bool L_40 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_37, L_39, /*hidden argument*/NULL); if (!L_40) { goto IL_00f9; } } { Type_t * L_41 = V_8; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_42 = { reinterpret_cast<intptr_t> (AppDomainUnloadedException_t8DFC322660E43B2A11853B62BF43078F42496A35_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_43 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_42, /*hidden argument*/NULL); bool L_44 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_41, L_43, /*hidden argument*/NULL); if (!L_44) { goto IL_00f9; } } { TaskExceptionHolder_MarkAsUnhandled_mD22F977332D7F3EAE91FE0665BAEE1873B342301(__this, /*hidden argument*/NULL); return; } IL_00f9: { int32_t L_45 = V_7; List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_46 = V_0; NullCheck(L_46); int32_t L_47 = List_1_get_Count_m3DAF7D49CDFC1C5CB1461E2030F6FDDA59DBBE1F_inline(L_46, /*hidden argument*/List_1_get_Count_m3DAF7D49CDFC1C5CB1461E2030F6FDDA59DBBE1F_RuntimeMethod_var); if ((!(((uint32_t)L_45) == ((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_47, (int32_t)1)))))) { goto IL_010c; } } { TaskExceptionHolder_MarkAsHandled_mDF29FF00633189AAC6A4D341F14D7DC6E0250835(__this, (bool)0, /*hidden argument*/NULL); } IL_010c: { int32_t L_48 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1)); } IL_0112: { int32_t L_49 = V_7; List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_50 = V_0; NullCheck(L_50); int32_t L_51 = List_1_get_Count_m3DAF7D49CDFC1C5CB1461E2030F6FDDA59DBBE1F_inline(L_50, /*hidden argument*/List_1_get_Count_m3DAF7D49CDFC1C5CB1461E2030F6FDDA59DBBE1F_RuntimeMethod_var); if ((((int32_t)L_49) < ((int32_t)L_51))) { goto IL_00b8; } } { return; } } // System.Void System.Threading.Tasks.TaskExceptionHolder::MarkAsUnhandled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_MarkAsUnhandled_mD22F977332D7F3EAE91FE0665BAEE1873B342301 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskExceptionHolder_MarkAsUnhandled_mD22F977332D7F3EAE91FE0665BAEE1873B342301_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_m_isHandled_6(); il2cpp_codegen_memory_barrier(); if (!L_0) { goto IL_0019; } } { IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC_ReRegisterForFinalize_m4978CBD78D693FF77EA40D4000F0EF9F2C2E54C8(__this, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_m_isHandled_6(0); } IL_0019: { return; } } // System.Void System.Threading.Tasks.TaskExceptionHolder::MarkAsHandled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder_MarkAsHandled_mDF29FF00633189AAC6A4D341F14D7DC6E0250835 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, bool ___calledFromFinalizer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskExceptionHolder_MarkAsHandled_mDF29FF00633189AAC6A4D341F14D7DC6E0250835_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_m_isHandled_6(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_001c; } } { bool L_1 = ___calledFromFinalizer0; if (L_1) { goto IL_0013; } } { IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL); } IL_0013: { il2cpp_codegen_memory_barrier(); __this->set_m_isHandled_6(1); } IL_001c: { return; } } // System.AggregateException System.Threading.Tasks.TaskExceptionHolder::CreateExceptionObject(System.Boolean,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * TaskExceptionHolder_CreateExceptionObject_m054A22256E85C2AF24F5E4253F1FD9ED7698D214 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, bool ___calledFromFinalizer0, Exception_t * ___includeThisException1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskExceptionHolder_CreateExceptionObject_m054A22256E85C2AF24F5E4253F1FD9ED7698D214_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * V_0 = NULL; ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* V_1 = NULL; int32_t V_2 = 0; { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_0 = __this->get_m_faultExceptions_4(); il2cpp_codegen_memory_barrier(); V_0 = L_0; bool L_1 = ___calledFromFinalizer0; TaskExceptionHolder_MarkAsHandled_mDF29FF00633189AAC6A4D341F14D7DC6E0250835(__this, L_1, /*hidden argument*/NULL); Exception_t * L_2 = ___includeThisException1; if (L_2) { goto IL_001a; } } { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_3 = V_0; AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_4 = (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E *)il2cpp_codegen_object_new(AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E_il2cpp_TypeInfo_var); AggregateException__ctor_m863A7C10A5AC7652F73FD1DD2441F9FF5544311E(L_4, L_3, /*hidden argument*/NULL); return L_4; } IL_001a: { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_5 = V_0; NullCheck(L_5); int32_t L_6 = List_1_get_Count_m3DAF7D49CDFC1C5CB1461E2030F6FDDA59DBBE1F_inline(L_5, /*hidden argument*/List_1_get_Count_m3DAF7D49CDFC1C5CB1461E2030F6FDDA59DBBE1F_RuntimeMethod_var); ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_7 = (ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*)(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209*)SZArrayNew(ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1))); V_1 = L_7; V_2 = 0; goto IL_003f; } IL_002c: { ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_8 = V_1; int32_t L_9 = V_2; List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_10 = V_0; int32_t L_11 = V_2; NullCheck(L_10); ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_12 = List_1_get_Item_m1F6363F6A46963C8CCA039EF719B7933A3817FF3_inline(L_10, L_11, /*hidden argument*/List_1_get_Item_m1F6363F6A46963C8CCA039EF719B7933A3817FF3_RuntimeMethod_var); NullCheck(L_12); Exception_t * L_13 = ExceptionDispatchInfo_get_SourceException_m212F50A437B8B18AFECE39F2A9F7231787F45F28_inline(L_12, /*hidden argument*/NULL); NullCheck(L_8); ArrayElementTypeCheck (L_8, L_13); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (Exception_t *)L_13); int32_t L_14 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); } IL_003f: { int32_t L_15 = V_2; ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_16 = V_1; NullCheck(L_16); if ((((int32_t)L_15) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))), (int32_t)1))))) { goto IL_002c; } } { ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_17 = V_1; ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_18 = V_1; NullCheck(L_18); Exception_t * L_19 = ___includeThisException1; NullCheck(L_17); ArrayElementTypeCheck (L_17, L_19); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))), (int32_t)1))), (Exception_t *)L_19); ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209* L_20 = V_1; AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_21 = (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E *)il2cpp_codegen_object_new(AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E_il2cpp_TypeInfo_var); AggregateException__ctor_m4BE6D1A4009BE2081C418E517FFDFE415B6CF908(L_21, L_20, /*hidden argument*/NULL); return L_21; } } // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo> System.Threading.Tasks.TaskExceptionHolder::GetExceptionDispatchInfos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t5DE493537EE0E554797BF0DA823DCBF1903CECC1 * TaskExceptionHolder_GetExceptionDispatchInfos_m22C52A36D4F57DA10A82F4193B5DB26C2761C40E (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskExceptionHolder_GetExceptionDispatchInfos_m22C52A36D4F57DA10A82F4193B5DB26C2761C40E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { List_1_tCD04260AE1254C438132446F1E6892AB86D18743 * L_0 = __this->get_m_faultExceptions_4(); il2cpp_codegen_memory_barrier(); TaskExceptionHolder_MarkAsHandled_mDF29FF00633189AAC6A4D341F14D7DC6E0250835(__this, (bool)0, /*hidden argument*/NULL); ReadOnlyCollection_1_t5DE493537EE0E554797BF0DA823DCBF1903CECC1 * L_1 = (ReadOnlyCollection_1_t5DE493537EE0E554797BF0DA823DCBF1903CECC1 *)il2cpp_codegen_object_new(ReadOnlyCollection_1_t5DE493537EE0E554797BF0DA823DCBF1903CECC1_il2cpp_TypeInfo_var); ReadOnlyCollection_1__ctor_m7B7B9545500B72A83AC286C66E80177D48BE2F7F(L_1, L_0, /*hidden argument*/ReadOnlyCollection_1__ctor_m7B7B9545500B72A83AC286C66E80177D48BE2F7F_RuntimeMethod_var); return L_1; } } // System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Threading.Tasks.TaskExceptionHolder::GetCancellationExceptionDispatchInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * TaskExceptionHolder_GetCancellationExceptionDispatchInfo_m6F7AB65EF187AEE62E6704ED3C85C4BC58C6F369 (TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811 * __this, const RuntimeMethod* method) { { ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_0 = __this->get_m_cancellationException_5(); return L_0; } } // System.Void System.Threading.Tasks.TaskExceptionHolder::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskExceptionHolder__cctor_mC036402D0A2253FCC9204F39FEF446B74DD69CEE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskExceptionHolder__cctor_mC036402D0A2253FCC9204F39FEF446B74DD69CEE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = TaskExceptionHolder_ShouldFailFastOnUnobservedException_m598AC45A67885B2AECE374ACE0EC8863F733CD1B(/*hidden argument*/NULL); ((TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_StaticFields*)il2cpp_codegen_static_fields_for(TaskExceptionHolder_t1F44F1CE648090AA15DDC759304A18E998EFA811_il2cpp_TypeInfo_var))->set_s_failFastOnUnobservedException_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskFactory::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory__ctor_m56921654C22946B66D728E86E5989E0397303233 (TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * __this, const RuntimeMethod* method) { CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0; memset((&V_0), 0, sizeof(V_0)); { il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = V_0; TaskFactory__ctor_m2490F91C5D8A538976744AC434628767958D5EEA(__this, L_0, 0, 0, (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.TaskFactory::.ctor(System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory__ctor_m2490F91C5D8A538976744AC434628767958D5EEA (TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, int32_t ___creationOptions1, int32_t ___continuationOptions2, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler3, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___continuationOptions2; TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640(L_0, /*hidden argument*/NULL); int32_t L_1 = ___creationOptions1; TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370(L_1, /*hidden argument*/NULL); CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = ___cancellationToken0; __this->set_m_defaultCancellationToken_0(L_2); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_3 = ___scheduler3; __this->set_m_defaultScheduler_1(L_3); int32_t L_4 = ___creationOptions1; __this->set_m_defaultCreationOptions_2(L_4); int32_t L_5 = ___continuationOptions2; __this->set_m_defaultContinuationOptions_3(L_5); return; } } // System.Void System.Threading.Tasks.TaskFactory::CheckCreationOptions(System.Threading.Tasks.TaskCreationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370 (int32_t ___creationOptions0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___creationOptions0; if (!((int32_t)((int32_t)L_0&(int32_t)((int32_t)-96)))) { goto IL_0011; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_1, _stringLiteral699B142A794903652E588B3D75019329F77A9209, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TaskFactory_CheckCreationOptions_m03F3C7D571E26A63D8DF838F1F99C28429CB3370_RuntimeMethod_var); } IL_0011: { return; } } // System.Threading.Tasks.Task`1<System.Threading.Tasks.Task> System.Threading.Tasks.TaskFactory::CommonCWAnyLogic(System.Collections.Generic.IList`1<System.Threading.Tasks.Task>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138 * TaskFactory_CommonCWAnyLogic_m49CC1C06031409C5D34990993262A531609D9565 (RuntimeObject* ___tasks0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_CommonCWAnyLogic_m49CC1C06031409C5D34990993262A531609D9565_MetadataUsageId); s_Il2CppMethodInitialized = true; } CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; int32_t V_3 = 0; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_4 = NULL; { RuntimeObject* L_0 = ___tasks0; CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * L_1 = (CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 *)il2cpp_codegen_object_new(CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86_il2cpp_TypeInfo_var); CompleteOnInvokePromise__ctor_mFA5EA438CE61E8FDEB375E5CA2D7D5D1FFE0F175(L_1, L_0, /*hidden argument*/NULL); V_0 = L_1; V_1 = (bool)0; RuntimeObject* L_2 = ___tasks0; NullCheck(L_2); int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Threading.Tasks.Task>::get_Count() */, ICollection_1_t39808D274D411213DCFE09BAE8F3041B974A1A4E_il2cpp_TypeInfo_var, L_2); V_2 = L_3; V_3 = 0; goto IL_0076; } IL_0014: { RuntimeObject* L_4 = ___tasks0; int32_t L_5 = V_3; NullCheck(L_4); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_6 = InterfaceFuncInvoker1< Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Threading.Tasks.Task>::get_Item(System.Int32) */, IList_1_t93C6282CDBF781012E10B912A9AD946F53099551_il2cpp_TypeInfo_var, L_4, L_5); V_4 = L_6; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_7 = V_4; if (L_7) { goto IL_0036; } } { String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9527141004011DE14AE7F1E3643C59B23A00BC38, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_9, L_8, _stringLiteral55D8727A05EB80B0788AF57A5317F3E0A1F4AA55, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, TaskFactory_CommonCWAnyLogic_m49CC1C06031409C5D34990993262A531609D9565_RuntimeMethod_var); } IL_0036: { bool L_10 = V_1; if (L_10) { goto IL_0072; } } { CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * L_11 = V_0; NullCheck(L_11); bool L_12 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19(L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0045; } } { V_1 = (bool)1; goto IL_0072; } IL_0045: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_13 = V_4; NullCheck(L_13); bool L_14 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19(L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_005a; } } { CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * L_15 = V_0; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_16 = V_4; NullCheck(L_15); CompleteOnInvokePromise_Invoke_mAA9922CF17CC5F9186EEE5672444AC40BA0ACC3A(L_15, L_16, /*hidden argument*/NULL); V_1 = (bool)1; goto IL_0072; } IL_005a: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_17 = V_4; CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * L_18 = V_0; NullCheck(L_17); Task_AddCompletionAction_m211F80F6F259D8F8CBB408A901101B91923800C1(L_17, L_18, /*hidden argument*/NULL); CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * L_19 = V_0; NullCheck(L_19); bool L_20 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19(L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_0072; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_21 = V_4; CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * L_22 = V_0; NullCheck(L_21); Task_RemoveContinuation_m09A569E89BF4CCCF31646AB74A88BCDFC093DAE4(L_21, L_22, /*hidden argument*/NULL); } IL_0072: { int32_t L_23 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0076: { int32_t L_24 = V_3; int32_t L_25 = V_2; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_0014; } } { CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * L_26 = V_0; return L_26; } } // System.Void System.Threading.Tasks.TaskFactory::CheckMultiTaskContinuationOptions(System.Threading.Tasks.TaskContinuationOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640 (int32_t ___continuationOptions0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___continuationOptions0; if ((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)524290)))) == ((uint32_t)((int32_t)524290))))) { goto IL_0023; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB7A59C1214B081A2AF0561DFF2E17294228556D4, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral8EFECA76BCED966AFD1E6DF59938C647C9C83F78, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640_RuntimeMethod_var); } IL_0023: { int32_t L_3 = ___continuationOptions0; if (!((int32_t)((int32_t)L_3&(int32_t)((int32_t)-983104)))) { goto IL_0037; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_4, _stringLiteral8EFECA76BCED966AFD1E6DF59938C647C9C83F78, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640_RuntimeMethod_var); } IL_0037: { int32_t L_5 = ___continuationOptions0; if (!((int32_t)((int32_t)L_5&(int32_t)((int32_t)458752)))) { goto IL_0055; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDC6963166E9D5E488CF23C5F20C1BCD34C9C9B72, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteral8EFECA76BCED966AFD1E6DF59938C647C9C83F78, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, TaskFactory_CheckMultiTaskContinuationOptions_mB15FB0D6FD62C8A4AD85751B8605B57420B99640_RuntimeMethod_var); } IL_0055: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskFactory_CompleteOnInvokePromise::.ctor(System.Collections.Generic.IList`1<System.Threading.Tasks.Task>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompleteOnInvokePromise__ctor_mFA5EA438CE61E8FDEB375E5CA2D7D5D1FFE0F175 (CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * __this, RuntimeObject* ___tasks0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompleteOnInvokePromise__ctor_mFA5EA438CE61E8FDEB375E5CA2D7D5D1FFE0F175_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Task_1_t6E4E91059C08F359F21A42B8BFA51E8BBFA47138_il2cpp_TypeInfo_var); Task_1__ctor_m4008D170A16EFA60DD6E4D059D75FAAC9D57AD85(__this, /*hidden argument*/Task_1__ctor_m4008D170A16EFA60DD6E4D059D75FAAC9D57AD85_RuntimeMethod_var); RuntimeObject* L_0 = ___tasks0; __this->set__tasks_25(L_0); bool L_1 = AsyncCausalityTracer_get_LoggingOn_m1A633E7FCD4DF7D870FFF917FDCDBEDAF24725B7(/*hidden argument*/NULL); if (!L_1) { goto IL_0027; } } { int32_t L_2 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD(__this, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCreation_m7B5DBD272BC20E986A5120FBF6665241BBACF060(0, L_2, _stringLiteralE7C8B6C9A3407F1CFA5D484A50D6659DB304A143, (((int64_t)((int64_t)0))), /*hidden argument*/NULL); } IL_0027: { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); bool L_3 = ((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields*)il2cpp_codegen_static_fields_for(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_3) { goto IL_0035; } } { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_AddToActiveTasks_m840B00A5EE550016686305EDB927B9A7FE37C421(__this, /*hidden argument*/NULL); } IL_0035: { return; } } // System.Void System.Threading.Tasks.TaskFactory_CompleteOnInvokePromise::Invoke(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompleteOnInvokePromise_Invoke_mAA9922CF17CC5F9186EEE5672444AC40BA0ACC3A (CompleteOnInvokePromise_t5A1CFB5E935FFD61858B0F0CE081BBD8B96B1E86 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___completingTask0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompleteOnInvokePromise_Invoke_mAA9922CF17CC5F9186EEE5672444AC40BA0ACC3A_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_3 = NULL; { int32_t* L_0 = __this->get_address_of_m_firstTaskAlreadyCompleted_26(); int32_t L_1 = Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03((int32_t*)L_0, 1, 0, /*hidden argument*/NULL); if (L_1) { goto IL_0085; } } { bool L_2 = AsyncCausalityTracer_get_LoggingOn_m1A633E7FCD4DF7D870FFF917FDCDBEDAF24725B7(/*hidden argument*/NULL); if (!L_2) { goto IL_0030; } } { int32_t L_3 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD(__this, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationRelation_mA7691DAE55DF8387322376648D9CCBB54EFFC490(1, L_3, 2, /*hidden argument*/NULL); int32_t L_4 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD(__this, /*hidden argument*/NULL); AsyncCausalityTracer_TraceOperationCompletion_m63C07B707D3034D2F0F4B395636B410ACC9A78D6(0, L_4, 1, /*hidden argument*/NULL); } IL_0030: { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); bool L_5 = ((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields*)il2cpp_codegen_static_fields_for(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var))->get_s_asyncDebuggingEnabled_12(); if (!L_5) { goto IL_0042; } } { int32_t L_6 = Task_get_Id_mA2A4DA7A476AFEF6FF4B4F29BF1F98D0481E28AD(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_RemoveFromActiveTasks_mEDE131DB4C29D967D6D717CAB002C6C02583BDF5(L_6, /*hidden argument*/NULL); } IL_0042: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_7 = ___completingTask0; Task_1_TrySetResult_m8370C01E1E5614744D78DCC74E06F8FCAFDA11C8(__this, L_7, /*hidden argument*/Task_1_TrySetResult_m8370C01E1E5614744D78DCC74E06F8FCAFDA11C8_RuntimeMethod_var); RuntimeObject* L_8 = __this->get__tasks_25(); V_0 = L_8; RuntimeObject* L_9 = V_0; NullCheck(L_9); int32_t L_10 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Threading.Tasks.Task>::get_Count() */, ICollection_1_t39808D274D411213DCFE09BAE8F3041B974A1A4E_il2cpp_TypeInfo_var, L_9); V_1 = L_10; V_2 = 0; goto IL_007a; } IL_005c: { RuntimeObject* L_11 = V_0; int32_t L_12 = V_2; NullCheck(L_11); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_13 = InterfaceFuncInvoker1< Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1<System.Threading.Tasks.Task>::get_Item(System.Int32) */, IList_1_t93C6282CDBF781012E10B912A9AD946F53099551_il2cpp_TypeInfo_var, L_11, L_12); V_3 = L_13; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_14 = V_3; if (!L_14) { goto IL_0076; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_15 = V_3; NullCheck(L_15); bool L_16 = Task_get_IsCompleted_mA675F47CE1DBD1948BDC9215DCAE93F07FC32E19(L_15, /*hidden argument*/NULL); if (L_16) { goto IL_0076; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_17 = V_3; NullCheck(L_17); Task_RemoveContinuation_m09A569E89BF4CCCF31646AB74A88BCDFC093DAE4(L_17, __this, /*hidden argument*/NULL); } IL_0076: { int32_t L_18 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_007a: { int32_t L_19 = V_2; int32_t L_20 = V_1; if ((((int32_t)L_19) < ((int32_t)L_20))) { goto IL_005c; } } { __this->set__tasks_25((RuntimeObject*)NULL); } IL_0085: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Threading.Tasks.TaskScheduler::TryRunInline(System.Threading.Tasks.Task,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskScheduler_TryRunInline_m9FBFA8F615D96CC9902CA2CBC3D51BCF7444E67B (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, bool ___taskWasPreviouslyQueued1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskScheduler_TryRunInline_m9FBFA8F615D96CC9902CA2CBC3D51BCF7444E67B_MetadataUsageId); s_Il2CppMethodInitialized = true; } TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * V_0 = NULL; StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * V_1 = NULL; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = ___task0; NullCheck(L_0); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_1 = Task_get_ExecutingTaskScheduler_m3A3340F34EF9D594413E54F46B78874BCB0CA30D_inline(L_0, /*hidden argument*/NULL); V_0 = L_1; TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_2 = V_0; if ((((RuntimeObject*)(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)L_2) == ((RuntimeObject*)(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)__this))) { goto IL_0017; } } { TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_3 = V_0; if (!L_3) { goto IL_0017; } } { TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_4 = V_0; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_5 = ___task0; bool L_6 = ___taskWasPreviouslyQueued1; NullCheck(L_4); bool L_7 = TaskScheduler_TryRunInline_m9FBFA8F615D96CC9902CA2CBC3D51BCF7444E67B(L_4, L_5, L_6, /*hidden argument*/NULL); return L_7; } IL_0017: { TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_8 = V_0; if (!L_8) { goto IL_0040; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_9 = ___task0; NullCheck(L_9); RuntimeObject * L_10 = L_9->get_m_action_5(); if (!L_10) { goto IL_0040; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_11 = ___task0; NullCheck(L_11); bool L_12 = Task_get_IsDelegateInvoked_m45C6B668A20D03726083A730EFC33873B10B5735(L_11, /*hidden argument*/NULL); if (L_12) { goto IL_0040; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_13 = ___task0; NullCheck(L_13); bool L_14 = Task_get_IsCanceled_m42A47FCA2C6F33308A08C92C8489E802448F6F42(L_13, /*hidden argument*/NULL); if (L_14) { goto IL_0040; } } { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * L_15 = Task_get_CurrentStackGuard_m74FB437E43F89B8BDCB272A7257024F586421F11(/*hidden argument*/NULL); StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * L_16 = L_15; V_1 = L_16; NullCheck(L_16); bool L_17 = StackGuard_TryBeginInliningScope_mE32F6AC0F440280CD1E98D273645CD08AF844B33(L_16, /*hidden argument*/NULL); if (L_17) { goto IL_0042; } } IL_0040: { return (bool)0; } IL_0042: { V_2 = (bool)0; } IL_0044: try { // begin try (depth: 1) Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_18 = ___task0; NullCheck(L_18); Task_FireTaskScheduledIfNeeded_m6792459336CB25D967928EDA5249F2164991E447_inline(L_18, __this, /*hidden argument*/NULL); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_19 = ___task0; bool L_20 = ___taskWasPreviouslyQueued1; bool L_21 = VirtFuncInvoker2< bool, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *, bool >::Invoke(5 /* System.Boolean System.Threading.Tasks.TaskScheduler::TryExecuteTaskInline(System.Threading.Tasks.Task,System.Boolean) */, __this, L_19, L_20); V_2 = L_21; IL2CPP_LEAVE(0x5E, FINALLY_0057); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0057; } FINALLY_0057: { // begin finally (depth: 1) StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * L_22 = V_1; NullCheck(L_22); StackGuard_EndInliningScope_mEC7A78B71CB01216F0A7B0462E319234F0F05C39(L_22, /*hidden argument*/NULL); IL2CPP_END_FINALLY(87) } // end finally (depth: 1) IL2CPP_CLEANUP(87) { IL2CPP_JUMP_TBL(0x5E, IL_005e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_005e: { bool L_23 = V_2; if (!L_23) { goto IL_0081; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_24 = ___task0; NullCheck(L_24); bool L_25 = Task_get_IsDelegateInvoked_m45C6B668A20D03726083A730EFC33873B10B5735(L_24, /*hidden argument*/NULL); if (L_25) { goto IL_0081; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_26 = ___task0; NullCheck(L_26); bool L_27 = Task_get_IsCanceled_m42A47FCA2C6F33308A08C92C8489E802448F6F42(L_26, /*hidden argument*/NULL); if (L_27) { goto IL_0081; } } { String_t* L_28 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8858D34A5DF81344D5F1195DDACDFB8E8448C5E6, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_29 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_29, L_28, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, TaskScheduler_TryRunInline_m9FBFA8F615D96CC9902CA2CBC3D51BCF7444E67B_RuntimeMethod_var); } IL_0081: { bool L_30 = V_2; return L_30; } } // System.Boolean System.Threading.Tasks.TaskScheduler::TryDequeue(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskScheduler_TryDequeue_mC345958DE6521AF6A74EEFCEC8B19D3FC4BD83E1 (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Threading.Tasks.TaskScheduler::NotifyWorkItemProgress() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskScheduler_NotifyWorkItemProgress_m506178A0A8525B4CA209DCF00CAA3CDFDF6B677C (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean System.Threading.Tasks.TaskScheduler::get_RequiresAtomicStartTransition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TaskScheduler_get_RequiresAtomicStartTransition_m7EA647713F7B96548610FEB4C45F6EAE6B3A277C (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Threading.Tasks.TaskScheduler::InternalQueueTask(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskScheduler_InternalQueueTask_m08940F911E3B4987803048AC88CAE4FB803E1B30 (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, const RuntimeMethod* method) { { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = ___task0; NullCheck(L_0); Task_FireTaskScheduledIfNeeded_m6792459336CB25D967928EDA5249F2164991E447_inline(L_0, __this, /*hidden argument*/NULL); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = ___task0; VirtActionInvoker1< Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * >::Invoke(4 /* System.Void System.Threading.Tasks.TaskScheduler::QueueTask(System.Threading.Tasks.Task) */, __this, L_1); return; } } // System.Void System.Threading.Tasks.TaskScheduler::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskScheduler__ctor_mD337C4A20B49427C777B496030923E94CA7BC5EF (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskScheduler__ctor_mD337C4A20B49427C777B496030923E94CA7BC5EF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debugger_t3DB04278A3AA5DF846CC56744D05F18B7037C22E_il2cpp_TypeInfo_var); bool L_0 = Debugger_get_IsAttached_mFCFAAB7A47FA4DEC80A3A68FE13C307C439E9013(/*hidden argument*/NULL); if (!L_0) { goto IL_0013; } } { TaskScheduler_AddToActiveTaskSchedulers_m7BFCDD58D6FCD18D27017C309E8D683D642A7F06(__this, /*hidden argument*/NULL); } IL_0013: { return; } } // System.Void System.Threading.Tasks.TaskScheduler::AddToActiveTaskSchedulers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskScheduler_AddToActiveTaskSchedulers_m7BFCDD58D6FCD18D27017C309E8D683D642A7F06 (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskScheduler_AddToActiveTaskSchedulers_m7BFCDD58D6FCD18D27017C309E8D683D642A7F06_MetadataUsageId); s_Il2CppMethodInitialized = true; } ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * L_0 = ((TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields*)il2cpp_codegen_static_fields_for(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var))->get_s_activeTaskSchedulers_0(); V_0 = L_0; ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * L_1 = V_0; if (L_1) { goto IL_0020; } } { IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * L_2 = (ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C *)il2cpp_codegen_object_new(ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C_il2cpp_TypeInfo_var); ConditionalWeakTable_2__ctor_m532318C6B13DB33AB8E1A63999A30FBE81BE2FCC(L_2, /*hidden argument*/ConditionalWeakTable_2__ctor_m532318C6B13DB33AB8E1A63999A30FBE81BE2FCC_RuntimeMethod_var); InterlockedCompareExchangeImpl<ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C *>((ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C **)(((TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields*)il2cpp_codegen_static_fields_for(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var))->get_address_of_s_activeTaskSchedulers_0()), L_2, (ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C *)NULL); ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * L_3 = ((TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields*)il2cpp_codegen_static_fields_for(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var))->get_s_activeTaskSchedulers_0(); V_0 = L_3; } IL_0020: { ConditionalWeakTable_2_t9E56EEB44502999EDAA6E212D522D7863829D95C * L_4 = V_0; NullCheck(L_4); ConditionalWeakTable_2_Add_m5066B6CF71B4388CE9668A469B274DA1F1CE8267(L_4, __this, NULL, /*hidden argument*/ConditionalWeakTable_2_Add_m5066B6CF71B4388CE9668A469B274DA1F1CE8267_RuntimeMethod_var); return; } } // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskScheduler::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_0 = ((TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields*)il2cpp_codegen_static_fields_for(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var))->get_s_defaultTaskScheduler_1(); return L_0; } } // System.Threading.Tasks.TaskScheduler System.Threading.Tasks.TaskScheduler::get_InternalCurrent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * TaskScheduler_get_InternalCurrent_m792B2A13D81A8BD8A724321AFA4633B09FF1259C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskScheduler_get_InternalCurrent_m792B2A13D81A8BD8A724321AFA4633B09FF1259C_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892_inline(/*hidden argument*/NULL); V_0 = L_0; Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = V_0; if (!L_1) { goto IL_0014; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = Task_get_CreationOptions_m1013CF6F9F645BFA03F13F89DFA749ADABA541C8(L_2, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_3&(int32_t)((int32_t)16)))) { goto IL_0016; } } IL_0014: { return (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)NULL; } IL_0016: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_4 = V_0; NullCheck(L_4); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_5 = Task_get_ExecutingTaskScheduler_m3A3340F34EF9D594413E54F46B78874BCB0CA30D_inline(L_4, /*hidden argument*/NULL); return L_5; } } // System.Int32 System.Threading.Tasks.TaskScheduler::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TaskScheduler_get_Id_mF6A6B32C47D838C93694AAD06998F85B61F71DA7 (TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskScheduler_get_Id_mF6A6B32C47D838C93694AAD06998F85B61F71DA7_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = __this->get_m_taskSchedulerId_3(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_0028; } } { V_0 = 0; } IL_000c: { IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); int32_t L_1 = Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F((int32_t*)(((TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields*)il2cpp_codegen_static_fields_for(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var))->get_address_of_s_taskSchedulerIdCounter_2()), /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_000c; } } { int32_t* L_3 = __this->get_address_of_m_taskSchedulerId_3(); il2cpp_codegen_memory_barrier(); int32_t L_4 = V_0; Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03((int32_t*)L_3, L_4, 0, /*hidden argument*/NULL); } IL_0028: { int32_t L_5 = __this->get_m_taskSchedulerId_3(); il2cpp_codegen_memory_barrier(); return L_5; } } // System.Void System.Threading.Tasks.TaskScheduler::PublishUnobservedTaskException(System.Object,System.Threading.Tasks.UnobservedTaskExceptionEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskScheduler_PublishUnobservedTaskException_mA2CFE30AA160C2A0FEDAB216CEF09B86AD16ECA4 (RuntimeObject * ___sender0, UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 * ___ueea1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskScheduler_PublishUnobservedTaskException_mA2CFE30AA160C2A0FEDAB216CEF09B86AD16ECA4_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields*)il2cpp_codegen_static_fields_for(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var))->get__unobservedTaskExceptionLockObject_5(); V_0 = L_0; V_1 = (bool)0; } IL_0008: try { // begin try (depth: 1) { RuntimeObject * L_1 = V_0; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC * L_2 = ((TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields*)il2cpp_codegen_static_fields_for(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var))->get__unobservedTaskException_4(); V_2 = L_2; EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC * L_3 = V_2; if (!L_3) { goto IL_0021; } } IL_0019: { EventHandler_1_tF704D003AB4792AFE4B10D9127FF82EEC18615BC * L_4 = V_2; RuntimeObject * L_5 = ___sender0; UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 * L_6 = ___ueea1; NullCheck(L_4); EventHandler_1_Invoke_m5A2B682142BD5C458A2C93E0300172955DBBCEA6(L_4, L_5, L_6, /*hidden argument*/EventHandler_1_Invoke_m5A2B682142BD5C458A2C93E0300172955DBBCEA6_RuntimeMethod_var); } IL_0021: { IL2CPP_LEAVE(0x2D, FINALLY_0023); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0023; } FINALLY_0023: { // begin finally (depth: 1) { bool L_7 = V_1; if (!L_7) { goto IL_002c; } } IL_0026: { RuntimeObject * L_8 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_8, /*hidden argument*/NULL); } IL_002c: { IL2CPP_END_FINALLY(35) } } // end finally (depth: 1) IL2CPP_CLEANUP(35) { IL2CPP_JUMP_TBL(0x2D, IL_002d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_002d: { return; } } // System.Void System.Threading.Tasks.TaskScheduler::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskScheduler__cctor_m6A38803AE79B8830C4324685C554D545EB68C14E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskScheduler__cctor_m6A38803AE79B8830C4324685C554D545EB68C14E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD * L_0 = (ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD *)il2cpp_codegen_object_new(ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD_il2cpp_TypeInfo_var); ThreadPoolTaskScheduler__ctor_mC0B9F37DBA25F766F01EE56C8460330C3708FF1D(L_0, /*hidden argument*/NULL); ((TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields*)il2cpp_codegen_static_fields_for(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var))->set_s_defaultTaskScheduler_1(L_0); RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_1, /*hidden argument*/NULL); ((TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields*)il2cpp_codegen_static_fields_for(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var))->set__unobservedTaskExceptionLockObject_5(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation::.ctor(System.Threading.Tasks.TaskScheduler,System.Action,System.Boolean,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskSchedulerAwaitTaskContinuation__ctor_m173C68019B0FDEB8F679AED48DDD37B4DD9ED470 (TaskSchedulerAwaitTaskContinuation_t08B24138EF6D3AC7A821332F15F5A5A0F08543B6 * __this, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___scheduler0, Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___action1, bool ___flowExecutionContext2, int32_t* ___stackMark3, const RuntimeMethod* method) { { Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_0 = ___action1; bool L_1 = ___flowExecutionContext2; int32_t* L_2 = ___stackMark3; AwaitTaskContinuation__ctor_mBEDA16F5D33081AF421A009449B3A1D2B0A0121A(__this, L_0, L_1, (int32_t*)L_2, /*hidden argument*/NULL); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_3 = ___scheduler0; __this->set_m_scheduler_3(L_3); return; } } // System.Void System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation::Run(System.Threading.Tasks.Task,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskSchedulerAwaitTaskContinuation_Run_m12898EF0B89FD0CA5D26DC91995257B334E937BA (TaskSchedulerAwaitTaskContinuation_t08B24138EF6D3AC7A821332F15F5A5A0F08543B6 * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___ignored0, bool ___canInlineContinuationTask1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskSchedulerAwaitTaskContinuation_Run_m12898EF0B89FD0CA5D26DC91995257B334E937BA_MetadataUsageId); s_Il2CppMethodInitialized = true; } Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B7_0 = 0; Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * G_B9_0 = NULL; TaskSchedulerAwaitTaskContinuation_t08B24138EF6D3AC7A821332F15F5A5A0F08543B6 * G_B9_1 = NULL; int32_t G_B9_2 = 0; Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * G_B8_0 = NULL; TaskSchedulerAwaitTaskContinuation_t08B24138EF6D3AC7A821332F15F5A5A0F08543B6 * G_B8_1 = NULL; int32_t G_B8_2 = 0; { TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_0 = __this->get_m_scheduler_3(); IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_1 = TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87_inline(/*hidden argument*/NULL); if ((!(((RuntimeObject*)(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)L_0) == ((RuntimeObject*)(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)L_1)))) { goto IL_0016; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_2 = ___ignored0; bool L_3 = ___canInlineContinuationTask1; AwaitTaskContinuation_Run_mFF38B07062EFB3E2CD42AAB929B2902BB1FFBBC2(__this, L_2, L_3, /*hidden argument*/NULL); return; } IL_0016: { bool L_4 = ___canInlineContinuationTask1; if (!L_4) { goto IL_0035; } } { IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_5 = TaskScheduler_get_InternalCurrent_m792B2A13D81A8BD8A724321AFA4633B09FF1259C(/*hidden argument*/NULL); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_6 = __this->get_m_scheduler_3(); if ((((RuntimeObject*)(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)L_5) == ((RuntimeObject*)(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 *)L_6))) { goto IL_0032; } } { Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_7 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL); NullCheck(L_7); bool L_8 = Thread_get_IsThreadPoolThread_m3CF4788DEF7D552D12D5E54E10CF1BD0F763ED55(L_7, /*hidden argument*/NULL); G_B7_0 = ((int32_t)(L_8)); goto IL_0036; } IL_0032: { G_B7_0 = 1; goto IL_0036; } IL_0035: { G_B7_0 = 0; } IL_0036: { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_il2cpp_TypeInfo_var); Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_9 = ((U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_il2cpp_TypeInfo_var))->get_U3CU3E9__2_0_1(); Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_10 = L_9; G_B8_0 = L_10; G_B8_1 = __this; G_B8_2 = G_B7_0; if (L_10) { G_B9_0 = L_10; G_B9_1 = __this; G_B9_2 = G_B7_0; goto IL_0056; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_il2cpp_TypeInfo_var); U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439 * L_11 = ((U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_12 = (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)il2cpp_codegen_object_new(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0_il2cpp_TypeInfo_var); Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510(L_12, L_11, (intptr_t)((intptr_t)U3CU3Ec_U3CRunU3Eb__2_0_m09230CC3C4A5FF796AD9270851A6F374D8FC23BE_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mAFC7442D9D3CEC6701C3C5599F8CF12476095510_RuntimeMethod_var); Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_13 = L_12; ((U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_il2cpp_TypeInfo_var))->set_U3CU3E9__2_0_1(L_13); G_B9_0 = L_13; G_B9_1 = G_B8_1; G_B9_2 = G_B8_2; } IL_0056: { Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_14 = ((AwaitTaskContinuation_t883E8FB9C34A1024B54F2D4A9CCBA21CC595286F *)__this)->get_m_action_1(); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_15 = __this->get_m_scheduler_3(); NullCheck(G_B9_1); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_16 = AwaitTaskContinuation_CreateTask_m0C24724576818E738998F3EB48C8DAE22EBA2889(G_B9_1, G_B9_0, L_14, L_15, /*hidden argument*/NULL); V_0 = L_16; if (!G_B9_2) { goto IL_0072; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_17 = V_0; TaskContinuation_InlineIfPossibleOrElseQueue_m7CCFD190C3F783A343C1103BF27BFE4D19C66FEF(L_17, (bool)0, /*hidden argument*/NULL); return; } IL_0072: { } IL_0073: try { // begin try (depth: 1) Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_18 = V_0; NullCheck(L_18); Task_ScheduleAndStart_m7A3334C89BD4B47370D0A3CAE575EA54CCA01AEF(L_18, (bool)0, /*hidden argument*/NULL); goto IL_007f; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_007c; throw e; } CATCH_007c: { // begin catch(System.Threading.Tasks.TaskSchedulerException) goto IL_007f; } // end catch (depth: 1) IL_007f: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation_<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m14A2B19DAD1F9934C7714F31E34E70544869F269 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m14A2B19DAD1F9934C7714F31E34E70544869F269_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439 * L_0 = (U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439 *)il2cpp_codegen_object_new(U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_il2cpp_TypeInfo_var); U3CU3Ec__ctor_m7385A27A6BD7D377F64C862AEAC9F9D6DDE64CA8(L_0, /*hidden argument*/NULL); ((U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation_<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m7385A27A6BD7D377F64C862AEAC9F9D6DDE64CA8 (U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation_<>c::<Run>b__2_0(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CRunU3Eb__2_0_m09230CC3C4A5FF796AD9270851A6F374D8FC23BE (U3CU3Ec_t596A8131DC5C38096B959F07E58C349AAAFE3439 * __this, RuntimeObject * ___state0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec_U3CRunU3Eb__2_0_m09230CC3C4A5FF796AD9270851A6F374D8FC23BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) RuntimeObject * L_0 = ___state0; NullCheck(((Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)CastclassSealed((RuntimeObject*)L_0, Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var))); Action_Invoke_mC8D676E5DDF967EC5D23DD0E96FB52AA499817FD(((Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)CastclassSealed((RuntimeObject*)L_0, Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); goto IL_0014; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_000d; throw e; } CATCH_000d: { // begin catch(System.Exception) AwaitTaskContinuation_ThrowAsyncIfNecessary_mD1B7B962FF8ED8EC2F105A42998347BDF99FED05(((Exception_t *)__exception_local), /*hidden argument*/NULL); goto IL_0014; } // end catch (depth: 1) IL_0014: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.TaskSchedulerException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskSchedulerException__ctor_m63156F8498549786866AEA93F820A250BE5B691E (TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskSchedulerException__ctor_m63156F8498549786866AEA93F820A250BE5B691E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralA2FE0B065EA50F6641CB120F487D334AC723A859, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.TaskSchedulerException::.ctor(System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskSchedulerException__ctor_mFFF7423FCD3DFC4F8A6F7E6028AE6CB1D5865F63 (TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24 * __this, Exception_t * ___innerException0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskSchedulerException__ctor_mFFF7423FCD3DFC4F8A6F7E6028AE6CB1D5865F63_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralA2FE0B065EA50F6641CB120F487D334AC723A859, /*hidden argument*/NULL); Exception_t * L_1 = ___innerException0; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.TaskSchedulerException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskSchedulerException__ctor_m54DE71B0C4FFC10BE930F776BE82782F4384D469 (TaskSchedulerException_tE0888B47136E7B61EAF20A145EF053023F8C7B24 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskSchedulerException__ctor_m54DE71B0C4FFC10BE930F776BE82782F4384D469_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.ThreadPoolTaskScheduler::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolTaskScheduler__ctor_mC0B9F37DBA25F766F01EE56C8460330C3708FF1D (ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolTaskScheduler__ctor_mC0B9F37DBA25F766F01EE56C8460330C3708FF1D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); TaskScheduler__ctor_mD337C4A20B49427C777B496030923E94CA7BC5EF(__this, /*hidden argument*/NULL); TaskScheduler_get_Id_mF6A6B32C47D838C93694AAD06998F85B61F71DA7(__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.ThreadPoolTaskScheduler::LongRunningThreadWork(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolTaskScheduler_LongRunningThreadWork_m961ED397785555AF2C24A4C8723246BA355CE21D (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolTaskScheduler_LongRunningThreadWork_m961ED397785555AF2C24A4C8723246BA355CE21D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; NullCheck(((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)IsInstClass((RuntimeObject*)L_0, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var))); Task_ExecuteEntry_mA04E6FA3370CA2AB19B6AB209E44E993B14621F1(((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 *)IsInstClass((RuntimeObject*)L_0, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var)), (bool)0, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Tasks.ThreadPoolTaskScheduler::QueueTask(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolTaskScheduler_QueueTask_mE9B3A295B7D2E31848AF3DECA7A89CC814F3F20A (ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolTaskScheduler_QueueTask_mE9B3A295B7D2E31848AF3DECA7A89CC814F3F20A_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = ___task0; NullCheck(L_0); int32_t L_1 = Task_get_Options_mFCA12B2A5EFA9C47CD82DC7017B770F26B7C512A(L_0, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_1&(int32_t)2))) { goto IL_0022; } } { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD_il2cpp_TypeInfo_var); ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * L_2 = ((ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD_il2cpp_TypeInfo_var))->get_s_longRunningThreadWork_6(); Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_3 = (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 *)il2cpp_codegen_object_new(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_il2cpp_TypeInfo_var); Thread__ctor_m10768310462BE1A521AB4BB70F483741C993ADFD(L_3, L_2, /*hidden argument*/NULL); Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_4 = L_3; NullCheck(L_4); Thread_set_IsBackground_mF62551A195DCB09D44E512F52916145E39362D39(L_4, (bool)1, /*hidden argument*/NULL); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_5 = ___task0; NullCheck(L_4); Thread_Start_m3D27E6E9735ED3B6BF2CD332B8D90E7E8CE21933(L_4, L_5, /*hidden argument*/NULL); return; } IL_0022: { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_6 = ___task0; NullCheck(L_6); int32_t L_7 = Task_get_Options_mFCA12B2A5EFA9C47CD82DC7017B770F26B7C512A(L_6, /*hidden argument*/NULL); V_0 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_7&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_8 = ___task0; bool L_9 = V_0; ThreadPool_UnsafeQueueCustomWorkItem_m6FAFD01CC75C06858788F29C2430A4CB85E13568(L_8, L_9, /*hidden argument*/NULL); return; } } // System.Boolean System.Threading.Tasks.ThreadPoolTaskScheduler::TryExecuteTaskInline(System.Threading.Tasks.Task,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPoolTaskScheduler_TryExecuteTaskInline_m1C5D63C98E1736A378030295A07D2DF097B5B376 (ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, bool ___taskWasPreviouslyQueued1, const RuntimeMethod* method) { bool V_0 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { bool L_0 = ___taskWasPreviouslyQueued1; if (!L_0) { goto IL_000d; } } { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_1 = ___task0; bool L_2 = ThreadPool_TryPopCustomWorkItem_mCECECEF31175E5AF82E059137F190C0088897A4A(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_000d; } } { return (bool)0; } IL_000d: { V_0 = (bool)0; } IL_000f: try { // begin try (depth: 1) Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_3 = ___task0; NullCheck(L_3); bool L_4 = Task_ExecuteEntry_mA04E6FA3370CA2AB19B6AB209E44E993B14621F1(L_3, (bool)0, /*hidden argument*/NULL); V_0 = L_4; IL2CPP_LEAVE(0x23, FINALLY_0019); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0019; } FINALLY_0019: { // begin finally (depth: 1) { bool L_5 = ___taskWasPreviouslyQueued1; if (!L_5) { goto IL_0022; } } IL_001c: { VirtActionInvoker0::Invoke(7 /* System.Void System.Threading.Tasks.TaskScheduler::NotifyWorkItemProgress() */, __this); } IL_0022: { IL2CPP_END_FINALLY(25) } } // end finally (depth: 1) IL2CPP_CLEANUP(25) { IL2CPP_JUMP_TBL(0x23, IL_0023) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0023: { bool L_6 = V_0; return L_6; } } // System.Boolean System.Threading.Tasks.ThreadPoolTaskScheduler::TryDequeue(System.Threading.Tasks.Task) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPoolTaskScheduler_TryDequeue_mB6EFEE0952C802BA6C48DA6F3260AFF9B1732483 (ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD * __this, Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___task0, const RuntimeMethod* method) { { Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = ___task0; bool L_1 = ThreadPool_TryPopCustomWorkItem_mCECECEF31175E5AF82E059137F190C0088897A4A(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Threading.Tasks.ThreadPoolTaskScheduler::NotifyWorkItemProgress() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolTaskScheduler_NotifyWorkItemProgress_mDA29D3C763A19CA46096B1A4211CE72B6BA2ECF5 (ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD * __this, const RuntimeMethod* method) { { ThreadPool_NotifyWorkItemProgress_mD041D082A87EAE7A34E6AE21CB7AF8819422B40A(/*hidden argument*/NULL); return; } } // System.Boolean System.Threading.Tasks.ThreadPoolTaskScheduler::get_RequiresAtomicStartTransition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPoolTaskScheduler_get_RequiresAtomicStartTransition_mFE4B45D3646489E6819079FC9D7B5F80B0659F31 (ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Threading.Tasks.ThreadPoolTaskScheduler::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolTaskScheduler__cctor_mC425D1140B5A638568A6350B38102E68BFFE263B (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolTaskScheduler__cctor_mC425D1140B5A638568A6350B38102E68BFFE263B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * L_0 = (ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F *)il2cpp_codegen_object_new(ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F_il2cpp_TypeInfo_var); ParameterizedThreadStart__ctor_m236F11FFFC55CB6AC611B16302E2F5F58C60346B(L_0, NULL, (intptr_t)((intptr_t)ThreadPoolTaskScheduler_LongRunningThreadWork_m961ED397785555AF2C24A4C8723246BA355CE21D_RuntimeMethod_var), /*hidden argument*/NULL); ((ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolTaskScheduler_t881DB3BB8EFB9D969F86C70D01288AF7CE5F8CAD_il2cpp_TypeInfo_var))->set_s_longRunningThreadWork_6(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Tasks.UnobservedTaskExceptionEventArgs::.ctor(System.AggregateException) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnobservedTaskExceptionEventArgs__ctor_mD866CEFA881E8B9F5C7FB00C62B3575E97BFEED3 (UnobservedTaskExceptionEventArgs_tFE11214527E226372281384AC73C2B792170A3B7 * __this, AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * ___exception0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnobservedTaskExceptionEventArgs__ctor_mD866CEFA881E8B9F5C7FB00C62B3575E97BFEED3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var); EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL); AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * L_0 = ___exception0; __this->set_m_exception_1(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Thread::.ctor(System.Threading.ThreadStart) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread__ctor_m36A33B990160C4499E991D288341CA325AE66DDD (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * ___start0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread__ctor_m36A33B990160C4499E991D288341CA325AE66DDD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { CriticalFinalizerObject__ctor_m99FA3656B2AAC4F7E53A8BFE9E361E7C1F8867C5(__this, /*hidden argument*/NULL); ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * L_0 = ___start0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral2B020927D3C6EB407223A1BAA3D6CE3597A3F88D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Thread__ctor_m36A33B990160C4499E991D288341CA325AE66DDD_RuntimeMethod_var); } IL_0014: { ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * L_2 = ___start0; Thread_SetStartHelper_mA0ABB42BEDC02848CDF5378338F32B71493E5DD4(__this, L_2, 0, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Thread::.ctor(System.Threading.ParameterizedThreadStart) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread__ctor_m10768310462BE1A521AB4BB70F483741C993ADFD (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * ___start0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread__ctor_m10768310462BE1A521AB4BB70F483741C993ADFD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { CriticalFinalizerObject__ctor_m99FA3656B2AAC4F7E53A8BFE9E361E7C1F8867C5(__this, /*hidden argument*/NULL); ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * L_0 = ___start0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral2B020927D3C6EB407223A1BAA3D6CE3597A3F88D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Thread__ctor_m10768310462BE1A521AB4BB70F483741C993ADFD_RuntimeMethod_var); } IL_0014: { ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * L_2 = ___start0; Thread_SetStartHelper_mA0ABB42BEDC02848CDF5378338F32B71493E5DD4(__this, L_2, 0, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Thread::Start() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Thread_Start_mE2AC4744AFD147FDC84E8D9317B4E3AB890BC2D6 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 1; Thread_Start_mFA3CA96DB8FDA3248DF49692ADE09BBD1B894830(__this, (int32_t*)(&V_0), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Thread::Start(System.Object) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Thread_Start_m3D27E6E9735ED3B6BF2CD332B8D90E7E8CE21933 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, RuntimeObject * ___parameter0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread_Start_m3D27E6E9735ED3B6BF2CD332B8D90E7E8CE21933_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { MulticastDelegate_t * L_0 = __this->get_m_Delegate_12(); if (!((ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF *)IsInstSealed((RuntimeObject*)L_0, ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF_il2cpp_TypeInfo_var))) { goto IL_001d; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral61AD634E557CA4E72090257EF5F68EA067B4226A, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Thread_Start_m3D27E6E9735ED3B6BF2CD332B8D90E7E8CE21933_RuntimeMethod_var); } IL_001d: { RuntimeObject * L_3 = ___parameter0; __this->set_m_ThreadStartArg_7(L_3); V_0 = 1; Thread_Start_mFA3CA96DB8FDA3248DF49692ADE09BBD1B894830(__this, (int32_t*)(&V_0), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Thread::Start(System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Start_mFA3CA96DB8FDA3248DF49692ADE09BBD1B894830 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, int32_t* ___stackMark0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread_Start_mFA3CA96DB8FDA3248DF49692ADE09BBD1B894830_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * V_1 = NULL; { MulticastDelegate_t * L_0 = __this->get_m_Delegate_12(); if (!L_0) { goto IL_0026; } } { MulticastDelegate_t * L_1 = __this->get_m_Delegate_12(); NullCheck(L_1); RuntimeObject * L_2 = Delegate_get_Target_m5371341CE435E001E9FD407AE78F728824CE20E2_inline(L_1, /*hidden argument*/NULL); int32_t* L_3 = ___stackMark0; IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var); ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_4 = ExecutionContext_Capture_m03E9840F580CC8E82725D5969D6132B0ABADD5F2((int32_t*)L_3, 1, /*hidden argument*/NULL); V_1 = L_4; ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_5 = V_1; NullCheck(((ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 *)CastclassClass((RuntimeObject*)L_2, ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_il2cpp_TypeInfo_var))); ThreadHelper_SetExecutionContextHelper_m253F9206E5C01BE9A6BC3ED65106B5C2DB7240FF_inline(((ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 *)CastclassClass((RuntimeObject*)L_2, ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_il2cpp_TypeInfo_var)), L_5, /*hidden argument*/NULL); } IL_0026: { V_0 = (RuntimeObject*)NULL; RuntimeObject* L_6 = V_0; int32_t* L_7 = ___stackMark0; Thread_StartInternal_mA1F40AE1915B601089920427BCD391C814D624E0(__this, L_6, (int32_t*)L_7, /*hidden argument*/NULL); return; } } // System.Threading.ExecutionContext_Reader System.Threading.Thread::GetExecutionContextReader() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B Thread_GetExecutionContextReader_m94A554E99BC4602CE1703DFBA4C96373208D1A4B (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_0 = __this->get_m_ExecutionContext_13(); Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B L_1; memset((&L_1), 0, sizeof(L_1)); Reader__ctor_mDB8E37FABE15D47E2E78E77EA6702D0FBAB8FC5E_inline((&L_1), L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Threading.Thread::get_ExecutionContextBelongsToCurrentScope() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Thread_get_ExecutionContextBelongsToCurrentScope_m0F37C83CC64B2AB00FC01FBC704D161DDE18766A (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_m_ExecutionContextBelongsToOuterScope_14(); return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); } } // System.Void System.Threading.Thread::set_ExecutionContextBelongsToCurrentScope(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_set_ExecutionContextBelongsToCurrentScope_mD8B987510AE88BD907A27ACC54F4022A04FB30C2 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_m_ExecutionContextBelongsToOuterScope_14((bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0)); return; } } // System.Threading.ExecutionContext System.Threading.Thread::GetMutableExecutionContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * Thread_GetMutableExecutionContext_mD22CBCEAD2B95B779612C42D8B634B8B5163BA72 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread_GetMutableExecutionContext_mD22CBCEAD2B95B779612C42D8B634B8B5163BA72_MetadataUsageId); s_Il2CppMethodInitialized = true; } ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * V_0 = NULL; { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_0 = __this->get_m_ExecutionContext_13(); if (L_0) { goto IL_0015; } } { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_1 = (ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 *)il2cpp_codegen_object_new(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var); ExecutionContext__ctor_m60AAAF7CF4BF6DB4192982A1822C4379355DAC64(L_1, /*hidden argument*/NULL); __this->set_m_ExecutionContext_13(L_1); goto IL_0030; } IL_0015: { bool L_2 = Thread_get_ExecutionContextBelongsToCurrentScope_m0F37C83CC64B2AB00FC01FBC704D161DDE18766A(__this, /*hidden argument*/NULL); if (L_2) { goto IL_0030; } } { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_3 = __this->get_m_ExecutionContext_13(); NullCheck(L_3); ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_4 = ExecutionContext_CreateMutableCopy_mA3CD86A88C02101A1E6F33D0111FBE1DD926238F(L_3, /*hidden argument*/NULL); V_0 = L_4; ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_5 = V_0; __this->set_m_ExecutionContext_13(L_5); } IL_0030: { Thread_set_ExecutionContextBelongsToCurrentScope_mD8B987510AE88BD907A27ACC54F4022A04FB30C2(__this, (bool)1, /*hidden argument*/NULL); ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_6 = __this->get_m_ExecutionContext_13(); return L_6; } } // System.Void System.Threading.Thread::SetExecutionContext(System.Threading.ExecutionContext,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SetExecutionContext_m1728EF01137D3CD57C6C59DB07A6314D9A1341AA (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___value0, bool ___belongsToCurrentScope1, const RuntimeMethod* method) { { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_0 = ___value0; __this->set_m_ExecutionContext_13(L_0); bool L_1 = ___belongsToCurrentScope1; Thread_set_ExecutionContextBelongsToCurrentScope_mD8B987510AE88BD907A27ACC54F4022A04FB30C2(__this, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Thread::SetExecutionContext(System.Threading.ExecutionContext_Reader,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SetExecutionContext_m5EEA0CB200E2C224E4B72C1A17BEF16E566D8926 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B ___value0, bool ___belongsToCurrentScope1, const RuntimeMethod* method) { { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_0 = Reader_DangerousGetRawExecutionContext_m0AAF58869F7AC7C33242B7C6A6ABFA2EF5100EBA_inline((Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B *)(&___value0), /*hidden argument*/NULL); __this->set_m_ExecutionContext_13(L_0); bool L_1 = ___belongsToCurrentScope1; Thread_set_ExecutionContextBelongsToCurrentScope_mD8B987510AE88BD907A27ACC54F4022A04FB30C2(__this, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Thread::SleepInternal(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SleepInternal_m69943350F67E5C693262A6278FB7A835AE1942CE (int32_t ___millisecondsTimeout0, const RuntimeMethod* method) { typedef void (*Thread_SleepInternal_m69943350F67E5C693262A6278FB7A835AE1942CE_ftn) (int32_t); using namespace il2cpp::icalls; ((Thread_SleepInternal_m69943350F67E5C693262A6278FB7A835AE1942CE_ftn)mscorlib::System::Threading::Thread::SleepInternal) (___millisecondsTimeout0); } // System.Void System.Threading.Thread::Sleep(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Sleep_m2CD320EAB7BE02CC1F395EAFE9970D53A5F9EAEF (int32_t ___millisecondsTimeout0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread_Sleep_m2CD320EAB7BE02CC1F395EAFE9970D53A5F9EAEF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___millisecondsTimeout0; if ((((int32_t)L_0) >= ((int32_t)(-1)))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1B8A0FD63D1D605E82838E8FBA940C1207478A60, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral9D9BED981884AC3D4D16BF22ED725A5686CEF15B, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Thread_Sleep_m2CD320EAB7BE02CC1F395EAFE9970D53A5F9EAEF_RuntimeMethod_var); } IL_0019: { int32_t L_3 = ___millisecondsTimeout0; Thread_SleepInternal_m69943350F67E5C693262A6278FB7A835AE1942CE(L_3, /*hidden argument*/NULL); return; } } // System.Boolean System.Threading.Thread::YieldInternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Thread_YieldInternal_mA0081B312A19ECA8D0A7E49DD9DF8AF5A0C7F851 (const RuntimeMethod* method) { typedef bool (*Thread_YieldInternal_mA0081B312A19ECA8D0A7E49DD9DF8AF5A0C7F851_ftn) (); using namespace il2cpp::icalls; return ((Thread_YieldInternal_mA0081B312A19ECA8D0A7E49DD9DF8AF5A0C7F851_ftn)mscorlib::System::Threading::Thread::YieldInternal) (); } // System.Boolean System.Threading.Thread::Yield() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Thread_Yield_m04E310FE49602AEB72AE630E371CFAC36AAA718B (const RuntimeMethod* method) { { bool L_0 = Thread_YieldInternal_mA0081B312A19ECA8D0A7E49DD9DF8AF5A0C7F851(/*hidden argument*/NULL); return L_0; } } // System.Void System.Threading.Thread::SetStartHelper(System.Delegate,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SetStartHelper_mA0ABB42BEDC02848CDF5378338F32B71493E5DD4 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, Delegate_t * ___start0, int32_t ___maxStackSize1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread_SetStartHelper_mA0ABB42BEDC02848CDF5378338F32B71493E5DD4_MetadataUsageId); s_Il2CppMethodInitialized = true; } ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * V_0 = NULL; { int32_t L_0 = ___maxStackSize1; int32_t L_1 = Thread_GetProcessDefaultStackSize_m876EFB49B410ED044DBFA47B7EE2D4F16D7731EC(L_0, /*hidden argument*/NULL); ___maxStackSize1 = L_1; Delegate_t * L_2 = ___start0; ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * L_3 = (ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 *)il2cpp_codegen_object_new(ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_il2cpp_TypeInfo_var); ThreadHelper__ctor_m8262A0EF0381251FDDFA4696B84F68AF3A01411B(L_3, L_2, /*hidden argument*/NULL); V_0 = L_3; Delegate_t * L_4 = ___start0; if (!((ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF *)IsInstSealed((RuntimeObject*)L_4, ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF_il2cpp_TypeInfo_var))) { goto IL_002b; } } { ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * L_5 = V_0; ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * L_6 = (ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF *)il2cpp_codegen_object_new(ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF_il2cpp_TypeInfo_var); ThreadStart__ctor_m692348FEAEBAF381D62984EE95B217CC024A77D5(L_6, L_5, (intptr_t)((intptr_t)ThreadHelper_ThreadStart_m8CB657ADE8F96ED7949120D441D40F2A23EECBD2_RuntimeMethod_var), /*hidden argument*/NULL); int32_t L_7 = ___maxStackSize1; Thread_SetStart_m22F9A89D5768A9EF04A85F3FA4E8090CE2667FFE(__this, L_6, L_7, /*hidden argument*/NULL); return; } IL_002b: { ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * L_8 = V_0; ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F * L_9 = (ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F *)il2cpp_codegen_object_new(ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F_il2cpp_TypeInfo_var); ParameterizedThreadStart__ctor_m236F11FFFC55CB6AC611B16302E2F5F58C60346B(L_9, L_8, (intptr_t)((intptr_t)ThreadHelper_ThreadStart_m21D0954583D43BCACDABE0E2ABB694FC4A0D43A3_RuntimeMethod_var), /*hidden argument*/NULL); int32_t L_10 = ___maxStackSize1; Thread_SetStart_m22F9A89D5768A9EF04A85F3FA4E8090CE2667FFE(__this, L_9, L_10, /*hidden argument*/NULL); return; } } // System.Globalization.CultureInfo System.Threading.Thread::get_CurrentUICulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * Thread_get_CurrentUICulture_m7D91997747DB8A3780F0305A337D5389DB58194F (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = Thread_GetCurrentUICultureNoAppX_m3443520354B118E074F79BF5D5BDBB5B6E31B5AB(__this, /*hidden argument*/NULL); return L_0; } } // System.Globalization.CultureInfo System.Threading.Thread::GetCurrentUICultureNoAppX() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * Thread_GetCurrentUICultureNoAppX_m3443520354B118E074F79BF5D5BDBB5B6E31B5AB (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread_GetCurrentUICultureNoAppX_m3443520354B118E074F79BF5D5BDBB5B6E31B5AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * V_0 = NULL; { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ((Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_il2cpp_TypeInfo_var))->get_m_CurrentUICulture_3(); if (L_0) { goto IL_0018; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_DefaultThreadCurrentUICulture_mEB6BC8E5CB2D0BBBB6B7AD860E55683284CCAF3B(/*hidden argument*/NULL); V_0 = L_1; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = V_0; if (L_2) { goto IL_0016; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = CultureInfo_get_UserDefaultUICulture_m65D62A67F22DFB25EDD7E629AC3381824704DE40(/*hidden argument*/NULL); return L_3; } IL_0016: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = V_0; return L_4; } IL_0018: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = ((Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_il2cpp_TypeInfo_var))->get_m_CurrentUICulture_3(); return L_5; } } // System.Globalization.CultureInfo System.Threading.Thread::get_CurrentCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * Thread_get_CurrentCulture_m97A15448A16FB3B5EC1E21A0538C9FC1F84AEE66 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = Thread_GetCurrentCultureNoAppX_mCD2B90A28EFEFFDB4B5855B71ADF1337C6E36843(__this, /*hidden argument*/NULL); return L_0; } } // System.Globalization.CultureInfo System.Threading.Thread::GetCurrentCultureNoAppX() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * Thread_GetCurrentCultureNoAppX_mCD2B90A28EFEFFDB4B5855B71ADF1337C6E36843 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread_GetCurrentCultureNoAppX_mCD2B90A28EFEFFDB4B5855B71ADF1337C6E36843_MetadataUsageId); s_Il2CppMethodInitialized = true; } CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * V_0 = NULL; { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ((Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_il2cpp_TypeInfo_var))->get_m_CurrentCulture_2(); if (L_0) { goto IL_0018; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_DefaultThreadCurrentCulture_mCC52FEEF31992F66C3A74D4566C1CB2C6D2CE581(/*hidden argument*/NULL); V_0 = L_1; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = V_0; if (L_2) { goto IL_0016; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_3 = CultureInfo_get_UserDefaultCulture_m1057FA0B6C68E6EE22B119A3FA7F6678151CEBEB(/*hidden argument*/NULL); return L_3; } IL_0016: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_4 = V_0; return L_4; } IL_0018: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_5 = ((Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_il2cpp_TypeInfo_var))->get_m_CurrentCulture_2(); return L_5; } } // System.Void System.Threading.Thread::MemoryBarrier() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_MemoryBarrier_mAB9F6B8404ACCE0D17BEDBD656782FEDDBC9FB8A (const RuntimeMethod* method) { typedef void (*Thread_MemoryBarrier_mAB9F6B8404ACCE0D17BEDBD656782FEDDBC9FB8A_ftn) (); using namespace il2cpp::icalls; ((Thread_MemoryBarrier_mAB9F6B8404ACCE0D17BEDBD656782FEDDBC9FB8A_ftn)mscorlib::System::Threading::Thread::MemoryBarrier_) (); } // System.Void System.Threading.Thread::ConstructInternalThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_ConstructInternalThread_mC11ABFE9172C63CDFD66A11AFB82B9EA2DE8FE33 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { typedef void (*Thread_ConstructInternalThread_mC11ABFE9172C63CDFD66A11AFB82B9EA2DE8FE33_ftn) (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 *); using namespace il2cpp::icalls; ((Thread_ConstructInternalThread_mC11ABFE9172C63CDFD66A11AFB82B9EA2DE8FE33_ftn)mscorlib::System::Threading::Thread::ConstructInternalThread) (__this); } // System.Threading.InternalThread System.Threading.Thread::get_Internal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { { InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_0 = __this->get_internal_thread_6(); if (L_0) { goto IL_000e; } } { Thread_ConstructInternalThread_mC11ABFE9172C63CDFD66A11AFB82B9EA2DE8FE33(__this, /*hidden argument*/NULL); } IL_000e: { InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_1 = __this->get_internal_thread_6(); return L_1; } } // System.Runtime.Remoting.Contexts.Context System.Threading.Thread::get_CurrentContext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44 (const RuntimeMethod* method) { { Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = AppDomain_InternalGetContext_mAA54924C2DC3349E29D79D76403F803BD966031F(/*hidden argument*/NULL); return L_0; } } // System.Threading.Thread System.Threading.Thread::GetCurrentThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * Thread_GetCurrentThread_m7CFEF67B239579F733823B39EC3D56F77E96BC0E (const RuntimeMethod* method) { typedef Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * (*Thread_GetCurrentThread_m7CFEF67B239579F733823B39EC3D56F77E96BC0E_ftn) (); using namespace il2cpp::icalls; return ((Thread_GetCurrentThread_m7CFEF67B239579F733823B39EC3D56F77E96BC0E_ftn)mscorlib::System::Threading::Thread::GetCurrentThread) (); } // System.Threading.Thread System.Threading.Thread::get_CurrentThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E_MetadataUsageId); s_Il2CppMethodInitialized = true; } Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * V_0 = NULL; { Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_0 = ((Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_il2cpp_TypeInfo_var))->get_current_thread_11(); V_0 = L_0; Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_1 = V_0; if (!L_1) { goto IL_000b; } } { Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_2 = V_0; return L_2; } IL_000b: { Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_3 = Thread_GetCurrentThread_m7CFEF67B239579F733823B39EC3D56F77E96BC0E(/*hidden argument*/NULL); return L_3; } } // System.Int32 System.Threading.Thread::get_CurrentThreadId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_get_CurrentThreadId_m4E5AF50F663EA2F6891B44EABD11D9B05C75CF4F (const RuntimeMethod* method) { { Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_0 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL); NullCheck(L_0); InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_1 = L_0->get_internal_thread_6(); NullCheck(L_1); int64_t L_2 = L_1->get_thread_id_9(); return (((int32_t)((int32_t)L_2))); } } // System.Int32 System.Threading.Thread::GetDomainID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_GetDomainID_m7C6DEB9A3289C82B0B17F7234DCA9D2677731547 (const RuntimeMethod* method) { typedef int32_t (*Thread_GetDomainID_m7C6DEB9A3289C82B0B17F7234DCA9D2677731547_ftn) (); using namespace il2cpp::icalls; return ((Thread_GetDomainID_m7C6DEB9A3289C82B0B17F7234DCA9D2677731547_ftn)mscorlib::System::Threading::Thread::GetDomainID) (); } // System.IntPtr System.Threading.Thread::Thread_internal(System.MulticastDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Thread_Thread_internal_m43DFA96F34ADF78F99F0F24267EC34A8E7A57849 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, MulticastDelegate_t * ___start0, const RuntimeMethod* method) { typedef intptr_t (*Thread_Thread_internal_m43DFA96F34ADF78F99F0F24267EC34A8E7A57849_ftn) (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 *, MulticastDelegate_t *); using namespace il2cpp::icalls; return ((Thread_Thread_internal_m43DFA96F34ADF78F99F0F24267EC34A8E7A57849_ftn)mscorlib::System::Threading::Thread::Thread_internal) (__this, ___start0); } // System.Void System.Threading.Thread::Finalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Finalize_m919EB0391B111DAC087F3DC2A7248E8740C5CFAB (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) IL2CPP_LEAVE(0x9, FINALLY_0002); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0002; } FINALLY_0002: { // begin finally (depth: 1) CriticalFinalizerObject_Finalize_m36B07F0B4F395452E3EFB45EF4887C763388AFA7(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(2) } // end finally (depth: 1) IL2CPP_CLEANUP(2) { IL2CPP_JUMP_TBL(0x9, IL_0009) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0009: { return; } } // System.Boolean System.Threading.Thread::get_IsThreadPoolThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Thread_get_IsThreadPoolThread_m3CF4788DEF7D552D12D5E54E10CF1BD0F763ED55 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { { bool L_0 = Thread_get_IsThreadPoolThreadInternal_m909FDD574165BF8D5D02D414E2F55D44299F95AC(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Threading.Thread::get_IsThreadPoolThreadInternal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Thread_get_IsThreadPoolThreadInternal_m909FDD574165BF8D5D02D414E2F55D44299F95AC (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { { InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_0 = Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225(__this, /*hidden argument*/NULL); NullCheck(L_0); bool L_1 = L_0->get_threadpool_thread_20(); return L_1; } } // System.Void System.Threading.Thread::set_IsBackground(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_set_IsBackground_mF62551A195DCB09D44E512F52916145E39362D39 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, bool ___value0, const RuntimeMethod* method) { { Thread_ValidateThreadState_mEBF62A50922AE3BABE5C6603386D5370DEA385F3(__this, /*hidden argument*/NULL); bool L_0 = ___value0; if (!L_0) { goto IL_0017; } } { InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_1 = Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225(__this, /*hidden argument*/NULL); Thread_SetState_mF0035267AC3FECD199B63396E7B1097D4FC2C7C5(L_1, 4, /*hidden argument*/NULL); return; } IL_0017: { InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_2 = Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225(__this, /*hidden argument*/NULL); Thread_ClrState_m108E95E5905DB3F3301DF8FF8A04B956A5136F77(L_2, 4, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Thread::SetName_internal(System.Threading.InternalThread,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SetName_internal_mE41978DFBCB89086CBFF60F479FCF0A241500B31 (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___thread0, String_t* ___name1, const RuntimeMethod* method) { typedef void (*Thread_SetName_internal_mE41978DFBCB89086CBFF60F479FCF0A241500B31_ftn) (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 *, String_t*); using namespace il2cpp::icalls; ((Thread_SetName_internal_mE41978DFBCB89086CBFF60F479FCF0A241500B31_ftn)mscorlib::System::Threading::Thread::SetName_internal40) (___thread0, ___name1); } // System.Void System.Threading.Thread::set_Name(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_set_Name_mEBD0DF20D69C49612949EA6F24E8E4EADB7F5E77 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, String_t* ___value0, const RuntimeMethod* method) { { InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_0 = Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225(__this, /*hidden argument*/NULL); String_t* L_1 = ___value0; Thread_SetName_internal_mE41978DFBCB89086CBFF60F479FCF0A241500B31(L_0, L_1, /*hidden argument*/NULL); return; } } // System.Threading.ThreadState System.Threading.Thread::get_ThreadState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_get_ThreadState_m8F398B10B485BC5FC7499B53452230A604989C10 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { { InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_0 = Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225(__this, /*hidden argument*/NULL); int32_t L_1 = Thread_GetState_m32A1BAF338D3CCCAE4CC2DD9F3E3CD68AF66C9F2(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Threading.Thread::SpinWait_nop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SpinWait_nop_mDCFDC9E11E3D93EF2261C217649468A3F3A151D7 (const RuntimeMethod* method) { typedef void (*Thread_SpinWait_nop_mDCFDC9E11E3D93EF2261C217649468A3F3A151D7_ftn) (); using namespace il2cpp::icalls; ((Thread_SpinWait_nop_mDCFDC9E11E3D93EF2261C217649468A3F3A151D7_ftn)mscorlib::System::Threading::Thread::SpinWait_nop) (); } // System.Void System.Threading.Thread::SpinWait(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SpinWait_m78B41D34DB11B07C0E7776FD3150DFB10AC63BB4 (int32_t ___iterations0, const RuntimeMethod* method) { { int32_t L_0 = ___iterations0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_000a; } } { return; } IL_0005: { Thread_SpinWait_nop_mDCFDC9E11E3D93EF2261C217649468A3F3A151D7(/*hidden argument*/NULL); } IL_000a: { int32_t L_1 = ___iterations0; int32_t L_2 = L_1; ___iterations0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)); if ((((int32_t)L_2) > ((int32_t)0))) { goto IL_0005; } } { return; } } // System.Void System.Threading.Thread::StartInternal(System.Security.Principal.IPrincipal,System.Threading.StackCrawlMark&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_StartInternal_mA1F40AE1915B601089920427BCD391C814D624E0 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, RuntimeObject* ___principal0, int32_t* ___stackMark1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread_StartInternal_mA1F40AE1915B601089920427BCD391C814D624E0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { MulticastDelegate_t * L_0 = __this->get_m_Delegate_12(); intptr_t L_1 = Thread_Thread_internal_m43DFA96F34ADF78F99F0F24267EC34A8E7A57849(__this, L_0, /*hidden argument*/NULL); bool L_2 = IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934((intptr_t)L_1, (intptr_t)(0), /*hidden argument*/NULL); if (!L_2) { goto IL_0023; } } { SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * L_3 = (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 *)il2cpp_codegen_object_new(SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782_il2cpp_TypeInfo_var); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(L_3, _stringLiteralC499D2FE766B2B37D326CC48A70E7DFFCE14E67E, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Thread_StartInternal_mA1F40AE1915B601089920427BCD391C814D624E0_RuntimeMethod_var); } IL_0023: { __this->set_m_ThreadStartArg_7(NULL); return; } } // System.Void System.Threading.Thread::SetState(System.Threading.InternalThread,System.Threading.ThreadState) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SetState_mF0035267AC3FECD199B63396E7B1097D4FC2C7C5 (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___thread0, int32_t ___set1, const RuntimeMethod* method) { typedef void (*Thread_SetState_mF0035267AC3FECD199B63396E7B1097D4FC2C7C5_ftn) (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 *, int32_t); using namespace il2cpp::icalls; ((Thread_SetState_mF0035267AC3FECD199B63396E7B1097D4FC2C7C5_ftn)mscorlib::System::Threading::Thread::SetState40) (___thread0, ___set1); } // System.Void System.Threading.Thread::ClrState(System.Threading.InternalThread,System.Threading.ThreadState) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_ClrState_m108E95E5905DB3F3301DF8FF8A04B956A5136F77 (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___thread0, int32_t ___clr1, const RuntimeMethod* method) { typedef void (*Thread_ClrState_m108E95E5905DB3F3301DF8FF8A04B956A5136F77_ftn) (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 *, int32_t); using namespace il2cpp::icalls; ((Thread_ClrState_m108E95E5905DB3F3301DF8FF8A04B956A5136F77_ftn)mscorlib::System::Threading::Thread::ClrState40) (___thread0, ___clr1); } // System.Threading.ThreadState System.Threading.Thread::GetState(System.Threading.InternalThread) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_GetState_m32A1BAF338D3CCCAE4CC2DD9F3E3CD68AF66C9F2 (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * ___thread0, const RuntimeMethod* method) { typedef int32_t (*Thread_GetState_m32A1BAF338D3CCCAE4CC2DD9F3E3CD68AF66C9F2_ftn) (InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 *); using namespace il2cpp::icalls; return ((Thread_GetState_m32A1BAF338D3CCCAE4CC2DD9F3E3CD68AF66C9F2_ftn)mscorlib::System::Threading::Thread::GetState40) (___thread0); } // System.Int32 System.Threading.Thread::SystemMaxStackStize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_SystemMaxStackStize_m2FD92A285AAEB56862E208375C03D537B13BA3EB (const RuntimeMethod* method) { typedef int32_t (*Thread_SystemMaxStackStize_m2FD92A285AAEB56862E208375C03D537B13BA3EB_ftn) (); using namespace il2cpp::icalls; return ((Thread_SystemMaxStackStize_m2FD92A285AAEB56862E208375C03D537B13BA3EB_ftn)mscorlib::System::Threading::Thread::SystemMaxStackStize) (); } // System.Int32 System.Threading.Thread::GetProcessDefaultStackSize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_GetProcessDefaultStackSize_m876EFB49B410ED044DBFA47B7EE2D4F16D7731EC (int32_t ___maxStackSize0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread_GetProcessDefaultStackSize_m876EFB49B410ED044DBFA47B7EE2D4F16D7731EC_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___maxStackSize0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { int32_t L_1 = ___maxStackSize0; if ((((int32_t)L_1) >= ((int32_t)((int32_t)131072)))) { goto IL_0013; } } { return ((int32_t)131072); } IL_0013: { int32_t L_2 = Environment_GetPageSize_m9DDEBE89C1AD0F93124F0DC120F4495B5A72515E(/*hidden argument*/NULL); V_0 = L_2; int32_t L_3 = ___maxStackSize0; int32_t L_4 = V_0; if (!((int32_t)((int32_t)L_3%(int32_t)L_4))) { goto IL_0027; } } { int32_t L_5 = ___maxStackSize0; int32_t L_6 = V_0; int32_t L_7 = V_0; ___maxStackSize0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)L_5/(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)))), (int32_t)L_7)); } IL_0027: { int32_t L_8 = ___maxStackSize0; int32_t L_9 = Thread_SystemMaxStackStize_m2FD92A285AAEB56862E208375C03D537B13BA3EB(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); int32_t L_10 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(L_8, L_9, /*hidden argument*/NULL); return L_10; } } // System.Void System.Threading.Thread::SetStart(System.MulticastDelegate,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_SetStart_m22F9A89D5768A9EF04A85F3FA4E8090CE2667FFE (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, MulticastDelegate_t * ___start0, int32_t ___maxStackSize1, const RuntimeMethod* method) { { MulticastDelegate_t * L_0 = ___start0; __this->set_m_Delegate_12(L_0); InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_1 = Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225(__this, /*hidden argument*/NULL); int32_t L_2 = ___maxStackSize1; NullCheck(L_1); L_1->set_stack_size_22(L_2); return; } } // System.Int32 System.Threading.Thread::get_ManagedThreadId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_get_ManagedThreadId_m7FA85162CB00713B94EF5708B19120F791D3AAD1 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { { InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_0 = Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225(__this, /*hidden argument*/NULL); NullCheck(L_0); int32_t L_1 = L_0->get_managed_id_25(); return L_1; } } // System.Void System.Threading.Thread::BeginCriticalRegion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_BeginCriticalRegion_m55EE44EB61B3CA75D6458FACAB208D7FA6D32D44 (const RuntimeMethod* method) { { Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_0 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL); NullCheck(L_0); InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_1 = Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225(L_0, /*hidden argument*/NULL); InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_2 = L_1; NullCheck(L_2); int32_t L_3 = L_2->get_critical_region_level_24(); il2cpp_codegen_memory_barrier(); NullCheck(L_2); il2cpp_codegen_memory_barrier(); L_2->set_critical_region_level_24(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); return; } } // System.Void System.Threading.Thread::EndCriticalRegion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_EndCriticalRegion_mD3B15BD6F84DE9EFC254F87275F4EE52E4F0A96E (const RuntimeMethod* method) { { Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_0 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL); NullCheck(L_0); InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_1 = Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225(L_0, /*hidden argument*/NULL); InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_2 = L_1; NullCheck(L_2); int32_t L_3 = L_2->get_critical_region_level_24(); il2cpp_codegen_memory_barrier(); NullCheck(L_2); il2cpp_codegen_memory_barrier(); L_2->set_critical_region_level_24(((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1))); return; } } // System.Int32 System.Threading.Thread::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_GetHashCode_mB6A27CBCCB9B4026E30A6B434D9F5392242231E6 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { { int32_t L_0 = Thread_get_ManagedThreadId_m7FA85162CB00713B94EF5708B19120F791D3AAD1(__this, /*hidden argument*/NULL); return L_0; } } // System.Threading.ThreadState System.Threading.Thread::ValidateThreadState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_ValidateThreadState_mEBF62A50922AE3BABE5C6603386D5370DEA385F3 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Thread_ValidateThreadState_mEBF62A50922AE3BABE5C6603386D5370DEA385F3_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B2_0 = 0; int32_t G_B1_0 = 0; { InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192 * L_0 = Thread_get_Internal_m4A69329DACC9037BDF9CA582CF4FC9734817D225(__this, /*hidden argument*/NULL); int32_t L_1 = Thread_GetState_m32A1BAF338D3CCCAE4CC2DD9F3E3CD68AF66C9F2(L_0, /*hidden argument*/NULL); int32_t L_2 = L_1; G_B1_0 = L_2; if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)16)))) { G_B2_0 = L_2; goto IL_001c; } } { ThreadStateException_tCE60AB1B9E16A6D13E3926137BA55832ABE986AE * L_3 = (ThreadStateException_tCE60AB1B9E16A6D13E3926137BA55832ABE986AE *)il2cpp_codegen_object_new(ThreadStateException_tCE60AB1B9E16A6D13E3926137BA55832ABE986AE_il2cpp_TypeInfo_var); ThreadStateException__ctor_m8269A7EE51BF315AD8C0A4B64C2B2319035BB767(L_3, _stringLiteral37C3F47C38A5EBF7F5BAFAA6AA4ED8778E9A2C87, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Thread_ValidateThreadState_mEBF62A50922AE3BABE5C6603386D5370DEA385F3_RuntimeMethod_var); } IL_001c: { return G_B2_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.ThreadAbortException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadAbortException__ctor_m35D7B5B282C1E7366DDEA8AD89D8B78E30D76C8C (ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadAbortException__ctor_m35D7B5B282C1E7366DDEA8AD89D8B78E30D76C8C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); String_t* L_0 = Exception_GetMessageFromNativeResources_m0C3FB5994F1AC0C76785E05972E3E405E8A0F087(1, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233040), /*hidden argument*/NULL); return; } } // System.Void System.Threading.ThreadAbortException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadAbortException__ctor_m4693972A14E01B566384F740777BDEA8D3B38AF7 (ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.ThreadHelper::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadHelper__cctor_mCE60860371B3C99D4CF548A8B1B6F2B9E6542602 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadHelper__cctor_mCE60860371B3C99D4CF548A8B1B6F2B9E6542602_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * L_0 = (ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 *)il2cpp_codegen_object_new(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676_il2cpp_TypeInfo_var); ContextCallback__ctor_m079F8FC3EE21C47D9FDD09FD90C14BDD34539493(L_0, NULL, (intptr_t)((intptr_t)ThreadHelper_ThreadStart_Context_mE293651E7B7060DAC2F7FA75B354BF206DA774A6_RuntimeMethod_var), /*hidden argument*/NULL); ((ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_StaticFields*)il2cpp_codegen_static_fields_for(ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_il2cpp_TypeInfo_var))->set__ccb_3(L_0); return; } } // System.Void System.Threading.ThreadHelper::.ctor(System.Delegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadHelper__ctor_m8262A0EF0381251FDDFA4696B84F68AF3A01411B (ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * __this, Delegate_t * ___start0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Delegate_t * L_0 = ___start0; __this->set__start_0(L_0); return; } } // System.Void System.Threading.ThreadHelper::SetExecutionContextHelper(System.Threading.ExecutionContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadHelper_SetExecutionContextHelper_m253F9206E5C01BE9A6BC3ED65106B5C2DB7240FF (ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * __this, ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___ec0, const RuntimeMethod* method) { { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_0 = ___ec0; __this->set__executionContext_2(L_0); return; } } // System.Void System.Threading.ThreadHelper::ThreadStart_Context(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadHelper_ThreadStart_Context_mE293651E7B7060DAC2F7FA75B354BF206DA774A6 (RuntimeObject * ___state0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadHelper_ThreadStart_Context_mE293651E7B7060DAC2F7FA75B354BF206DA774A6_MetadataUsageId); s_Il2CppMethodInitialized = true; } ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * V_0 = NULL; { RuntimeObject * L_0 = ___state0; V_0 = ((ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 *)CastclassClass((RuntimeObject*)L_0, ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_il2cpp_TypeInfo_var)); ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * L_1 = V_0; NullCheck(L_1); Delegate_t * L_2 = L_1->get__start_0(); if (!((ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF *)IsInstSealed((RuntimeObject*)L_2, ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF_il2cpp_TypeInfo_var))) { goto IL_0025; } } { ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * L_3 = V_0; NullCheck(L_3); Delegate_t * L_4 = L_3->get__start_0(); NullCheck(((ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF *)CastclassSealed((RuntimeObject*)L_4, ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF_il2cpp_TypeInfo_var))); ThreadStart_Invoke_m11B6A66E82F02C74399A7314C14C7F52393CC4B4(((ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF *)CastclassSealed((RuntimeObject*)L_4, ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return; } IL_0025: { ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * L_5 = V_0; NullCheck(L_5); Delegate_t * L_6 = L_5->get__start_0(); ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * L_7 = V_0; NullCheck(L_7); RuntimeObject * L_8 = L_7->get__startArg_1(); NullCheck(((ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F *)CastclassSealed((RuntimeObject*)L_6, ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F_il2cpp_TypeInfo_var))); ParameterizedThreadStart_Invoke_m5A5DFBAD0D99A39DF7ADA9F75D97B068A8809C14(((ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F *)CastclassSealed((RuntimeObject*)L_6, ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F_il2cpp_TypeInfo_var)), L_8, /*hidden argument*/NULL); return; } } // System.Void System.Threading.ThreadHelper::ThreadStart(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadHelper_ThreadStart_m21D0954583D43BCACDABE0E2ABB694FC4A0D43A3 (ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadHelper_ThreadStart_m21D0954583D43BCACDABE0E2ABB694FC4A0D43A3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; __this->set__startArg_1(L_0); ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_1 = __this->get__executionContext_2(); if (!L_1) { goto IL_0021; } } { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_2 = __this->get__executionContext_2(); IL2CPP_RUNTIME_CLASS_INIT(ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_il2cpp_TypeInfo_var); ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * L_3 = ((ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_StaticFields*)il2cpp_codegen_static_fields_for(ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_il2cpp_TypeInfo_var))->get__ccb_3(); IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var); ExecutionContext_Run_m97152E1791C019905F6297946D7411CA6683CCEB(L_2, L_3, __this, /*hidden argument*/NULL); return; } IL_0021: { Delegate_t * L_4 = __this->get__start_0(); RuntimeObject * L_5 = ___obj0; NullCheck(((ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F *)CastclassSealed((RuntimeObject*)L_4, ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F_il2cpp_TypeInfo_var))); ParameterizedThreadStart_Invoke_m5A5DFBAD0D99A39DF7ADA9F75D97B068A8809C14(((ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F *)CastclassSealed((RuntimeObject*)L_4, ParameterizedThreadStart_tB0BBCC1B5B33EBCFE37B9B91840464DBF124218F_il2cpp_TypeInfo_var)), L_5, /*hidden argument*/NULL); return; } } // System.Void System.Threading.ThreadHelper::ThreadStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadHelper_ThreadStart_m8CB657ADE8F96ED7949120D441D40F2A23EECBD2 (ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadHelper_ThreadStart_m8CB657ADE8F96ED7949120D441D40F2A23EECBD2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_0 = __this->get__executionContext_2(); if (!L_0) { goto IL_001a; } } { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_1 = __this->get__executionContext_2(); IL2CPP_RUNTIME_CLASS_INIT(ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_il2cpp_TypeInfo_var); ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * L_2 = ((ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_StaticFields*)il2cpp_codegen_static_fields_for(ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13_il2cpp_TypeInfo_var))->get__ccb_3(); IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var); ExecutionContext_Run_m97152E1791C019905F6297946D7411CA6683CCEB(L_1, L_2, __this, /*hidden argument*/NULL); return; } IL_001a: { Delegate_t * L_3 = __this->get__start_0(); NullCheck(((ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF *)CastclassSealed((RuntimeObject*)L_3, ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF_il2cpp_TypeInfo_var))); ThreadStart_Invoke_m11B6A66E82F02C74399A7314C14C7F52393CC4B4(((ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF *)CastclassSealed((RuntimeObject*)L_3, ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.ThreadInterruptedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadInterruptedException__ctor_m7D7CD66D20D7E9C12C3FD88B9DC0AF9F6EFB22A5 (ThreadInterruptedException_t40D8296AA9D9E8B74E29BFAE1089CFACC5F03751 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadInterruptedException__ctor_m7D7CD66D20D7E9C12C3FD88B9DC0AF9F6EFB22A5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); String_t* L_0 = Exception_GetMessageFromNativeResources_m0C3FB5994F1AC0C76785E05972E3E405E8A0F087(2, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233063), /*hidden argument*/NULL); return; } } // System.Void System.Threading.ThreadInterruptedException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadInterruptedException__ctor_m52C3C5BD6F529E4BE56FAA20F6BAE883E0109BD3 (ThreadInterruptedException_t40D8296AA9D9E8B74E29BFAE1089CFACC5F03751 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Threading.RegisteredWaitHandle System.Threading.ThreadPool::RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.UInt32,System.Boolean,System.Threading.StackCrawlMark&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 * ThreadPool_RegisterWaitForSingleObject_m0642BE341A35D9AB577E4611E254BCF7E5C35540 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ___waitObject0, WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * ___callBack1, RuntimeObject * ___state2, uint32_t ___millisecondsTimeOutInterval3, bool ___executeOnlyOnce4, int32_t* ___stackMark5, bool ___compressStack6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPool_RegisterWaitForSingleObject_m0642BE341A35D9AB577E4611E254BCF7E5C35540_MetadataUsageId); s_Il2CppMethodInitialized = true; } RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 * V_0 = NULL; { WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_0 = ___waitObject0; 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, _stringLiteral394CD1DBEAFE1BD9574666651BCC66D1298EA18F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ThreadPool_RegisterWaitForSingleObject_m0642BE341A35D9AB577E4611E254BCF7E5C35540_RuntimeMethod_var); } IL_000e: { WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * L_2 = ___callBack1; 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, _stringLiteralBEE73CA6E75A8894DD7A547768926EDAEDCD5C1A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ThreadPool_RegisterWaitForSingleObject_m0642BE341A35D9AB577E4611E254BCF7E5C35540_RuntimeMethod_var); } IL_001c: { uint32_t L_4 = ___millisecondsTimeOutInterval3; if ((((int32_t)L_4) == ((int32_t)(-1)))) { goto IL_0033; } } { uint32_t L_5 = ___millisecondsTimeOutInterval3; if ((!(((uint32_t)L_5) > ((uint32_t)((int32_t)2147483647LL))))) { goto IL_0033; } } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_6 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_6, _stringLiteral73EBEA013EB4C5C11E9834291F0D8CBBC4992FB1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ThreadPool_RegisterWaitForSingleObject_m0642BE341A35D9AB577E4611E254BCF7E5C35540_RuntimeMethod_var); } IL_0033: { WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_7 = ___waitObject0; WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * L_8 = ___callBack1; RuntimeObject * L_9 = ___state2; uint32_t L_10 = ___millisecondsTimeOutInterval3; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_11; memset((&L_11), 0, sizeof(L_11)); TimeSpan__ctor_m310F37AF5F9F91433A98062BF6E4A248AA6C3DE5((&L_11), 0, 0, 0, 0, L_10, /*hidden argument*/NULL); bool L_12 = ___executeOnlyOnce4; RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 * L_13 = (RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 *)il2cpp_codegen_object_new(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0_il2cpp_TypeInfo_var); RegisteredWaitHandle__ctor_m990C003E1FC4462F986D99BCE3A995F522203483(L_13, L_7, L_8, L_9, L_11, L_12, /*hidden argument*/NULL); V_0 = L_13; bool L_14 = ___compressStack6; if (!L_14) { goto IL_0061; } } { RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 * L_15 = V_0; WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_16 = (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC *)il2cpp_codegen_object_new(WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC_il2cpp_TypeInfo_var); WaitCallback__ctor_m375A357FD7C64F4182FD88B8276D88FE5BE75B31(L_16, L_15, (intptr_t)((intptr_t)RegisteredWaitHandle_Wait_m0F3673BDD8989B937D7EAF2DDCE685C158192A12_RuntimeMethod_var), /*hidden argument*/NULL); ThreadPool_QueueUserWorkItem_mF344DA7B44CDBE8C7163C1539D429F27E8553185(L_16, NULL, /*hidden argument*/NULL); goto IL_0074; } IL_0061: { RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 * L_17 = V_0; WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_18 = (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC *)il2cpp_codegen_object_new(WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC_il2cpp_TypeInfo_var); WaitCallback__ctor_m375A357FD7C64F4182FD88B8276D88FE5BE75B31(L_18, L_17, (intptr_t)((intptr_t)RegisteredWaitHandle_Wait_m0F3673BDD8989B937D7EAF2DDCE685C158192A12_RuntimeMethod_var), /*hidden argument*/NULL); ThreadPool_UnsafeQueueUserWorkItem_mA410427123962A9362AB7314149396196928ECC7(L_18, NULL, /*hidden argument*/NULL); } IL_0074: { RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 * L_19 = V_0; return L_19; } } // System.Threading.RegisteredWaitHandle System.Threading.ThreadPool::RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 * ThreadPool_RegisterWaitForSingleObject_m1FAE6A729D61DDDF3EE72AEB72D886184A8FA58E (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ___waitObject0, WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * ___callBack1, RuntimeObject * ___state2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___timeout3, bool ___executeOnlyOnce4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPool_RegisterWaitForSingleObject_m1FAE6A729D61DDDF3EE72AEB72D886184A8FA58E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; int32_t V_1 = 0; { double L_0 = TimeSpan_get_TotalMilliseconds_m48B00B27D485CC556C10A5119BC11E1A1E0FE363((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___timeout3), /*hidden argument*/NULL); V_0 = (((int64_t)((int64_t)L_0))); int64_t L_1 = V_0; if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)(-1))))))) { goto IL_0023; } } { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1B8A0FD63D1D605E82838E8FBA940C1207478A60, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteral56D3C9490BE2608AC36F5A4805BFEC2F21F7F982, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ThreadPool_RegisterWaitForSingleObject_m1FAE6A729D61DDDF3EE72AEB72D886184A8FA58E_RuntimeMethod_var); } IL_0023: { int64_t L_4 = V_0; if ((((int64_t)L_4) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0041; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral080C19955B2E8EB7F96E8B1CC1CC77410D38399F, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, _stringLiteral56D3C9490BE2608AC36F5A4805BFEC2F21F7F982, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ThreadPool_RegisterWaitForSingleObject_m1FAE6A729D61DDDF3EE72AEB72D886184A8FA58E_RuntimeMethod_var); } IL_0041: { V_1 = 1; WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_7 = ___waitObject0; WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * L_8 = ___callBack1; RuntimeObject * L_9 = ___state2; int64_t L_10 = V_0; bool L_11 = ___executeOnlyOnce4; RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 * L_12 = ThreadPool_RegisterWaitForSingleObject_m0642BE341A35D9AB577E4611E254BCF7E5C35540(L_7, L_8, L_9, (((int32_t)((uint32_t)L_10))), L_11, (int32_t*)(&V_1), (bool)1, /*hidden argument*/NULL); return L_12; } } // System.Boolean System.Threading.ThreadPool::QueueUserWorkItem(System.Threading.WaitCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR bool ThreadPool_QueueUserWorkItem_mF344DA7B44CDBE8C7163C1539D429F27E8553185 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * ___callBack0, RuntimeObject * ___state1, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 1; WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_0 = ___callBack0; RuntimeObject * L_1 = ___state1; bool L_2 = ThreadPool_QueueUserWorkItemHelper_mD11DD16BA8A1C6C90FC15FB3E47F2C62F19669AB(L_0, L_1, (int32_t*)(&V_0), (bool)1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Threading.ThreadPool::UnsafeQueueUserWorkItem(System.Threading.WaitCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR bool ThreadPool_UnsafeQueueUserWorkItem_mA410427123962A9362AB7314149396196928ECC7 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * ___callBack0, RuntimeObject * ___state1, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 1; WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_0 = ___callBack0; RuntimeObject * L_1 = ___state1; bool L_2 = ThreadPool_QueueUserWorkItemHelper_mD11DD16BA8A1C6C90FC15FB3E47F2C62F19669AB(L_0, L_1, (int32_t*)(&V_0), (bool)0, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Threading.ThreadPool::QueueUserWorkItemHelper(System.Threading.WaitCallback,System.Object,System.Threading.StackCrawlMark&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPool_QueueUserWorkItemHelper_mD11DD16BA8A1C6C90FC15FB3E47F2C62F19669AB (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * ___callBack0, RuntimeObject * ___state1, int32_t* ___stackMark2, bool ___compressStack3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPool_QueueUserWorkItemHelper_mD11DD16BA8A1C6C90FC15FB3E47F2C62F19669AB_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8 * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { V_0 = (bool)1; WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_0 = ___callBack0; if (!L_0) { goto IL_0025; } } { ThreadPool_EnsureVMInitialized_mA21FAA8238E99EE2F8CDD7E638FEF5E11B5578D6(/*hidden argument*/NULL); } IL_000a: try { // begin try (depth: 1) IL2CPP_LEAVE(0x30, FINALLY_000c); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_000c; } FINALLY_000c: { // begin finally (depth: 1) WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_1 = ___callBack0; RuntimeObject * L_2 = ___state1; bool L_3 = ___compressStack3; int32_t* L_4 = ___stackMark2; QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8 * L_5 = (QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8 *)il2cpp_codegen_object_new(QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8_il2cpp_TypeInfo_var); QueueUserWorkItemCallback__ctor_mA8BAF438B3BC53CFA970E9728870D5B39A3B86A8(L_5, L_1, L_2, L_3, (int32_t*)L_4, /*hidden argument*/NULL); V_1 = L_5; IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_6 = ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_workQueue_5(); QueueUserWorkItemCallback_t98440ACF9490D738440F631E378B52AD11EAE8C8 * L_7 = V_1; NullCheck(L_6); ThreadPoolWorkQueue_Enqueue_m0F5AAE9773892321562E794066DD4DBDF4DCA100(L_6, L_7, (bool)1, /*hidden argument*/NULL); V_0 = (bool)1; IL2CPP_END_FINALLY(12) } // end finally (depth: 1) IL2CPP_CLEANUP(12) { IL2CPP_JUMP_TBL(0x30, IL_0030) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0025: { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_8 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_8, _stringLiteral32D4D0CD69E4FCD0E4B1749FED4FE485D5B17F9C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ThreadPool_QueueUserWorkItemHelper_mD11DD16BA8A1C6C90FC15FB3E47F2C62F19669AB_RuntimeMethod_var); } IL_0030: { bool L_9 = V_0; return L_9; } } // System.Void System.Threading.ThreadPool::UnsafeQueueCustomWorkItem(System.Threading.IThreadPoolWorkItem,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_UnsafeQueueCustomWorkItem_m6FAFD01CC75C06858788F29C2430A4CB85E13568 (RuntimeObject* ___workItem0, bool ___forceGlobal1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPool_UnsafeQueueCustomWorkItem_m6FAFD01CC75C06858788F29C2430A4CB85E13568_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { ThreadPool_EnsureVMInitialized_mA21FAA8238E99EE2F8CDD7E638FEF5E11B5578D6(/*hidden argument*/NULL); } IL_0005: try { // begin try (depth: 1) IL2CPP_LEAVE(0x14, FINALLY_0007); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0007; } FINALLY_0007: { // begin finally (depth: 1) IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_0 = ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_workQueue_5(); RuntimeObject* L_1 = ___workItem0; bool L_2 = ___forceGlobal1; NullCheck(L_0); ThreadPoolWorkQueue_Enqueue_m0F5AAE9773892321562E794066DD4DBDF4DCA100(L_0, L_1, L_2, /*hidden argument*/NULL); IL2CPP_END_FINALLY(7) } // end finally (depth: 1) IL2CPP_CLEANUP(7) { IL2CPP_JUMP_TBL(0x14, IL_0014) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0014: { return; } } // System.Boolean System.Threading.ThreadPool::TryPopCustomWorkItem(System.Threading.IThreadPoolWorkItem) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPool_TryPopCustomWorkItem_mCECECEF31175E5AF82E059137F190C0088897A4A (RuntimeObject* ___workItem0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPool_TryPopCustomWorkItem_mCECECEF31175E5AF82E059137F190C0088897A4A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); bool L_0 = ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_vmTpInitialized_3(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_000b; } } { return (bool)0; } IL_000b: { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_1 = ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_workQueue_5(); RuntimeObject* L_2 = ___workItem0; NullCheck(L_1); bool L_3 = ThreadPoolWorkQueue_LocalFindAndPop_m9BE567E92E0DC532DFEE011D236A1159F63E6434(L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Boolean System.Threading.ThreadPool::RequestWorkerThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPool_RequestWorkerThread_m7C6D88D442BC1EB2C17B6070F0791C6FC4F8A947 (const RuntimeMethod* method) { typedef bool (*ThreadPool_RequestWorkerThread_m7C6D88D442BC1EB2C17B6070F0791C6FC4F8A947_ftn) (); using namespace il2cpp::icalls; return ((ThreadPool_RequestWorkerThread_m7C6D88D442BC1EB2C17B6070F0791C6FC4F8A947_ftn)ves_icall_System_Threading_ThreadPool_RequestWorkerThread) (); } // System.Void System.Threading.ThreadPool::EnsureVMInitialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_EnsureVMInitialized_mA21FAA8238E99EE2F8CDD7E638FEF5E11B5578D6 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPool_EnsureVMInitialized_mA21FAA8238E99EE2F8CDD7E638FEF5E11B5578D6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); bool L_0 = ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_vmTpInitialized_3(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_001b; } } { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); ThreadPool_InitializeVMTp_m75941381A968807C339207BE8DF497443200121A((bool*)(((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_address_of_enableWorkerTracking_4()), /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->set_vmTpInitialized_3(1); } IL_001b: { return; } } // System.Boolean System.Threading.ThreadPool::NotifyWorkItemComplete() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPool_NotifyWorkItemComplete_m66CC6F7A740C2925320EE3A1D901D9AA5D2B9A77 (const RuntimeMethod* method) { typedef bool (*ThreadPool_NotifyWorkItemComplete_m66CC6F7A740C2925320EE3A1D901D9AA5D2B9A77_ftn) (); using namespace il2cpp::icalls; return ((ThreadPool_NotifyWorkItemComplete_m66CC6F7A740C2925320EE3A1D901D9AA5D2B9A77_ftn)ves_icall_System_Threading_ThreadPool_NotifyWorkItemComplete) (); } // System.Void System.Threading.ThreadPool::ReportThreadStatus(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_ReportThreadStatus_m5497425AF41790F625F8A890141EC9570FA82EE8 (bool ___isWorking0, const RuntimeMethod* method) { typedef void (*ThreadPool_ReportThreadStatus_m5497425AF41790F625F8A890141EC9570FA82EE8_ftn) (bool); using namespace il2cpp::icalls; ((ThreadPool_ReportThreadStatus_m5497425AF41790F625F8A890141EC9570FA82EE8_ftn)ves_icall_System_Threading_ThreadPool_ReportThreadStatus) (___isWorking0); } // System.Void System.Threading.ThreadPool::NotifyWorkItemProgress() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_NotifyWorkItemProgress_mD041D082A87EAE7A34E6AE21CB7AF8819422B40A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPool_NotifyWorkItemProgress_mD041D082A87EAE7A34E6AE21CB7AF8819422B40A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); bool L_0 = ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_vmTpInitialized_3(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_0013; } } { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); ThreadPool_InitializeVMTp_m75941381A968807C339207BE8DF497443200121A((bool*)(((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_address_of_enableWorkerTracking_4()), /*hidden argument*/NULL); } IL_0013: { ThreadPool_NotifyWorkItemProgressNative_mF559EE574FF07EF426C9B8342221616C78CB370B(/*hidden argument*/NULL); return; } } // System.Void System.Threading.ThreadPool::NotifyWorkItemProgressNative() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_NotifyWorkItemProgressNative_mF559EE574FF07EF426C9B8342221616C78CB370B (const RuntimeMethod* method) { typedef void (*ThreadPool_NotifyWorkItemProgressNative_mF559EE574FF07EF426C9B8342221616C78CB370B_ftn) (); using namespace il2cpp::icalls; ((ThreadPool_NotifyWorkItemProgressNative_mF559EE574FF07EF426C9B8342221616C78CB370B_ftn)ves_icall_System_Threading_ThreadPool_NotifyWorkItemProgressNative) (); } // System.Boolean System.Threading.ThreadPool::IsThreadPoolHosted() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPool_IsThreadPoolHosted_m4C22092ED436EECC64E79C84EEC327B89D7A7D96 (const RuntimeMethod* method) { typedef bool (*ThreadPool_IsThreadPoolHosted_m4C22092ED436EECC64E79C84EEC327B89D7A7D96_ftn) (); using namespace il2cpp::icalls; return ((ThreadPool_IsThreadPoolHosted_m4C22092ED436EECC64E79C84EEC327B89D7A7D96_ftn)ves_icall_System_Threading_ThreadPool_IsThreadPoolHosted) (); } // System.Void System.Threading.ThreadPool::InitializeVMTp(System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPool_InitializeVMTp_m75941381A968807C339207BE8DF497443200121A (bool* ___enableWorkerTracking0, const RuntimeMethod* method) { typedef void (*ThreadPool_InitializeVMTp_m75941381A968807C339207BE8DF497443200121A_ftn) (bool*); using namespace il2cpp::icalls; ((ThreadPool_InitializeVMTp_m75941381A968807C339207BE8DF497443200121A_ftn)ves_icall_System_Threading_ThreadPool_InitializeVMTp) (___enableWorkerTracking0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.ThreadPoolGlobals::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolGlobals__cctor_mDE5EB5AAA8F84828FE2CBEEEE1301322CD263AA1 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolGlobals__cctor_mDE5EB5AAA8F84828FE2CBEEEE1301322CD263AA1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->set_tpQuantum_0(((int32_t)30)); int32_t L_0 = Environment_get_ProcessorCount_m086119F1D40B7319BFC37F4501C6A73517E9B8CD(/*hidden argument*/NULL); ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->set_processorCount_1(L_0); bool L_1 = ThreadPool_IsThreadPoolHosted_m4C22092ED436EECC64E79C84EEC327B89D7A7D96(/*hidden argument*/NULL); ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->set_tpHosted_2(L_1); ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_2 = (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 *)il2cpp_codegen_object_new(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_il2cpp_TypeInfo_var); ThreadPoolWorkQueue__ctor_mDAE229D4F94CACC0E1FF97CBDC78F1034C0AF86D(L_2, /*hidden argument*/NULL); ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->set_workQueue_5(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.ThreadPoolWorkQueue::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueue__ctor_mDAE229D4F94CACC0E1FF97CBDC78F1034C0AF86D (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolWorkQueue__ctor_mDAE229D4F94CACC0E1FF97CBDC78F1034C0AF86D_MetadataUsageId); s_Il2CppMethodInitialized = true; } QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * V_0 = NULL; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_0 = (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE *)il2cpp_codegen_object_new(QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE_il2cpp_TypeInfo_var); QueueSegment__ctor_m7E0672E1810C3887A90DB32CCDE0FC80752495C9(L_0, /*hidden argument*/NULL); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_1 = L_0; V_0 = L_1; il2cpp_codegen_memory_barrier(); __this->set_queueHead_0(L_1); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_2 = V_0; il2cpp_codegen_memory_barrier(); __this->set_queueTail_1(L_2); return; } } // System.Threading.ThreadPoolWorkQueueThreadLocals System.Threading.ThreadPoolWorkQueue::EnsureCurrentThreadHasQueue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * ThreadPoolWorkQueue_EnsureCurrentThreadHasQueue_m554E036E163A749F37BEBCE4F6020E145779758A (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolWorkQueue_EnsureCurrentThreadHasQueue_m554E036E163A749F37BEBCE4F6020E145779758A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_0 = ((ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_il2cpp_TypeInfo_var))->get_threadLocals_0(); if (L_0) { goto IL_0012; } } { ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_1 = (ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B *)il2cpp_codegen_object_new(ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_il2cpp_TypeInfo_var); ThreadPoolWorkQueueThreadLocals__ctor_mD46EF22D8EE15E0585EAC6F9DBF3063D14526362(L_1, __this, /*hidden argument*/NULL); ((ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_il2cpp_TypeInfo_var))->set_threadLocals_0(L_1); } IL_0012: { ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_2 = ((ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_il2cpp_TypeInfo_var))->get_threadLocals_0(); return L_2; } } // System.Void System.Threading.ThreadPoolWorkQueue::EnsureThreadRequested() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueue_EnsureThreadRequested_mEF1AA9C6BEB164BB3CCC05D39D92FDF531B4C39E (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolWorkQueue_EnsureThreadRequested_mEF1AA9C6BEB164BB3CCC05D39D92FDF531B4C39E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = __this->get_numOutstandingThreadRequests_3(); il2cpp_codegen_memory_barrier(); V_0 = L_0; goto IL_0028; } IL_000b: { int32_t* L_1 = __this->get_address_of_numOutstandingThreadRequests_3(); il2cpp_codegen_memory_barrier(); int32_t L_2 = V_0; int32_t L_3 = V_0; int32_t L_4 = Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03((int32_t*)L_1, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), L_3, /*hidden argument*/NULL); V_1 = L_4; int32_t L_5 = V_1; int32_t L_6 = V_0; if ((!(((uint32_t)L_5) == ((uint32_t)L_6)))) { goto IL_0026; } } { ThreadPool_RequestWorkerThread_m7C6D88D442BC1EB2C17B6070F0791C6FC4F8A947(/*hidden argument*/NULL); return; } IL_0026: { int32_t L_7 = V_1; V_0 = L_7; } IL_0028: { int32_t L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); int32_t L_9 = ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_processorCount_1(); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_000b; } } { return; } } // System.Void System.Threading.ThreadPoolWorkQueue::MarkThreadRequestSatisfied() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueue_MarkThreadRequestSatisfied_m88FE3B0300E0D183244D54B7A7105141432C1955 (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = __this->get_numOutstandingThreadRequests_3(); il2cpp_codegen_memory_barrier(); V_0 = L_0; goto IL_0021; } IL_000b: { int32_t* L_1 = __this->get_address_of_numOutstandingThreadRequests_3(); il2cpp_codegen_memory_barrier(); int32_t L_2 = V_0; int32_t L_3 = V_0; int32_t L_4 = Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03((int32_t*)L_1, ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)), L_3, /*hidden argument*/NULL); V_1 = L_4; int32_t L_5 = V_1; int32_t L_6 = V_0; if ((((int32_t)L_5) == ((int32_t)L_6))) { goto IL_0025; } } { int32_t L_7 = V_1; V_0 = L_7; } IL_0021: { int32_t L_8 = V_0; if ((((int32_t)L_8) > ((int32_t)0))) { goto IL_000b; } } IL_0025: { return; } } // System.Void System.Threading.ThreadPoolWorkQueue::Enqueue(System.Threading.IThreadPoolWorkItem,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueue_Enqueue_m0F5AAE9773892321562E794066DD4DBDF4DCA100 (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, RuntimeObject* ___callback0, bool ___forceGlobal1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolWorkQueue_Enqueue_m0F5AAE9773892321562E794066DD4DBDF4DCA100_MetadataUsageId); s_Il2CppMethodInitialized = true; } ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * V_0 = NULL; QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * V_1 = NULL; { V_0 = (ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B *)NULL; bool L_0 = ___forceGlobal1; if (L_0) { goto IL_000b; } } { ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_1 = ((ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_il2cpp_TypeInfo_var))->get_threadLocals_0(); V_0 = L_1; } IL_000b: { ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_2 = V_0; if (!L_2) { goto IL_001c; } } { ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_3 = V_0; NullCheck(L_3); WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_4 = L_3->get_workStealingQueue_2(); RuntimeObject* L_5 = ___callback0; NullCheck(L_4); WorkStealingQueue_LocalPush_mF4807971CDD7F6089AADF28173FEDDDFF4E96455(L_4, L_5, /*hidden argument*/NULL); goto IL_006c; } IL_001c: { QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_6 = __this->get_queueHead_0(); il2cpp_codegen_memory_barrier(); V_1 = L_6; goto IL_0063; } IL_0027: { QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_7 = V_1; NullCheck(L_7); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE ** L_8 = L_7->get_address_of_Next_2(); il2cpp_codegen_memory_barrier(); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_9 = (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE *)il2cpp_codegen_object_new(QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE_il2cpp_TypeInfo_var); QueueSegment__ctor_m7E0672E1810C3887A90DB32CCDE0FC80752495C9(L_9, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE *>((QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE **)L_8, L_9, (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE *)NULL); goto IL_0059; } IL_003b: { QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE ** L_10 = __this->get_address_of_queueHead_0(); il2cpp_codegen_memory_barrier(); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_11 = V_1; NullCheck(L_11); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_12 = L_11->get_Next_2(); il2cpp_codegen_memory_barrier(); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_13 = V_1; InterlockedCompareExchangeImpl<QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE *>((QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE **)L_10, L_12, L_13); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_14 = __this->get_queueHead_0(); il2cpp_codegen_memory_barrier(); V_1 = L_14; } IL_0059: { QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_15 = V_1; NullCheck(L_15); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_16 = L_15->get_Next_2(); il2cpp_codegen_memory_barrier(); if (L_16) { goto IL_003b; } } IL_0063: { QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_17 = V_1; RuntimeObject* L_18 = ___callback0; NullCheck(L_17); bool L_19 = QueueSegment_TryEnqueue_m83AD5DB0A7D19576FC19EF28974EE515E61B8AA5(L_17, L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_0027; } } IL_006c: { ThreadPoolWorkQueue_EnsureThreadRequested_mEF1AA9C6BEB164BB3CCC05D39D92FDF531B4C39E(__this, /*hidden argument*/NULL); return; } } // System.Boolean System.Threading.ThreadPoolWorkQueue::LocalFindAndPop(System.Threading.IThreadPoolWorkItem) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPoolWorkQueue_LocalFindAndPop_m9BE567E92E0DC532DFEE011D236A1159F63E6434 (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, RuntimeObject* ___callback0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolWorkQueue_LocalFindAndPop_m9BE567E92E0DC532DFEE011D236A1159F63E6434_MetadataUsageId); s_Il2CppMethodInitialized = true; } ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * V_0 = NULL; { ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_0 = ((ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B_il2cpp_TypeInfo_var))->get_threadLocals_0(); V_0 = L_0; ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_1 = V_0; if (L_1) { goto IL_000b; } } { return (bool)0; } IL_000b: { ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_2 = V_0; NullCheck(L_2); WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_3 = L_2->get_workStealingQueue_2(); RuntimeObject* L_4 = ___callback0; NullCheck(L_3); bool L_5 = WorkStealingQueue_LocalFindAndPop_m837487AF74CF9C8104986911FC7E279101AE1DCC(L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Void System.Threading.ThreadPoolWorkQueue::Dequeue(System.Threading.ThreadPoolWorkQueueThreadLocals,System.Threading.IThreadPoolWorkItem&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueue_Dequeue_mC9B6B85A78A962AC577C6474DBF53E2BCE238767 (ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * __this, ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * ___tl0, RuntimeObject** ___callback1, bool* ___missedSteal2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolWorkQueue_Dequeue_mC9B6B85A78A962AC577C6474DBF53E2BCE238767_MetadataUsageId); s_Il2CppMethodInitialized = true; } WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * V_0 = NULL; QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * V_1 = NULL; WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * V_5 = NULL; { RuntimeObject** L_0 = ___callback1; *((RuntimeObject **)L_0) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL); bool* L_1 = ___missedSteal2; *((int8_t*)L_1) = (int8_t)0; ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_2 = ___tl0; NullCheck(L_2); WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_3 = L_2->get_workStealingQueue_2(); V_0 = L_3; WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_4 = V_0; RuntimeObject** L_5 = ___callback1; NullCheck(L_4); WorkStealingQueue_LocalPop_m99B519E8984D358D1816A9E01B7A9CD4607B42D0(L_4, (RuntimeObject**)L_5, /*hidden argument*/NULL); RuntimeObject** L_6 = ___callback1; RuntimeObject* L_7 = *((RuntimeObject**)L_6); if (L_7) { goto IL_005d; } } { QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_8 = __this->get_queueTail_1(); il2cpp_codegen_memory_barrier(); V_1 = L_8; } IL_0022: { QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_9 = V_1; RuntimeObject** L_10 = ___callback1; NullCheck(L_9); bool L_11 = QueueSegment_TryDequeue_m4D5D4F85B81CACAD4B7961DC4EF1FD91A99611D2(L_9, (RuntimeObject**)L_10, /*hidden argument*/NULL); if (L_11) { goto IL_005d; } } { QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_12 = V_1; NullCheck(L_12); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_13 = L_12->get_Next_2(); il2cpp_codegen_memory_barrier(); if (!L_13) { goto IL_005d; } } { QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_14 = V_1; NullCheck(L_14); bool L_15 = QueueSegment_IsUsedUp_mE4EA87EE6185EAF7C5C6108B4E435CE1D4FB9F0C(L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_005d; } } { QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE ** L_16 = __this->get_address_of_queueTail_1(); il2cpp_codegen_memory_barrier(); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_17 = V_1; NullCheck(L_17); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_18 = L_17->get_Next_2(); il2cpp_codegen_memory_barrier(); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_19 = V_1; InterlockedCompareExchangeImpl<QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE *>((QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE **)L_16, L_18, L_19); QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * L_20 = __this->get_queueTail_1(); il2cpp_codegen_memory_barrier(); V_1 = L_20; goto IL_0022; } IL_005d: { RuntimeObject** L_21 = ___callback1; RuntimeObject* L_22 = *((RuntimeObject**)L_21); if (L_22) { goto IL_00b7; } } { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_il2cpp_TypeInfo_var); SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB * L_23 = ((ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_il2cpp_TypeInfo_var))->get_allThreadQueues_2(); NullCheck(L_23); WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9* L_24 = SparseArray_1_get_Current_m3B12A0B7ED161127D23F62CC10EDCE7F8ED79051(L_23, /*hidden argument*/SparseArray_1_get_Current_m3B12A0B7ED161127D23F62CC10EDCE7F8ED79051_RuntimeMethod_var); V_2 = L_24; ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_25 = ___tl0; NullCheck(L_25); Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F * L_26 = L_25->get_random_3(); WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9* L_27 = V_2; NullCheck(L_27); NullCheck(L_26); int32_t L_28 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(5 /* System.Int32 System.Random::Next(System.Int32) */, L_26, (((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length))))); V_3 = L_28; WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9* L_29 = V_2; NullCheck(L_29); V_4 = (((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length)))); goto IL_00b2; } IL_0082: { WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9* L_30 = V_2; int32_t L_31 = V_3; WorkStealingQueueU5BU5D_tB0FC166606C799616475C287839895D7E987FAE9* L_32 = V_2; NullCheck(L_32); NullCheck(L_30); WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_33 = VolatileRead((WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB **)((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)L_31%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))))))); V_5 = L_33; WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_34 = V_5; if (!L_34) { goto IL_00a8; } } { WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_35 = V_5; WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_36 = V_0; if ((((RuntimeObject*)(WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB *)L_35) == ((RuntimeObject*)(WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB *)L_36))) { goto IL_00a8; } } { WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_37 = V_5; RuntimeObject** L_38 = ___callback1; bool* L_39 = ___missedSteal2; NullCheck(L_37); bool L_40 = WorkStealingQueue_TrySteal_mE129DB3DD6A80B3FAF1391366AABFDD488D7956E(L_37, (RuntimeObject**)L_38, (bool*)L_39, /*hidden argument*/NULL); if (L_40) { goto IL_00b7; } } IL_00a8: { int32_t L_41 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)); int32_t L_42 = V_4; V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1)); } IL_00b2: { int32_t L_43 = V_4; if ((((int32_t)L_43) > ((int32_t)0))) { goto IL_0082; } } IL_00b7: { return; } } // System.Boolean System.Threading.ThreadPoolWorkQueue::Dispatch() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ThreadPoolWorkQueue_Dispatch_mCDF7415E4C9D02B34761CAE8EA15CD33DDF85ADF (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolWorkQueue_Dispatch_mCDF7415E4C9D02B34761CAE8EA15CD33DDF85ADF_MetadataUsageId); s_Il2CppMethodInitialized = true; } ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * V_0 = NULL; int32_t V_1 = 0; bool V_2 = false; RuntimeObject* V_3 = NULL; ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * V_4 = NULL; bool V_5 = false; bool V_6 = false; bool V_7 = false; ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 * V_8 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 7); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_0 = ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_workQueue_5(); V_0 = L_0; int32_t L_1 = Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C(/*hidden argument*/NULL); V_1 = L_1; ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_2 = V_0; NullCheck(L_2); ThreadPoolWorkQueue_MarkThreadRequestSatisfied_m88FE3B0300E0D183244D54B7A7105141432C1955(L_2, /*hidden argument*/NULL); V_2 = (bool)1; V_3 = (RuntimeObject*)NULL; } IL_0016: try { // begin try (depth: 1) try { // begin try (depth: 2) { ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_3 = V_0; NullCheck(L_3); ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_4 = ThreadPoolWorkQueue_EnsureCurrentThreadHasQueue_m554E036E163A749F37BEBCE4F6020E145779758A(L_3, /*hidden argument*/NULL); V_4 = L_4; goto IL_0088; } IL_0020: { } IL_0021: try { // begin try (depth: 3) IL2CPP_LEAVE(0x41, FINALLY_0023); } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0023; } FINALLY_0023: { // begin finally (depth: 3) { V_5 = (bool)0; ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_5 = V_0; ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * L_6 = V_4; NullCheck(L_5); ThreadPoolWorkQueue_Dequeue_mC9B6B85A78A962AC577C6474DBF53E2BCE238767(L_5, L_6, (RuntimeObject**)(&V_3), (bool*)(&V_5), /*hidden argument*/NULL); RuntimeObject* L_7 = V_3; if (L_7) { goto IL_003a; } } IL_0035: { bool L_8 = V_5; V_2 = L_8; goto IL_0040; } IL_003a: { ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_9 = V_0; NullCheck(L_9); ThreadPoolWorkQueue_EnsureThreadRequested_mEF1AA9C6BEB164BB3CCC05D39D92FDF531B4C39E(L_9, /*hidden argument*/NULL); } IL_0040: { IL2CPP_END_FINALLY(35) } } // end finally (depth: 3) IL2CPP_CLEANUP(35) { IL2CPP_JUMP_TBL(0x41, IL_0041) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0041: { RuntimeObject* L_10 = V_3; if (L_10) { goto IL_0049; } } IL_0044: { V_6 = (bool)1; IL2CPP_LEAVE(0xBA, FINALLY_00ae); } IL_0049: { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); bool L_11 = ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_enableWorkerTracking_4(); if (!L_11) { goto IL_0074; } } IL_0050: { V_7 = (bool)0; } IL_0053: try { // begin try (depth: 3) try { // begin try (depth: 4) IL2CPP_LEAVE(0x5F, FINALLY_0055); } // end try (depth: 4) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0055; } FINALLY_0055: { // begin finally (depth: 4) ThreadPool_ReportThreadStatus_m5497425AF41790F625F8A890141EC9570FA82EE8((bool)1, /*hidden argument*/NULL); V_7 = (bool)1; IL2CPP_END_FINALLY(85) } // end finally (depth: 4) IL2CPP_CLEANUP(85) { IL2CPP_JUMP_TBL(0x5F, IL_005f) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_005f: { RuntimeObject* L_12 = V_3; NullCheck(L_12); InterfaceActionInvoker0::Invoke(0 /* System.Void System.Threading.IThreadPoolWorkItem::ExecuteWorkItem() */, IThreadPoolWorkItem_t2EF44881BFB1A9C021606D5B0C03B31B62B6C38D_il2cpp_TypeInfo_var, L_12); V_3 = (RuntimeObject*)NULL; IL2CPP_LEAVE(0x7C, FINALLY_0069); } } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0069; } FINALLY_0069: { // begin finally (depth: 3) { bool L_13 = V_7; if (!L_13) { goto IL_0073; } } IL_006d: { ThreadPool_ReportThreadStatus_m5497425AF41790F625F8A890141EC9570FA82EE8((bool)0, /*hidden argument*/NULL); } IL_0073: { IL2CPP_END_FINALLY(105) } } // end finally (depth: 3) IL2CPP_CLEANUP(105) { IL2CPP_JUMP_TBL(0x7C, IL_007c) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0074: { RuntimeObject* L_14 = V_3; NullCheck(L_14); InterfaceActionInvoker0::Invoke(0 /* System.Void System.Threading.IThreadPoolWorkItem::ExecuteWorkItem() */, IThreadPoolWorkItem_t2EF44881BFB1A9C021606D5B0C03B31B62B6C38D_il2cpp_TypeInfo_var, L_14); V_3 = (RuntimeObject*)NULL; } IL_007c: { bool L_15 = ThreadPool_NotifyWorkItemComplete_m66CC6F7A740C2925320EE3A1D901D9AA5D2B9A77(/*hidden argument*/NULL); if (L_15) { goto IL_0088; } } IL_0083: { V_6 = (bool)0; IL2CPP_LEAVE(0xBA, FINALLY_00ae); } IL_0088: { int32_t L_16 = Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C(/*hidden argument*/NULL); int32_t L_17 = V_1; IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var); uint32_t L_18 = ((ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolGlobals_t9DF93E24441362B1D7114B8AD50AF977E96671F5_il2cpp_TypeInfo_var))->get_tpQuantum_0(); if ((((int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17)))))) < ((int64_t)(((int64_t)((uint64_t)L_18)))))) { goto IL_0020; } } IL_0098: { V_6 = (bool)1; IL2CPP_LEAVE(0xBA, FINALLY_00ae); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_009d; throw e; } CATCH_009d: { // begin catch(System.Threading.ThreadAbortException) { V_8 = ((ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 *)__exception_local); RuntimeObject* L_19 = V_3; if (!L_19) { goto IL_00aa; } } IL_00a2: { RuntimeObject* L_20 = V_3; ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 * L_21 = V_8; NullCheck(L_20); InterfaceActionInvoker1< ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 * >::Invoke(1 /* System.Void System.Threading.IThreadPoolWorkItem::MarkAborted(System.Threading.ThreadAbortException) */, IThreadPoolWorkItem_t2EF44881BFB1A9C021606D5B0C03B31B62B6C38D_il2cpp_TypeInfo_var, L_20, L_21); } IL_00aa: { V_2 = (bool)0; IL2CPP_LEAVE(0xB8, FINALLY_00ae); } } // end catch (depth: 2) } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00ae; } FINALLY_00ae: { // begin finally (depth: 1) { bool L_22 = V_2; if (!L_22) { goto IL_00b7; } } IL_00b1: { ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_23 = V_0; NullCheck(L_23); ThreadPoolWorkQueue_EnsureThreadRequested_mEF1AA9C6BEB164BB3CCC05D39D92FDF531B4C39E(L_23, /*hidden argument*/NULL); } IL_00b7: { IL2CPP_END_FINALLY(174) } } // end finally (depth: 1) IL2CPP_CLEANUP(174) { IL2CPP_JUMP_TBL(0xBA, IL_00ba) IL2CPP_JUMP_TBL(0xB8, IL_00b8) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00b8: { return (bool)1; } IL_00ba: { bool L_24 = V_6; return L_24; } } // System.Void System.Threading.ThreadPoolWorkQueue::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueue__cctor_m4B8371BEBC112C1C29BFF0AA32296B5BABE4CB6E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolWorkQueue__cctor_m4B8371BEBC112C1C29BFF0AA32296B5BABE4CB6E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB * L_0 = (SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB *)il2cpp_codegen_object_new(SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB_il2cpp_TypeInfo_var); SparseArray_1__ctor_m0B0CCA1B07E8D3958BD83EFE5CBC7C40A0A9131A(L_0, ((int32_t)16), /*hidden argument*/SparseArray_1__ctor_m0B0CCA1B07E8D3958BD83EFE5CBC7C40A0A9131A_RuntimeMethod_var); ((ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_il2cpp_TypeInfo_var))->set_allThreadQueues_2(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.ThreadPoolWorkQueue_QueueSegment::GetIndexes(System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueSegment_GetIndexes_mF55461594A0803BA4A598D15A161EF172EB65953 (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, int32_t* ___upper0, int32_t* ___lower1, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_indexes_1(); il2cpp_codegen_memory_barrier(); V_0 = L_0; int32_t* L_1 = ___upper0; int32_t L_2 = V_0; *((int32_t*)L_1) = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_2>>(int32_t)((int32_t)16)))&(int32_t)((int32_t)65535))); int32_t* L_3 = ___lower1; int32_t L_4 = V_0; *((int32_t*)L_3) = (int32_t)((int32_t)((int32_t)L_4&(int32_t)((int32_t)65535))); return; } } // System.Boolean System.Threading.ThreadPoolWorkQueue_QueueSegment::CompareExchangeIndexes(System.Int32&,System.Int32,System.Int32&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueueSegment_CompareExchangeIndexes_m2F262328BC6CD50650808F35D906F986F702E299 (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, int32_t* ___prevUpper0, int32_t ___newUpper1, int32_t* ___prevLower2, int32_t ___newLower3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t* L_0 = ___prevUpper0; int32_t L_1 = *((int32_t*)L_0); int32_t* L_2 = ___prevLower2; int32_t L_3 = *((int32_t*)L_2); V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)L_1<<(int32_t)((int32_t)16)))|(int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)65535))))); int32_t L_4 = ___newUpper1; int32_t L_5 = ___newLower3; V_1 = ((int32_t)((int32_t)((int32_t)((int32_t)L_4<<(int32_t)((int32_t)16)))|(int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)65535))))); int32_t* L_6 = __this->get_address_of_indexes_1(); il2cpp_codegen_memory_barrier(); int32_t L_7 = V_1; int32_t L_8 = V_0; int32_t L_9 = Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03((int32_t*)L_6, L_7, L_8, /*hidden argument*/NULL); V_2 = L_9; int32_t* L_10 = ___prevUpper0; int32_t L_11 = V_2; *((int32_t*)L_10) = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_11>>(int32_t)((int32_t)16)))&(int32_t)((int32_t)65535))); int32_t* L_12 = ___prevLower2; int32_t L_13 = V_2; *((int32_t*)L_12) = (int32_t)((int32_t)((int32_t)L_13&(int32_t)((int32_t)65535))); int32_t L_14 = V_2; int32_t L_15 = V_0; return (bool)((((int32_t)L_14) == ((int32_t)L_15))? 1 : 0); } } // System.Void System.Threading.ThreadPoolWorkQueue_QueueSegment::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueSegment__ctor_m7E0672E1810C3887A90DB32CCDE0FC80752495C9 (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (QueueSegment__ctor_m7E0672E1810C3887A90DB32CCDE0FC80752495C9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_0 = (IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154*)(IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154*)SZArrayNew(IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256)); __this->set_nodes_0(L_0); return; } } // System.Boolean System.Threading.ThreadPoolWorkQueue_QueueSegment::IsUsedUp() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueueSegment_IsUsedUp_mE4EA87EE6185EAF7C5C6108B4E435CE1D4FB9F0C (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { QueueSegment_GetIndexes_mF55461594A0803BA4A598D15A161EF172EB65953(__this, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL); int32_t L_0 = V_0; IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_1 = __this->get_nodes_0(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))) { goto IL_0021; } } { int32_t L_2 = V_1; IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_3 = __this->get_nodes_0(); NullCheck(L_3); return (bool)((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))? 1 : 0); } IL_0021: { return (bool)0; } } // System.Boolean System.Threading.ThreadPoolWorkQueue_QueueSegment::TryEnqueue(System.Threading.IThreadPoolWorkItem) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueueSegment_TryEnqueue_m83AD5DB0A7D19576FC19EF28974EE515E61B8AA5 (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, RuntimeObject* ___node0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { QueueSegment_GetIndexes_mF55461594A0803BA4A598D15A161EF172EB65953(__this, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL); } IL_000a: { int32_t L_0 = V_0; IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_1 = __this->get_nodes_0(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))) { goto IL_0017; } } { return (bool)0; } IL_0017: { int32_t L_2 = V_0; int32_t L_3 = V_1; bool L_4 = QueueSegment_CompareExchangeIndexes_m2F262328BC6CD50650808F35D906F986F702E299(__this, (int32_t*)(&V_0), ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), (int32_t*)(&V_1), L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_000a; } } { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_5 = __this->get_nodes_0(); int32_t L_6 = V_0; NullCheck(L_5); RuntimeObject* L_7 = ___node0; VolatileWrite((RuntimeObject**)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6))), L_7); return (bool)1; } } // System.Boolean System.Threading.ThreadPoolWorkQueue_QueueSegment::TryDequeue(System.Threading.IThreadPoolWorkItem&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueueSegment_TryDequeue_m4D5D4F85B81CACAD4B7961DC4EF1FD91A99611D2 (QueueSegment_t3F7E9D01C68FF83E06B265B2CF69264953C094EE * __this, RuntimeObject** ___node0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; SpinWait_tE079CCE966DA5879ACBE28273573E447C0BA31B9 V_2; memset((&V_2), 0, sizeof(V_2)); RuntimeObject* V_3 = NULL; { QueueSegment_GetIndexes_mF55461594A0803BA4A598D15A161EF172EB65953(__this, (int32_t*)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL); } IL_000a: { int32_t L_0 = V_1; int32_t L_1 = V_0; if ((!(((uint32_t)L_0) == ((uint32_t)L_1)))) { goto IL_0013; } } { RuntimeObject** L_2 = ___node0; *((RuntimeObject **)L_2) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)NULL); return (bool)0; } IL_0013: { int32_t L_3 = V_0; int32_t L_4 = V_1; bool L_5 = QueueSegment_CompareExchangeIndexes_m2F262328BC6CD50650808F35D906F986F702E299(__this, (int32_t*)(&V_0), L_3, (int32_t*)(&V_1), ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/NULL); if (!L_5) { goto IL_000a; } } { il2cpp_codegen_initobj((&V_2), sizeof(SpinWait_tE079CCE966DA5879ACBE28273573E447C0BA31B9 )); goto IL_0034; } IL_002d: { SpinWait_SpinOnce_mFE80DED71DC333A3F5C6F98AE9B46AB63B854E87((SpinWait_tE079CCE966DA5879ACBE28273573E447C0BA31B9 *)(&V_2), /*hidden argument*/NULL); } IL_0034: { RuntimeObject** L_6 = ___node0; IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_7 = __this->get_nodes_0(); int32_t L_8 = V_1; NullCheck(L_7); RuntimeObject* L_9 = VolatileRead((RuntimeObject**)((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8)))); RuntimeObject* L_10 = L_9; V_3 = L_10; *((RuntimeObject **)L_6) = (RuntimeObject *)L_10; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_6, (void*)(RuntimeObject *)L_10); RuntimeObject* L_11 = V_3; if (!L_11) { goto IL_002d; } } { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_12 = __this->get_nodes_0(); int32_t L_13 = V_1; NullCheck(L_12); ArrayElementTypeCheck (L_12, NULL); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (RuntimeObject*)NULL); return (bool)1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.ThreadPoolWorkQueue_WorkStealingQueue::LocalPush(System.Threading.IThreadPoolWorkItem) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkStealingQueue_LocalPush_mF4807971CDD7F6089AADF28173FEDDDFF4E96455 (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WorkStealingQueue_LocalPush_mF4807971CDD7F6089AADF28173FEDDDFF4E96455_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; bool V_1 = false; bool V_2 = false; int32_t V_3 = 0; int32_t V_4 = 0; IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* V_5 = NULL; int32_t V_6 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { int32_t L_0 = __this->get_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); V_0 = L_0; int32_t L_1 = V_0; if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)2147483647LL))))) { goto IL_0075; } } { V_1 = (bool)0; } IL_0013: try { // begin try (depth: 1) { SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * L_2 = __this->get_address_of_m_foreignLock_4(); SpinLock_Enter_mF3E9D6327B1767595E94264ABB9526C5CF3CFC3B((SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 *)L_2, (bool*)(&V_1), /*hidden argument*/NULL); int32_t L_3 = __this->get_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)2147483647LL))))) { goto IL_0063; } } IL_002f: { int32_t L_4 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); int32_t L_5 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); __this->set_m_headIndex_2(((int32_t)((int32_t)L_4&(int32_t)L_5))); int32_t L_6 = __this->get_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); int32_t L_7 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); int32_t L_8 = ((int32_t)((int32_t)L_6&(int32_t)L_7)); V_0 = L_8; il2cpp_codegen_memory_barrier(); __this->set_m_tailIndex_3(L_8); } IL_0063: { IL2CPP_LEAVE(0x75, FINALLY_0065); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0065; } FINALLY_0065: { // begin finally (depth: 1) { bool L_9 = V_1; if (!L_9) { goto IL_0074; } } IL_0068: { SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * L_10 = __this->get_address_of_m_foreignLock_4(); SpinLock_Exit_m85BC505E091C592BE7015391FAD05C5BDC8A1D66((SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 *)L_10, (bool)1, /*hidden argument*/NULL); } IL_0074: { IL2CPP_END_FINALLY(101) } } // end finally (depth: 1) IL2CPP_CLEANUP(101) { IL2CPP_JUMP_TBL(0x75, IL_0075) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0075: { int32_t L_11 = V_0; int32_t L_12 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); int32_t L_13 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_11) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)L_13))))) { goto IL_00b2; } } { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_14 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_15 = V_0; int32_t L_16 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_14); RuntimeObject* L_17 = ___obj0; VolatileWrite((RuntimeObject**)((L_14)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)L_15&(int32_t)L_16))))), L_17); int32_t L_18 = V_0; il2cpp_codegen_memory_barrier(); __this->set_m_tailIndex_3(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1))); return; } IL_00b2: { V_2 = (bool)0; } IL_00b4: try { // begin try (depth: 1) { SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * L_19 = __this->get_address_of_m_foreignLock_4(); SpinLock_Enter_mF3E9D6327B1767595E94264ABB9526C5CF3CFC3B((SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 *)L_19, (bool*)(&V_2), /*hidden argument*/NULL); int32_t L_20 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); V_3 = L_20; int32_t L_21 = __this->get_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); int32_t L_22 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_22)); int32_t L_23 = V_4; int32_t L_24 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_23) < ((int32_t)L_24))) { goto IL_0163; } } IL_00e9: { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_25 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); NullCheck(L_25); IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_26 = (IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154*)(IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154*)SZArrayNew(IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))))<<(int32_t)1))); V_5 = L_26; V_6 = 0; goto IL_0122; } IL_0101: { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_27 = V_5; int32_t L_28 = V_6; IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_29 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_30 = V_6; int32_t L_31 = V_3; int32_t L_32 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_29); int32_t L_33 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31))&(int32_t)L_32)); RuntimeObject* L_34 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_33)); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_34); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(L_28), (RuntimeObject*)L_34); int32_t L_35 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)); } IL_0122: { int32_t L_36 = V_6; IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_37 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); NullCheck(L_37); if ((((int32_t)L_36) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_37)->max_length))))))) { goto IL_0101; } } IL_0130: { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_38 = V_5; il2cpp_codegen_memory_barrier(); __this->set_m_array_0(L_38); il2cpp_codegen_memory_barrier(); __this->set_m_headIndex_2(0); int32_t L_39 = V_4; int32_t L_40 = L_39; V_0 = L_40; il2cpp_codegen_memory_barrier(); __this->set_m_tailIndex_3(L_40); int32_t L_41 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); __this->set_m_mask_1(((int32_t)((int32_t)((int32_t)((int32_t)L_41<<(int32_t)1))|(int32_t)1))); } IL_0163: { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_42 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_43 = V_0; int32_t L_44 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_42); RuntimeObject* L_45 = ___obj0; VolatileWrite((RuntimeObject**)((L_42)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)L_43&(int32_t)L_44))))), L_45); int32_t L_46 = V_0; il2cpp_codegen_memory_barrier(); __this->set_m_tailIndex_3(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); IL2CPP_LEAVE(0x19D, FINALLY_018d); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_018d; } FINALLY_018d: { // begin finally (depth: 1) { bool L_47 = V_2; if (!L_47) { goto IL_019c; } } IL_0190: { SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * L_48 = __this->get_address_of_m_foreignLock_4(); SpinLock_Exit_m85BC505E091C592BE7015391FAD05C5BDC8A1D66((SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 *)L_48, (bool)0, /*hidden argument*/NULL); } IL_019c: { IL2CPP_END_FINALLY(397) } } // end finally (depth: 1) IL2CPP_CLEANUP(397) { IL2CPP_JUMP_TBL(0x19D, IL_019d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_019d: { return; } } // System.Boolean System.Threading.ThreadPoolWorkQueue_WorkStealingQueue::LocalFindAndPop(System.Threading.IThreadPoolWorkItem) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WorkStealingQueue_LocalFindAndPop_m837487AF74CF9C8104986911FC7E279101AE1DCC (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { RuntimeObject* V_0 = NULL; int32_t V_1 = 0; bool V_2 = false; bool V_3 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_0 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_1 = __this->get_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); int32_t L_2 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_0); int32_t L_3 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1))&(int32_t)L_2)); RuntimeObject* L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); RuntimeObject* L_5 = ___obj0; if ((!(((RuntimeObject*)(RuntimeObject*)L_4) == ((RuntimeObject*)(RuntimeObject*)L_5)))) { goto IL_002d; } } { bool L_6 = WorkStealingQueue_LocalPop_m99B519E8984D358D1816A9E01B7A9CD4607B42D0(__this, (RuntimeObject**)(&V_0), /*hidden argument*/NULL); if (!L_6) { goto IL_002b; } } { return (bool)1; } IL_002b: { return (bool)0; } IL_002d: { int32_t L_7 = __this->get_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)2)); goto IL_00f2; } IL_003d: { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_8 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_9 = V_1; int32_t L_10 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_8); int32_t L_11 = ((int32_t)((int32_t)L_9&(int32_t)L_10)); RuntimeObject* L_12 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); RuntimeObject* L_13 = ___obj0; if ((!(((RuntimeObject*)(RuntimeObject*)L_12) == ((RuntimeObject*)(RuntimeObject*)L_13)))) { goto IL_00ee; } } { V_2 = (bool)0; } IL_0058: try { // begin try (depth: 1) { SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * L_14 = __this->get_address_of_m_foreignLock_4(); SpinLock_Enter_mF3E9D6327B1767595E94264ABB9526C5CF3CFC3B((SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 *)L_14, (bool*)(&V_2), /*hidden argument*/NULL); IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_15 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_16 = V_1; int32_t L_17 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_15); int32_t L_18 = ((int32_t)((int32_t)L_16&(int32_t)L_17)); RuntimeObject* L_19 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); if (L_19) { goto IL_0081; } } IL_007a: { V_3 = (bool)0; IL2CPP_LEAVE(0x102, FINALLY_00de); } IL_0081: { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_20 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_21 = V_1; int32_t L_22 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); NullCheck(L_20); VolatileWrite((RuntimeObject**)((L_20)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)((int32_t)L_21&(int32_t)L_22))))), (RuntimeObject*)NULL); int32_t L_23 = V_1; int32_t L_24 = __this->get_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); if ((!(((uint32_t)L_23) == ((uint32_t)L_24)))) { goto IL_00bd; } } IL_00a9: { int32_t L_25 = __this->get_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); __this->set_m_tailIndex_3(((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1))); goto IL_00da; } IL_00bd: { int32_t L_26 = V_1; int32_t L_27 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); if ((!(((uint32_t)L_26) == ((uint32_t)L_27)))) { goto IL_00da; } } IL_00c8: { int32_t L_28 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); __this->set_m_headIndex_2(((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1))); } IL_00da: { V_3 = (bool)1; IL2CPP_LEAVE(0x102, FINALLY_00de); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00de; } FINALLY_00de: { // begin finally (depth: 1) { bool L_29 = V_2; if (!L_29) { goto IL_00ed; } } IL_00e1: { SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * L_30 = __this->get_address_of_m_foreignLock_4(); SpinLock_Exit_m85BC505E091C592BE7015391FAD05C5BDC8A1D66((SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 *)L_30, (bool)0, /*hidden argument*/NULL); } IL_00ed: { IL2CPP_END_FINALLY(222) } } // end finally (depth: 1) IL2CPP_CLEANUP(222) { IL2CPP_JUMP_TBL(0x102, IL_0102) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00ee: { int32_t L_31 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1)); } IL_00f2: { int32_t L_32 = V_1; int32_t L_33 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_32) >= ((int32_t)L_33))) { goto IL_003d; } } { return (bool)0; } IL_0102: { bool L_34 = V_3; return L_34; } } // System.Boolean System.Threading.ThreadPoolWorkQueue_WorkStealingQueue::LocalPop(System.Threading.IThreadPoolWorkItem&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WorkStealingQueue_LocalPop_m99B519E8984D358D1816A9E01B7A9CD4607B42D0 (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, RuntimeObject** ___obj0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; int32_t V_3 = 0; bool V_4 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 3); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: { int32_t L_0 = __this->get_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); V_0 = L_0; int32_t L_1 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); int32_t L_2 = V_0; if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0019; } } { RuntimeObject** L_3 = ___obj0; *((RuntimeObject **)L_3) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)(RuntimeObject *)NULL); return (bool)0; } IL_0019: { int32_t L_4 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); int32_t* L_5 = __this->get_address_of_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); int32_t L_6 = V_0; Interlocked_Exchange_mD5CC61AF0F002355912FAAF84F26BE93639B5FD5((int32_t*)L_5, L_6, /*hidden argument*/NULL); int32_t L_7 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); int32_t L_8 = V_0; if ((((int32_t)L_7) > ((int32_t)L_8))) { goto IL_0066; } } { int32_t L_9 = V_0; int32_t L_10 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); V_1 = ((int32_t)((int32_t)L_9&(int32_t)L_10)); RuntimeObject** L_11 = ___obj0; IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_12 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_13 = V_1; NullCheck(L_12); RuntimeObject* L_14 = VolatileRead((RuntimeObject**)((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))); *((RuntimeObject **)L_11) = (RuntimeObject *)L_14; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_11, (void*)(RuntimeObject *)L_14); RuntimeObject** L_15 = ___obj0; RuntimeObject* L_16 = *((RuntimeObject**)L_15); if (!L_16) { goto IL_0000; } } { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_17 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_18 = V_1; NullCheck(L_17); ArrayElementTypeCheck (L_17, NULL); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (RuntimeObject*)NULL); return (bool)1; } IL_0066: { V_2 = (bool)0; } IL_0068: try { // begin try (depth: 1) { SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * L_19 = __this->get_address_of_m_foreignLock_4(); SpinLock_Enter_mF3E9D6327B1767595E94264ABB9526C5CF3CFC3B((SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 *)L_19, (bool*)(&V_2), /*hidden argument*/NULL); int32_t L_20 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); int32_t L_21 = V_0; if ((((int32_t)L_20) > ((int32_t)L_21))) { goto IL_00b9; } } IL_0080: { int32_t L_22 = V_0; int32_t L_23 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); V_3 = ((int32_t)((int32_t)L_22&(int32_t)L_23)); RuntimeObject** L_24 = ___obj0; IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_25 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_26 = V_3; NullCheck(L_25); RuntimeObject* L_27 = VolatileRead((RuntimeObject**)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))); *((RuntimeObject **)L_24) = (RuntimeObject *)L_27; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_24, (void*)(RuntimeObject *)L_27); RuntimeObject** L_28 = ___obj0; RuntimeObject* L_29 = *((RuntimeObject**)L_28); if (L_29) { goto IL_00a9; } } IL_00a4: { IL2CPP_LEAVE(0x0, FINALLY_00cc); } IL_00a9: { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_30 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_31 = V_3; NullCheck(L_30); ArrayElementTypeCheck (L_30, NULL); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(L_31), (RuntimeObject*)NULL); V_4 = (bool)1; IL2CPP_LEAVE(0xDC, FINALLY_00cc); } IL_00b9: { int32_t L_32 = V_0; il2cpp_codegen_memory_barrier(); __this->set_m_tailIndex_3(((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1))); RuntimeObject** L_33 = ___obj0; *((RuntimeObject **)L_33) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_33, (void*)(RuntimeObject *)NULL); V_4 = (bool)0; IL2CPP_LEAVE(0xDC, FINALLY_00cc); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00cc; } FINALLY_00cc: { // begin finally (depth: 1) { bool L_34 = V_2; if (!L_34) { goto IL_00db; } } IL_00cf: { SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * L_35 = __this->get_address_of_m_foreignLock_4(); SpinLock_Exit_m85BC505E091C592BE7015391FAD05C5BDC8A1D66((SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 *)L_35, (bool)0, /*hidden argument*/NULL); } IL_00db: { IL2CPP_END_FINALLY(204) } } // end finally (depth: 1) IL2CPP_CLEANUP(204) { IL2CPP_JUMP_TBL(0x0, IL_0000) IL2CPP_JUMP_TBL(0xDC, IL_00dc) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00dc: { bool L_36 = V_4; return L_36; } } // System.Boolean System.Threading.ThreadPoolWorkQueue_WorkStealingQueue::TrySteal(System.Threading.IThreadPoolWorkItem&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WorkStealingQueue_TrySteal_mE129DB3DD6A80B3FAF1391366AABFDD488D7956E (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, RuntimeObject** ___obj0, bool* ___missedSteal1, const RuntimeMethod* method) { { RuntimeObject** L_0 = ___obj0; bool* L_1 = ___missedSteal1; bool L_2 = WorkStealingQueue_TrySteal_mB7C9393B530ABEE102EC1955B02A520D01A08E9C(__this, (RuntimeObject**)L_0, (bool*)L_1, 0, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Threading.ThreadPoolWorkQueue_WorkStealingQueue::TrySteal(System.Threading.IThreadPoolWorkItem&,System.Boolean&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WorkStealingQueue_TrySteal_mB7C9393B530ABEE102EC1955B02A520D01A08E9C (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, RuntimeObject** ___obj0, bool* ___missedSteal1, int32_t ___millisecondsTimeout2, const RuntimeMethod* method) { bool V_0 = false; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeObject** L_0 = ___obj0; *((RuntimeObject **)L_0) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL); } IL_0003: { int32_t L_1 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); int32_t L_2 = __this->get_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0017; } } { return (bool)0; } IL_0017: { V_0 = (bool)0; } IL_0019: try { // begin try (depth: 1) { SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * L_3 = __this->get_address_of_m_foreignLock_4(); int32_t L_4 = ___millisecondsTimeout2; SpinLock_TryEnter_mC40B3AF891D55A2D0DC2AEC8F83926EBB4A28109((SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 *)L_3, L_4, (bool*)(&V_0), /*hidden argument*/NULL); bool L_5 = V_0; if (!L_5) { goto IL_0093; } } IL_002a: { int32_t L_6 = __this->get_m_headIndex_2(); il2cpp_codegen_memory_barrier(); V_1 = L_6; int32_t* L_7 = __this->get_address_of_m_headIndex_2(); il2cpp_codegen_memory_barrier(); int32_t L_8 = V_1; Interlocked_Exchange_mD5CC61AF0F002355912FAAF84F26BE93639B5FD5((int32_t*)L_7, ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)), /*hidden argument*/NULL); int32_t L_9 = V_1; int32_t L_10 = __this->get_m_tailIndex_3(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_9) >= ((int32_t)L_10))) { goto IL_0082; } } IL_004d: { int32_t L_11 = V_1; int32_t L_12 = __this->get_m_mask_1(); il2cpp_codegen_memory_barrier(); V_2 = ((int32_t)((int32_t)L_11&(int32_t)L_12)); RuntimeObject** L_13 = ___obj0; IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_14 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_15 = V_2; NullCheck(L_14); RuntimeObject* L_16 = VolatileRead((RuntimeObject**)((L_14)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_15)))); *((RuntimeObject **)L_13) = (RuntimeObject *)L_16; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_13, (void*)(RuntimeObject *)L_16); RuntimeObject** L_17 = ___obj0; RuntimeObject* L_18 = *((RuntimeObject**)L_17); if (L_18) { goto IL_0073; } } IL_0071: { IL2CPP_LEAVE(0x3, FINALLY_0098); } IL_0073: { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_19 = __this->get_m_array_0(); il2cpp_codegen_memory_barrier(); int32_t L_20 = V_2; NullCheck(L_19); ArrayElementTypeCheck (L_19, NULL); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(L_20), (RuntimeObject*)NULL); V_3 = (bool)1; IL2CPP_LEAVE(0xAA, FINALLY_0098); } IL_0082: { int32_t L_21 = V_1; il2cpp_codegen_memory_barrier(); __this->set_m_headIndex_2(L_21); RuntimeObject** L_22 = ___obj0; *((RuntimeObject **)L_22) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_22, (void*)(RuntimeObject *)NULL); bool* L_23 = ___missedSteal1; *((int8_t*)L_23) = (int8_t)1; IL2CPP_LEAVE(0xA8, FINALLY_0098); } IL_0093: { bool* L_24 = ___missedSteal1; *((int8_t*)L_24) = (int8_t)1; IL2CPP_LEAVE(0xA8, FINALLY_0098); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0098; } FINALLY_0098: { // begin finally (depth: 1) { bool L_25 = V_0; if (!L_25) { goto IL_00a7; } } IL_009b: { SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 * L_26 = __this->get_address_of_m_foreignLock_4(); SpinLock_Exit_m85BC505E091C592BE7015391FAD05C5BDC8A1D66((SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 *)L_26, (bool)0, /*hidden argument*/NULL); } IL_00a7: { IL2CPP_END_FINALLY(152) } } // end finally (depth: 1) IL2CPP_CLEANUP(152) { IL2CPP_JUMP_TBL(0x3, IL_0003) IL2CPP_JUMP_TBL(0xAA, IL_00aa) IL2CPP_JUMP_TBL(0xA8, IL_00a8) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00a8: { return (bool)0; } IL_00aa: { bool L_27 = V_3; return L_27; } } // System.Void System.Threading.ThreadPoolWorkQueue_WorkStealingQueue::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WorkStealingQueue__ctor_m5A30B12A759E1174AB423856CECBF73B5A5FA91A (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WorkStealingQueue__ctor_m5A30B12A759E1174AB423856CECBF73B5A5FA91A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154* L_0 = (IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154*)(IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154*)SZArrayNew(IThreadPoolWorkItemU5BU5D_tE22F6DA28324647E4F8A3239E9636C050BD4A154_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32)); il2cpp_codegen_memory_barrier(); __this->set_m_array_0(L_0); il2cpp_codegen_memory_barrier(); __this->set_m_mask_1(((int32_t)31)); SpinLock_t8C6A214261382587D0A07AD354500141672A1DE1 L_1; memset((&L_1), 0, sizeof(L_1)); SpinLock__ctor_m2BB2C4BB309BF3C6D004C3BABAE3C8484DA5B6A0((&L_1), (bool)0, /*hidden argument*/NULL); __this->set_m_foreignLock_4(L_1); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.ThreadPoolWorkQueueThreadLocals::.ctor(System.Threading.ThreadPoolWorkQueue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueueThreadLocals__ctor_mD46EF22D8EE15E0585EAC6F9DBF3063D14526362 (ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * __this, ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * ___tpq0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolWorkQueueThreadLocals__ctor_mD46EF22D8EE15E0585EAC6F9DBF3063D14526362_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_0 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL); NullCheck(L_0); int32_t L_1 = Thread_get_ManagedThreadId_m7FA85162CB00713B94EF5708B19120F791D3AAD1(L_0, /*hidden argument*/NULL); Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F * L_2 = (Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F *)il2cpp_codegen_object_new(Random_t18A28484F67EFA289C256F508A5C71D9E6DEE09F_il2cpp_TypeInfo_var); Random__ctor_mDD202982FB7CEDE3F31824E919AD2BFA6D66BA27(L_2, L_1, /*hidden argument*/NULL); __this->set_random_3(L_2); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_3 = ___tpq0; __this->set_workQueue_1(L_3); WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_4 = (WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB *)il2cpp_codegen_object_new(WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB_il2cpp_TypeInfo_var); WorkStealingQueue__ctor_m5A30B12A759E1174AB423856CECBF73B5A5FA91A(L_4, /*hidden argument*/NULL); __this->set_workStealingQueue_2(L_4); IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_il2cpp_TypeInfo_var); SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB * L_5 = ((ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_il2cpp_TypeInfo_var))->get_allThreadQueues_2(); WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_6 = __this->get_workStealingQueue_2(); NullCheck(L_5); SparseArray_1_Add_mE48A7F17E902019686E15A72766DD0AB4CE80971(L_5, L_6, /*hidden argument*/SparseArray_1_Add_mE48A7F17E902019686E15A72766DD0AB4CE80971_RuntimeMethod_var); return; } } // System.Void System.Threading.ThreadPoolWorkQueueThreadLocals::CleanUp() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueueThreadLocals_CleanUp_m2557E74F088EB8EC68E1DAB43458EDAF62F30C04 (ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadPoolWorkQueueThreadLocals_CleanUp_m2557E74F088EB8EC68E1DAB43458EDAF62F30C04_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; RuntimeObject* V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_0 = __this->get_workStealingQueue_2(); if (!L_0) { goto IL_004d; } } { ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_1 = __this->get_workQueue_1(); if (!L_1) { goto IL_003d; } } { V_0 = (bool)0; goto IL_003a; } IL_0014: { } IL_0015: try { // begin try (depth: 1) IL2CPP_LEAVE(0x3A, FINALLY_0017); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0017; } FINALLY_0017: { // begin finally (depth: 1) { V_1 = (RuntimeObject*)NULL; WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_2 = __this->get_workStealingQueue_2(); NullCheck(L_2); bool L_3 = WorkStealingQueue_LocalPop_m99B519E8984D358D1816A9E01B7A9CD4607B42D0(L_2, (RuntimeObject**)(&V_1), /*hidden argument*/NULL); if (!L_3) { goto IL_0037; } } IL_0028: { ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011 * L_4 = __this->get_workQueue_1(); RuntimeObject* L_5 = V_1; NullCheck(L_4); ThreadPoolWorkQueue_Enqueue_m0F5AAE9773892321562E794066DD4DBDF4DCA100(L_4, L_5, (bool)1, /*hidden argument*/NULL); goto IL_0039; } IL_0037: { V_0 = (bool)1; } IL_0039: { IL2CPP_END_FINALLY(23) } } // end finally (depth: 1) IL2CPP_CLEANUP(23) { IL2CPP_JUMP_TBL(0x3A, IL_003a) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_003a: { bool L_6 = V_0; if (!L_6) { goto IL_0014; } } IL_003d: { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_il2cpp_TypeInfo_var); SparseArray_1_tA9BA23F30984048431C40A4D4B5215A15A64B4EB * L_7 = ((ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_StaticFields*)il2cpp_codegen_static_fields_for(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_il2cpp_TypeInfo_var))->get_allThreadQueues_2(); WorkStealingQueue_tFC6A568537E943B70FB9A859876D16E7DB7A84DB * L_8 = __this->get_workStealingQueue_2(); NullCheck(L_7); SparseArray_1_Remove_mEBA9CD59097C8D0C153E48328C21554B81E68414(L_7, L_8, /*hidden argument*/SparseArray_1_Remove_mEBA9CD59097C8D0C153E48328C21554B81E68414_RuntimeMethod_var); } IL_004d: { return; } } // System.Void System.Threading.ThreadPoolWorkQueueThreadLocals::Finalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadPoolWorkQueueThreadLocals_Finalize_m47A721982E2448A104A4ED364812F834D9A9566A (ThreadPoolWorkQueueThreadLocals_tFFA030E536583A69A43878F3ABA0DEEC02C33F0B * __this, const RuntimeMethod* method) { Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) { bool L_0 = Environment_get_HasShutdownStarted_m722CC30F8A3C58FE3165427FF2858922C13F7A5C(/*hidden argument*/NULL); if (L_0) { goto IL_0019; } } IL_0007: { AppDomain_t1B59572328F60585904DF52A59FE47CF5B5FFFF8 * L_1 = AppDomain_get_CurrentDomain_m3D3D52C9382D6853E49551DA6182DBC5F1118BF0(/*hidden argument*/NULL); NullCheck(L_1); bool L_2 = AppDomain_IsFinalizingForUnload_m1B3D0DA1C7AEA3D6FA5D7D52161B2FF52B2D9912(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0019; } } IL_0013: { ThreadPoolWorkQueueThreadLocals_CleanUp_m2557E74F088EB8EC68E1DAB43458EDAF62F30C04(__this, /*hidden argument*/NULL); } IL_0019: { IL2CPP_LEAVE(0x22, FINALLY_001b); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_001b; } FINALLY_001b: { // begin finally (depth: 1) Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(27) } // end finally (depth: 1) IL2CPP_CLEANUP(27) { IL2CPP_JUMP_TBL(0x22, IL_0022) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0022: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C void DelegatePInvokeWrapper_ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF (ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * __this, const RuntimeMethod* method) { typedef void (DEFAULT_CALL *PInvokeFunc)(); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method)); // Native function invocation il2cppPInvokeFunc(); } // System.Void System.Threading.ThreadStart::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadStart__ctor_m692348FEAEBAF381D62984EE95B217CC024A77D5 (ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Threading.ThreadStart::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadStart_Invoke_m11B6A66E82F02C74399A7314C14C7F52393CC4B4 (ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * __this, const RuntimeMethod* method) { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 0) { // open typedef void (*FunctionPointerType) (const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker0::Invoke(targetMethod, targetThis); else GenericVirtActionInvoker0::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } else { typedef void (*FunctionPointerType) (void*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } } // System.IAsyncResult System.Threading.ThreadStart::BeginInvoke(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ThreadStart_BeginInvoke_m2CBFF19727A6FBB74BE23E975E904C3A5483FB0F (ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * __this, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method) { void *__d_args[1] = {0}; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1); } // System.Void System.Threading.ThreadStart::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadStart_EndInvoke_mC06D26402F1297A8E3932D15140A29577BF2F857 (ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.ThreadStateException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadStateException__ctor_m45CB0F9C9BFBAE82CD65CB8AEDB9EE9C1A2027FA (ThreadStateException_tCE60AB1B9E16A6D13E3926137BA55832ABE986AE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThreadStateException__ctor_m45CB0F9C9BFBAE82CD65CB8AEDB9EE9C1A2027FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAA37CB5B40E647E124F23CC3C27C68F09181CE0D, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233056), /*hidden argument*/NULL); return; } } // System.Void System.Threading.ThreadStateException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadStateException__ctor_m8269A7EE51BF315AD8C0A4B64C2B2319035BB767 (ThreadStateException_tCE60AB1B9E16A6D13E3926137BA55832ABE986AE * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233056), /*hidden argument*/NULL); return; } } // System.Void System.Threading.ThreadStateException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThreadStateException__ctor_m977994CF05BB56040152C0F84DF00A8426ACCCB4 (ThreadStateException_tCE60AB1B9E16A6D13E3926137BA55832ABE986AE * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Timeout::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timeout__cctor_m9C4BFE11D3494ED5DB59176974B66055093F26D9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Timeout__cctor_m9C4BFE11D3494ED5DB59176974B66055093F26D9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0; memset((&L_0), 0, sizeof(L_0)); TimeSpan__ctor_m310F37AF5F9F91433A98062BF6E4A248AA6C3DE5((&L_0), 0, 0, 0, 0, (-1), /*hidden argument*/NULL); ((Timeout_t148C37C092EAF5AFCE1D0C06481466A5F88E4C04_StaticFields*)il2cpp_codegen_static_fields_for(Timeout_t148C37C092EAF5AFCE1D0C06481466A5F88E4C04_il2cpp_TypeInfo_var))->set_InfiniteTimeSpan_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UInt32 System.Threading.TimeoutHelper::GetTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TimeoutHelper_GetTime_m6AD4BA5DCA9E4102DC18395A59123E91EB915D98 (const RuntimeMethod* method) { { int32_t L_0 = Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C(/*hidden argument*/NULL); return L_0; } } // System.Int32 System.Threading.TimeoutHelper::UpdateTimeOut(System.UInt32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeoutHelper_UpdateTimeOut_mC735C89ED9256E7BD6B8AC2068A8A50DDDB4F45D (uint32_t ___startTime0, int32_t ___originalWaitMillisecondsTimeout1, const RuntimeMethod* method) { uint32_t V_0 = 0; int32_t V_1 = 0; { uint32_t L_0 = TimeoutHelper_GetTime_m6AD4BA5DCA9E4102DC18395A59123E91EB915D98(/*hidden argument*/NULL); uint32_t L_1 = ___startTime0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); uint32_t L_2 = V_0; if ((!(((uint32_t)L_2) > ((uint32_t)((int32_t)2147483647LL))))) { goto IL_0012; } } { return 0; } IL_0012: { int32_t L_3 = ___originalWaitMillisecondsTimeout1; uint32_t L_4 = V_0; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4)); int32_t L_5 = V_1; if ((((int32_t)L_5) > ((int32_t)0))) { goto IL_001c; } } { return 0; } IL_001c: { int32_t L_6 = V_1; return L_6; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Timer::.ctor(System.Threading.TimerCallback,System.Object,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer__ctor_mD4A4B4616E25E39A422DD8083930951535AE8BA1 (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * ___callback0, RuntimeObject * ___state1, int32_t ___dueTime2, int32_t ___period3, const RuntimeMethod* method) { { MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL); TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * L_0 = ___callback0; RuntimeObject * L_1 = ___state1; int32_t L_2 = ___dueTime2; int32_t L_3 = ___period3; Timer_Init_mF69134A3E2C8A2B79BA925BCF687B3DCBBF4AB65(__this, L_0, L_1, (((int64_t)((int64_t)L_2))), (((int64_t)((int64_t)L_3))), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Timer::.ctor(System.Threading.TimerCallback,System.Object,System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer__ctor_mE731E24B4A4D66AD0A34BF604E904E403A7959CF (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * ___callback0, RuntimeObject * ___state1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___dueTime2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___period3, const RuntimeMethod* method) { { MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL); TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * L_0 = ___callback0; RuntimeObject * L_1 = ___state1; double L_2 = TimeSpan_get_TotalMilliseconds_m48B00B27D485CC556C10A5119BC11E1A1E0FE363((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___dueTime2), /*hidden argument*/NULL); double L_3 = TimeSpan_get_TotalMilliseconds_m48B00B27D485CC556C10A5119BC11E1A1E0FE363((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___period3), /*hidden argument*/NULL); Timer_Init_mF69134A3E2C8A2B79BA925BCF687B3DCBBF4AB65(__this, L_0, L_1, (((int64_t)((int64_t)L_2))), (((int64_t)((int64_t)L_3))), /*hidden argument*/NULL); return; } } // System.Void System.Threading.Timer::Init(System.Threading.TimerCallback,System.Object,System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer_Init_mF69134A3E2C8A2B79BA925BCF687B3DCBBF4AB65 (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * ___callback0, RuntimeObject * ___state1, int64_t ___dueTime2, int64_t ___period3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Timer_Init_mF69134A3E2C8A2B79BA925BCF687B3DCBBF4AB65_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * L_0 = ___callback0; 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, _stringLiteralB4D5B37BF7A986C138EDE89E0806F366B5CB1830, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Timer_Init_mF69134A3E2C8A2B79BA925BCF687B3DCBBF4AB65_RuntimeMethod_var); } IL_000e: { TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * L_2 = ___callback0; __this->set_callback_2(L_2); RuntimeObject * L_3 = ___state1; __this->set_state_3(L_3); int64_t L_4 = ___dueTime2; int64_t L_5 = ___period3; Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6(__this, L_4, L_5, (bool)1, /*hidden argument*/NULL); return; } } // System.Boolean System.Threading.Timer::Change(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Timer_Change_mF2EE1A30C21C82757352489E6D49FF6D38573694 (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___dueTime0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___period1, const RuntimeMethod* method) { { double L_0 = TimeSpan_get_TotalMilliseconds_m48B00B27D485CC556C10A5119BC11E1A1E0FE363((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___dueTime0), /*hidden argument*/NULL); double L_1 = TimeSpan_get_TotalMilliseconds_m48B00B27D485CC556C10A5119BC11E1A1E0FE363((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___period1), /*hidden argument*/NULL); bool L_2 = Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6(__this, (((int64_t)((int64_t)L_0))), (((int64_t)((int64_t)L_1))), (bool)0, /*hidden argument*/NULL); return L_2; } } // System.Void System.Threading.Timer::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer_Dispose_mAD09E4EAC3D4A4732B55911919A60CACCF8173D9 (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Timer_Dispose_mAD09E4EAC3D4A4732B55911919A60CACCF8173D9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_disposed_7(); if (!L_0) { goto IL_0009; } } { return; } IL_0009: { __this->set_disposed_7((bool)1); IL2CPP_RUNTIME_CLASS_INIT(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var); Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_1 = ((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_StaticFields*)il2cpp_codegen_static_fields_for(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var))->get_scheduler_1(); NullCheck(L_1); Scheduler_Remove_m5D87E925B0C6E4BFB7C68F6614C133ADA2628148(L_1, __this, /*hidden argument*/NULL); return; } } // System.Boolean System.Threading.Timer::Change(System.Int64,System.Int64,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6 (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, int64_t ___dueTime0, int64_t ___period1, bool ___first2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { int64_t L_0 = ___dueTime0; if ((((int64_t)L_0) <= ((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)-2)))))))))) { goto IL_0016; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_1, _stringLiteralFD9D0C913A99959CCA8988A4605411D970AF3F59, _stringLiteralEF9A26B1AEA755741D0AC956EF8DC9AFB09E7B01, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6_RuntimeMethod_var); } IL_0016: { int64_t L_2 = ___period1; if ((((int64_t)L_2) <= ((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)-2)))))))))) { goto IL_002c; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteral54235B8B0E980EBB3355126954C130A816A21AFB, _stringLiteral13F7B4FA7CBA65EC1811F8A5C085117CD3DF5506, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6_RuntimeMethod_var); } IL_002c: { int64_t L_4 = ___dueTime0; if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)(-1))))))) { goto IL_003c; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_5, _stringLiteralFD9D0C913A99959CCA8988A4605411D970AF3F59, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6_RuntimeMethod_var); } IL_003c: { int64_t L_6 = ___period1; if ((((int64_t)L_6) >= ((int64_t)(((int64_t)((int64_t)(-1))))))) { goto IL_004c; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_7, _stringLiteral54235B8B0E980EBB3355126954C130A816A21AFB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6_RuntimeMethod_var); } IL_004c: { bool L_8 = __this->get_disposed_7(); if (!L_8) { goto IL_0065; } } { String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4A9B136550890770D29DF6A00FAA574C173789AD, /*hidden argument*/NULL); ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_10 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC(L_10, (String_t*)NULL, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, Timer_Change_m0D893D7C243B79E85CDD8E06F366F0744F6637D6_RuntimeMethod_var); } IL_0065: { int64_t L_11 = ___dueTime0; __this->set_due_time_ms_4(L_11); int64_t L_12 = ___period1; __this->set_period_ms_5(L_12); int64_t L_13 = ___dueTime0; if (L_13) { goto IL_007b; } } { V_0 = (((int64_t)((int64_t)0))); goto IL_00a5; } IL_007b: { int64_t L_14 = ___dueTime0; if ((((int64_t)L_14) >= ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_0096; } } { V_0 = ((int64_t)(std::numeric_limits<int64_t>::max)()); bool L_15 = ___first2; if (!L_15) { goto IL_00a5; } } { int64_t L_16 = V_0; __this->set_next_run_6(L_16); return (bool)1; } IL_0096: { int64_t L_17 = ___dueTime0; IL2CPP_RUNTIME_CLASS_INIT(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var); int64_t L_18 = Timer_GetTimeMonotonic_m4B6169CEEE39504646E976FBF26B3EFBD609ABFA(/*hidden argument*/NULL); V_0 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_17, (int64_t)(((int64_t)((int64_t)((int32_t)10000)))))), (int64_t)L_18)); } IL_00a5: { IL2CPP_RUNTIME_CLASS_INIT(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var); Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_19 = ((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_StaticFields*)il2cpp_codegen_static_fields_for(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var))->get_scheduler_1(); int64_t L_20 = V_0; NullCheck(L_19); Scheduler_Change_m0B2CF9E01BA6732CE701861DFE5142200CD6654C(L_19, __this, L_20, /*hidden argument*/NULL); return (bool)1; } } // System.Void System.Threading.Timer::KeepRootedWhileScheduled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer_KeepRootedWhileScheduled_mDB50A8671E3759074432E0E4EEBF1BD90B721829 (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, const RuntimeMethod* method) { { return; } } // System.Int64 System.Threading.Timer::GetTimeMonotonic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Timer_GetTimeMonotonic_m4B6169CEEE39504646E976FBF26B3EFBD609ABFA (const RuntimeMethod* method) { typedef int64_t (*Timer_GetTimeMonotonic_m4B6169CEEE39504646E976FBF26B3EFBD609ABFA_ftn) (); using namespace il2cpp::icalls; return ((Timer_GetTimeMonotonic_m4B6169CEEE39504646E976FBF26B3EFBD609ABFA_ftn)mscorlib::System::Threading::Timer::GetTimeMonotonic) (); } // System.Void System.Threading.Timer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer__cctor_m0A46AD4FB7C3B912E23811F586FED0391767A2EF (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Timer__cctor_m0A46AD4FB7C3B912E23811F586FED0391767A2EF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_il2cpp_TypeInfo_var); Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_0 = Scheduler_get_Instance_mAD166DADAB60F24F15A36BD49F67172084AA9B4C_inline(/*hidden argument*/NULL); ((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_StaticFields*)il2cpp_codegen_static_fields_for(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var))->set_scheduler_1(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.Timer_Scheduler::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler__cctor_mF399300AD4750C3FA6E8BFE5DDF32162B6F1AB9B (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Scheduler__cctor_mF399300AD4750C3FA6E8BFE5DDF32162B6F1AB9B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_0 = (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 *)il2cpp_codegen_object_new(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_il2cpp_TypeInfo_var); Scheduler__ctor_mA11657BA808AF374E216FDAAA472E18F00B84FEB(L_0, /*hidden argument*/NULL); ((Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_StaticFields*)il2cpp_codegen_static_fields_for(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_il2cpp_TypeInfo_var))->set_instance_0(L_0); return; } } // System.Threading.Timer_Scheduler System.Threading.Timer_Scheduler::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * Scheduler_get_Instance_mAD166DADAB60F24F15A36BD49F67172084AA9B4C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Scheduler_get_Instance_mAD166DADAB60F24F15A36BD49F67172084AA9B4C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_il2cpp_TypeInfo_var); Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_0 = ((Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_StaticFields*)il2cpp_codegen_static_fields_for(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_il2cpp_TypeInfo_var))->get_instance_0(); return L_0; } } // System.Void System.Threading.Timer_Scheduler::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler__ctor_mA11657BA808AF374E216FDAAA472E18F00B84FEB (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Scheduler__ctor_mA11657BA808AF374E216FDAAA472E18F00B84FEB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * L_0 = (ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 *)il2cpp_codegen_object_new(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_il2cpp_TypeInfo_var); ManualResetEvent__ctor_m8973D9E3C622B9602641C017A33870F51D0311E1(L_0, (bool)0, /*hidden argument*/NULL); __this->set_changed_2(L_0); TimerComparer_tC987818CFADF2F3ECEB89C0BD510600DAD816015 * L_1 = (TimerComparer_tC987818CFADF2F3ECEB89C0BD510600DAD816015 *)il2cpp_codegen_object_new(TimerComparer_tC987818CFADF2F3ECEB89C0BD510600DAD816015_il2cpp_TypeInfo_var); TimerComparer__ctor_m4286C1A800BFB3F6A065A9DB0122B7FC1A440F22(L_1, /*hidden argument*/NULL); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_2 = (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E *)il2cpp_codegen_object_new(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_il2cpp_TypeInfo_var); SortedList__ctor_mE69C668800C6AF9EE9C745E046E151352D424E79(L_2, L_1, ((int32_t)1024), /*hidden argument*/NULL); __this->set_list_1(L_2); ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF * L_3 = (ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF *)il2cpp_codegen_object_new(ThreadStart_t09FFA4371E4B2A713F212B157CC9B8B61983B5BF_il2cpp_TypeInfo_var); ThreadStart__ctor_m692348FEAEBAF381D62984EE95B217CC024A77D5(L_3, __this, (intptr_t)((intptr_t)Scheduler_SchedulerThread_m9D548ED1E24E29E6CB64A3C7F1FF42FA25054CF1_RuntimeMethod_var), /*hidden argument*/NULL); Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_4 = (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 *)il2cpp_codegen_object_new(Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7_il2cpp_TypeInfo_var); Thread__ctor_m36A33B990160C4499E991D288341CA325AE66DDD(L_4, L_3, /*hidden argument*/NULL); Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_5 = L_4; NullCheck(L_5); Thread_set_IsBackground_mF62551A195DCB09D44E512F52916145E39362D39(L_5, (bool)1, /*hidden argument*/NULL); NullCheck(L_5); Thread_Start_mE2AC4744AFD147FDC84E8D9317B4E3AB890BC2D6(L_5, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Timer_Scheduler::Remove(System.Threading.Timer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler_Remove_m5D87E925B0C6E4BFB7C68F6614C133ADA2628148 (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * ___timer0, const RuntimeMethod* method) { Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_0 = ___timer0; NullCheck(L_0); int64_t L_1 = L_0->get_next_run_6(); if (!L_1) { goto IL_0019; } } { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_2 = ___timer0; NullCheck(L_2); int64_t L_3 = L_2->get_next_run_6(); if ((!(((uint64_t)L_3) == ((uint64_t)((int64_t)(std::numeric_limits<int64_t>::max)()))))) { goto IL_001a; } } IL_0019: { return; } IL_001a: { V_0 = __this; V_1 = (bool)0; } IL_001e: try { // begin try (depth: 1) Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_4 = V_0; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_4, (bool*)(&V_1), /*hidden argument*/NULL); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_5 = ___timer0; Scheduler_InternalRemove_m7B12673F6C5012E19754EF3C2E9BD9438D5D23BD(__this, L_5, /*hidden argument*/NULL); IL2CPP_LEAVE(0x3A, FINALLY_0030); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0030; } FINALLY_0030: { // begin finally (depth: 1) { bool L_6 = V_1; if (!L_6) { goto IL_0039; } } IL_0033: { Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_7 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL); } IL_0039: { IL2CPP_END_FINALLY(48) } } // end finally (depth: 1) IL2CPP_CLEANUP(48) { IL2CPP_JUMP_TBL(0x3A, IL_003a) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_003a: { return; } } // System.Void System.Threading.Timer_Scheduler::Change(System.Threading.Timer,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler_Change_m0B2CF9E01BA6732CE701861DFE5142200CD6654C (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * ___timer0, int64_t ___new_next_run1, const RuntimeMethod* method) { bool V_0 = false; Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * V_1 = NULL; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { V_0 = (bool)0; V_1 = __this; V_2 = (bool)0; } IL_0006: try { // begin try (depth: 1) { Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_0 = V_1; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_0, (bool*)(&V_2), /*hidden argument*/NULL); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_1 = ___timer0; Scheduler_InternalRemove_m7B12673F6C5012E19754EF3C2E9BD9438D5D23BD(__this, L_1, /*hidden argument*/NULL); int64_t L_2 = ___new_next_run1; if ((!(((uint64_t)L_2) == ((uint64_t)((int64_t)(std::numeric_limits<int64_t>::max)()))))) { goto IL_002b; } } IL_0022: { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_3 = ___timer0; int64_t L_4 = ___new_next_run1; NullCheck(L_3); L_3->set_next_run_6(L_4); IL2CPP_LEAVE(0x6C, FINALLY_0053); } IL_002b: { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_5 = ___timer0; NullCheck(L_5); bool L_6 = L_5->get_disposed_7(); if (L_6) { goto IL_0051; } } IL_0033: { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_7 = ___timer0; int64_t L_8 = ___new_next_run1; NullCheck(L_7); L_7->set_next_run_6(L_8); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_9 = ___timer0; Scheduler_Add_m669D8B05D43F207A8BE1AA1912154AB6F0E9EBEB(__this, L_9, /*hidden argument*/NULL); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_10 = __this->get_list_1(); NullCheck(L_10); RuntimeObject * L_11 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(19 /* System.Object System.Collections.SortedList::GetByIndex(System.Int32) */, L_10, 0); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_12 = ___timer0; V_0 = (bool)((((RuntimeObject*)(RuntimeObject *)L_11) == ((RuntimeObject*)(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)L_12))? 1 : 0); } IL_0051: { IL2CPP_LEAVE(0x5D, FINALLY_0053); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0053; } FINALLY_0053: { // begin finally (depth: 1) { bool L_13 = V_2; if (!L_13) { goto IL_005c; } } IL_0056: { Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_14 = V_1; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_14, /*hidden argument*/NULL); } IL_005c: { IL2CPP_END_FINALLY(83) } } // end finally (depth: 1) IL2CPP_CLEANUP(83) { IL2CPP_JUMP_TBL(0x6C, IL_006c) IL2CPP_JUMP_TBL(0x5D, IL_005d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_005d: { bool L_15 = V_0; if (!L_15) { goto IL_006c; } } { ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * L_16 = __this->get_changed_2(); NullCheck(L_16); EventWaitHandle_Set_m7959A86A39735296FC949EC86FDA42A6CFAAB94C(L_16, /*hidden argument*/NULL); } IL_006c: { return; } } // System.Int32 System.Threading.Timer_Scheduler::FindByDueTime(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Scheduler_FindByDueTime_m2B255CEF6EC7B56CD41F4FD299E09CAAE062D5FB (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, int64_t ___nr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Scheduler_FindByDueTime_m2B255CEF6EC7B56CD41F4FD299E09CAAE062D5FB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * V_2 = NULL; int32_t V_3 = 0; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * V_4 = NULL; { V_0 = 0; SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_0 = __this->get_list_1(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, L_0); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_1; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_0016; } } { return (-1); } IL_0016: { int32_t L_3 = V_1; if ((((int32_t)L_3) >= ((int32_t)((int32_t)20)))) { goto IL_008a; } } { goto IL_0049; } IL_001d: { SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_4 = __this->get_list_1(); int32_t L_5 = V_0; NullCheck(L_4); RuntimeObject * L_6 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(19 /* System.Object System.Collections.SortedList::GetByIndex(System.Int32) */, L_4, L_5); V_2 = ((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)CastclassSealed((RuntimeObject*)L_6, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var)); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_7 = V_2; NullCheck(L_7); int64_t L_8 = L_7->get_next_run_6(); int64_t L_9 = ___nr0; if ((!(((uint64_t)L_8) == ((uint64_t)L_9)))) { goto IL_003a; } } { int32_t L_10 = V_0; return L_10; } IL_003a: { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_11 = V_2; NullCheck(L_11); int64_t L_12 = L_11->get_next_run_6(); int64_t L_13 = ___nr0; if ((((int64_t)L_12) <= ((int64_t)L_13))) { goto IL_0045; } } { return (-1); } IL_0045: { int32_t L_14 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); } IL_0049: { int32_t L_15 = V_0; int32_t L_16 = V_1; if ((((int32_t)L_15) <= ((int32_t)L_16))) { goto IL_001d; } } { return (-1); } IL_004f: { int32_t L_17 = V_0; int32_t L_18 = V_1; int32_t L_19 = V_0; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19))>>(int32_t)1)))); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_20 = __this->get_list_1(); int32_t L_21 = V_3; NullCheck(L_20); RuntimeObject * L_22 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(19 /* System.Object System.Collections.SortedList::GetByIndex(System.Int32) */, L_20, L_21); V_4 = ((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)CastclassSealed((RuntimeObject*)L_22, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var)); int64_t L_23 = ___nr0; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_24 = V_4; NullCheck(L_24); int64_t L_25 = L_24->get_next_run_6(); if ((!(((uint64_t)L_23) == ((uint64_t)L_25)))) { goto IL_0076; } } { int32_t L_26 = V_3; return L_26; } IL_0076: { int64_t L_27 = ___nr0; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_28 = V_4; NullCheck(L_28); int64_t L_29 = L_28->get_next_run_6(); if ((((int64_t)L_27) <= ((int64_t)L_29))) { goto IL_0086; } } { int32_t L_30 = V_3; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); goto IL_008a; } IL_0086: { int32_t L_31 = V_3; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1)); } IL_008a: { int32_t L_32 = V_0; int32_t L_33 = V_1; if ((((int32_t)L_32) <= ((int32_t)L_33))) { goto IL_004f; } } { return (-1); } } // System.Void System.Threading.Timer_Scheduler::Add(System.Threading.Timer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler_Add_m669D8B05D43F207A8BE1AA1912154AB6F0E9EBEB (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * ___timer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Scheduler_Add_m669D8B05D43F207A8BE1AA1912154AB6F0E9EBEB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; bool V_1 = false; int32_t G_B4_0 = 0; { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_0 = ___timer0; NullCheck(L_0); int64_t L_1 = L_0->get_next_run_6(); int32_t L_2 = Scheduler_FindByDueTime_m2B255CEF6EC7B56CD41F4FD299E09CAAE062D5FB(__this, L_1, /*hidden argument*/NULL); V_0 = L_2; int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)(-1)))) { goto IL_0081; } } { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_4 = ___timer0; NullCheck(L_4); int64_t L_5 = L_4->get_next_run_6(); if ((((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)((int64_t)(std::numeric_limits<int64_t>::max)()), (int64_t)L_5))) > ((int64_t)(((int64_t)((int64_t)((int32_t)20000))))))) { goto IL_002c; } } { G_B4_0 = 0; goto IL_002d; } IL_002c: { G_B4_0 = 1; } IL_002d: { V_1 = (bool)G_B4_0; } IL_002e: { int32_t L_6 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); bool L_7 = V_1; if (!L_7) { goto IL_0046; } } { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_8 = ___timer0; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_9 = L_8; NullCheck(L_9); int64_t L_10 = L_9->get_next_run_6(); NullCheck(L_9); L_9->set_next_run_6(((int64_t)il2cpp_codegen_add((int64_t)L_10, (int64_t)(((int64_t)((int64_t)1)))))); goto IL_0055; } IL_0046: { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_11 = ___timer0; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_12 = L_11; NullCheck(L_12); int64_t L_13 = L_12->get_next_run_6(); NullCheck(L_12); L_12->set_next_run_6(((int64_t)il2cpp_codegen_subtract((int64_t)L_13, (int64_t)(((int64_t)((int64_t)1)))))); } IL_0055: { int32_t L_14 = V_0; SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_15 = __this->get_list_1(); NullCheck(L_15); int32_t L_16 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, L_15); if ((((int32_t)L_14) >= ((int32_t)L_16))) { goto IL_0081; } } { SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_17 = __this->get_list_1(); int32_t L_18 = V_0; NullCheck(L_17); RuntimeObject * L_19 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(19 /* System.Object System.Collections.SortedList::GetByIndex(System.Int32) */, L_17, L_18); NullCheck(((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)CastclassSealed((RuntimeObject*)L_19, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var))); int64_t L_20 = ((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)CastclassSealed((RuntimeObject*)L_19, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var))->get_next_run_6(); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_21 = ___timer0; NullCheck(L_21); int64_t L_22 = L_21->get_next_run_6(); if ((((int64_t)L_20) == ((int64_t)L_22))) { goto IL_002e; } } IL_0081: { SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_23 = __this->get_list_1(); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_24 = ___timer0; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_25 = ___timer0; NullCheck(L_23); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(12 /* System.Void System.Collections.SortedList::Add(System.Object,System.Object) */, L_23, L_24, L_25); return; } } // System.Int32 System.Threading.Timer_Scheduler::InternalRemove(System.Threading.Timer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Scheduler_InternalRemove_m7B12673F6C5012E19754EF3C2E9BD9438D5D23BD (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * ___timer0, const RuntimeMethod* method) { int32_t V_0 = 0; { SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_0 = __this->get_list_1(); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_1 = ___timer0; NullCheck(L_0); int32_t L_2 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.SortedList::IndexOfKey(System.Object) */, L_0, L_1); V_0 = L_2; int32_t L_3 = V_0; if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_001d; } } { SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_4 = __this->get_list_1(); int32_t L_5 = V_0; NullCheck(L_4); VirtActionInvoker1< int32_t >::Invoke(25 /* System.Void System.Collections.SortedList::RemoveAt(System.Int32) */, L_4, L_5); } IL_001d: { int32_t L_6 = V_0; return L_6; } } // System.Void System.Threading.Timer_Scheduler::TimerCB(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler_TimerCB_m2EB04474CB0C68B572FDDDBC2641CE749CB3BFB1 (RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Scheduler_TimerCB_m2EB04474CB0C68B572FDDDBC2641CE749CB3BFB1_MetadataUsageId); s_Il2CppMethodInitialized = true; } Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * V_0 = NULL; { RuntimeObject * L_0 = ___o0; V_0 = ((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)CastclassSealed((RuntimeObject*)L_0, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var)); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_1 = V_0; NullCheck(L_1); TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * L_2 = L_1->get_callback_2(); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_3 = V_0; NullCheck(L_3); RuntimeObject * L_4 = L_3->get_state_3(); NullCheck(L_2); TimerCallback_Invoke_m64E1279AA84FA0D01697CB6D7B3D8C01959B4A50(L_2, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Threading.Timer_Scheduler::SchedulerThread() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler_SchedulerThread_m9D548ED1E24E29E6CB64A3C7F1FF42FA25054CF1 (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Scheduler_SchedulerThread_m9D548ED1E24E29E6CB64A3C7F1FF42FA25054CF1_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * V_0 = NULL; int32_t V_1 = 0; int64_t V_2 = 0; Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * V_3 = NULL; bool V_4 = false; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int64_t V_8 = 0; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * V_9 = NULL; int64_t V_10 = 0; int64_t V_11 = 0; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * V_12 = NULL; int64_t V_13 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B10_0 = 0; { Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_0 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL); NullCheck(L_0); Thread_set_Name_mEBD0DF20D69C49612949EA6F24E8E4EADB7F5E77(L_0, _stringLiteralE06B0DE168F97FA3ED2ADE13FDB940C9BFE62E87, /*hidden argument*/NULL); List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * L_1 = (List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 *)il2cpp_codegen_object_new(List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116_il2cpp_TypeInfo_var); List_1__ctor_m7C148B97DC87A9125BDE2F8876642459D8A30954(L_1, ((int32_t)512), /*hidden argument*/List_1__ctor_m7C148B97DC87A9125BDE2F8876642459D8A30954_RuntimeMethod_var); V_0 = L_1; } IL_001a: { V_1 = (-1); IL2CPP_RUNTIME_CLASS_INIT(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var); int64_t L_2 = Timer_GetTimeMonotonic_m4B6169CEEE39504646E976FBF26B3EFBD609ABFA(/*hidden argument*/NULL); V_2 = L_2; V_3 = __this; V_4 = (bool)0; } IL_0027: try { // begin try (depth: 1) { Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_3 = V_3; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_3, (bool*)(&V_4), /*hidden argument*/NULL); ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * L_4 = __this->get_changed_2(); NullCheck(L_4); EventWaitHandle_Reset_m59EBCEA32BC9C67B4E432BEA5FF0A42ED0CC8A6F(L_4, /*hidden argument*/NULL); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_5 = __this->get_list_1(); NullCheck(L_5); int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, L_5); V_6 = L_6; V_5 = 0; goto IL_010c; } IL_0050: { SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_7 = __this->get_list_1(); int32_t L_8 = V_5; NullCheck(L_7); RuntimeObject * L_9 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(19 /* System.Object System.Collections.SortedList::GetByIndex(System.Int32) */, L_7, L_8); V_9 = ((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)CastclassSealed((RuntimeObject*)L_9, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var)); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_10 = V_9; NullCheck(L_10); int64_t L_11 = L_10->get_next_run_6(); int64_t L_12 = V_2; if ((((int64_t)L_11) > ((int64_t)L_12))) { goto IL_0115; } } IL_0071: { SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_13 = __this->get_list_1(); int32_t L_14 = V_5; NullCheck(L_13); VirtActionInvoker1< int32_t >::Invoke(25 /* System.Void System.Collections.SortedList::RemoveAt(System.Int32) */, L_13, L_14); int32_t L_15 = V_6; V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1)); int32_t L_16 = V_5; V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)); WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_17 = (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC *)il2cpp_codegen_object_new(WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC_il2cpp_TypeInfo_var); WaitCallback__ctor_m375A357FD7C64F4182FD88B8276D88FE5BE75B31(L_17, NULL, (intptr_t)((intptr_t)Scheduler_TimerCB_m2EB04474CB0C68B572FDDDBC2641CE749CB3BFB1_RuntimeMethod_var), /*hidden argument*/NULL); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_18 = V_9; ThreadPool_UnsafeQueueUserWorkItem_mA410427123962A9362AB7314149396196928ECC7(L_17, L_18, /*hidden argument*/NULL); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_19 = V_9; NullCheck(L_19); int64_t L_20 = L_19->get_period_ms_5(); V_10 = L_20; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_21 = V_9; NullCheck(L_21); int64_t L_22 = L_21->get_due_time_ms_4(); V_11 = L_22; int64_t L_23 = V_10; if ((((int64_t)L_23) == ((int64_t)(((int64_t)((int64_t)(-1))))))) { goto IL_00ce; } } IL_00b6: { int64_t L_24 = V_10; if (!L_24) { goto IL_00c0; } } IL_00ba: { int64_t L_25 = V_10; if ((!(((uint64_t)L_25) == ((uint64_t)(((int64_t)((int64_t)(-1)))))))) { goto IL_00cb; } } IL_00c0: { int64_t L_26 = V_11; G_B10_0 = ((((int32_t)((((int64_t)L_26) == ((int64_t)(((int64_t)((int64_t)(-1))))))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_00cf; } IL_00cb: { G_B10_0 = 0; goto IL_00cf; } IL_00ce: { G_B10_0 = 1; } IL_00cf: { if (!G_B10_0) { goto IL_00e3; } } IL_00d1: { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_27 = V_9; NullCheck(L_27); L_27->set_next_run_6(((int64_t)(std::numeric_limits<int64_t>::max)())); goto IL_0106; } IL_00e3: { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_28 = V_9; IL2CPP_RUNTIME_CLASS_INIT(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var); int64_t L_29 = Timer_GetTimeMonotonic_m4B6169CEEE39504646E976FBF26B3EFBD609ABFA(/*hidden argument*/NULL); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_30 = V_9; NullCheck(L_30); int64_t L_31 = L_30->get_period_ms_5(); NullCheck(L_28); L_28->set_next_run_6(((int64_t)il2cpp_codegen_add((int64_t)L_29, (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)((int32_t)10000)))), (int64_t)L_31))))); List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * L_32 = V_0; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_33 = V_9; NullCheck(L_32); List_1_Add_mB5A8963C62BC566BF95512C93EA0B5ED6D04B8E9(L_32, L_33, /*hidden argument*/List_1_Add_mB5A8963C62BC566BF95512C93EA0B5ED6D04B8E9_RuntimeMethod_var); } IL_0106: { int32_t L_34 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1)); } IL_010c: { int32_t L_35 = V_5; int32_t L_36 = V_6; if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_0050; } } IL_0115: { List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * L_37 = V_0; NullCheck(L_37); int32_t L_38 = List_1_get_Count_m102A5956CA038B4503A23CBAE433114532EC22E7_inline(L_37, /*hidden argument*/List_1_get_Count_m102A5956CA038B4503A23CBAE433114532EC22E7_RuntimeMethod_var); V_6 = L_38; V_5 = 0; goto IL_013a; } IL_0122: { List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * L_39 = V_0; int32_t L_40 = V_5; NullCheck(L_39); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_41 = List_1_get_Item_m6C76B0438807DFB527E73E6166D012198028ACBE_inline(L_39, L_40, /*hidden argument*/List_1_get_Item_m6C76B0438807DFB527E73E6166D012198028ACBE_RuntimeMethod_var); V_12 = L_41; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_42 = V_12; Scheduler_Add_m669D8B05D43F207A8BE1AA1912154AB6F0E9EBEB(__this, L_42, /*hidden argument*/NULL); int32_t L_43 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_013a: { int32_t L_44 = V_5; int32_t L_45 = V_6; if ((((int32_t)L_44) < ((int32_t)L_45))) { goto IL_0122; } } IL_0140: { List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * L_46 = V_0; NullCheck(L_46); List_1_Clear_mACBCDAD884AD8F4AB0A67F8E8626D5FD0C8C6A79(L_46, /*hidden argument*/List_1_Clear_mACBCDAD884AD8F4AB0A67F8E8626D5FD0C8C6A79_RuntimeMethod_var); List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * L_47 = V_0; Scheduler_ShrinkIfNeeded_m1DDE9B9B4FECA8D16C922391413085ABCB2B60E4(__this, L_47, ((int32_t)512), /*hidden argument*/NULL); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_48 = __this->get_list_1(); NullCheck(L_48); int32_t L_49 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.Collections.SortedList::get_Capacity() */, L_48); V_7 = L_49; SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_50 = __this->get_list_1(); NullCheck(L_50); int32_t L_51 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, L_50); V_6 = L_51; int32_t L_52 = V_7; if ((((int32_t)L_52) <= ((int32_t)((int32_t)1024)))) { goto IL_0191; } } IL_0175: { int32_t L_53 = V_6; if ((((int32_t)L_53) <= ((int32_t)0))) { goto IL_0191; } } IL_017a: { int32_t L_54 = V_7; int32_t L_55 = V_6; if ((((int32_t)((int32_t)((int32_t)L_54/(int32_t)L_55))) <= ((int32_t)3))) { goto IL_0191; } } IL_0182: { SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_56 = __this->get_list_1(); int32_t L_57 = V_6; NullCheck(L_56); VirtActionInvoker1< int32_t >::Invoke(14 /* System.Void System.Collections.SortedList::set_Capacity(System.Int32) */, L_56, ((int32_t)il2cpp_codegen_multiply((int32_t)L_57, (int32_t)2))); } IL_0191: { V_8 = ((int64_t)(std::numeric_limits<int64_t>::max)()); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_58 = __this->get_list_1(); NullCheck(L_58); int32_t L_59 = VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.Collections.SortedList::get_Count() */, L_58); if ((((int32_t)L_59) <= ((int32_t)0))) { goto IL_01c2; } } IL_01aa: { SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_60 = __this->get_list_1(); NullCheck(L_60); RuntimeObject * L_61 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(19 /* System.Object System.Collections.SortedList::GetByIndex(System.Int32) */, L_60, 0); NullCheck(((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)CastclassSealed((RuntimeObject*)L_61, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var))); int64_t L_62 = ((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)CastclassSealed((RuntimeObject*)L_61, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var))->get_next_run_6(); V_8 = L_62; } IL_01c2: { V_1 = (-1); int64_t L_63 = V_8; if ((((int64_t)L_63) == ((int64_t)((int64_t)(std::numeric_limits<int64_t>::max)())))) { goto IL_01fe; } } IL_01d1: { int64_t L_64 = V_8; IL2CPP_RUNTIME_CLASS_INIT(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var); int64_t L_65 = Timer_GetTimeMonotonic_m4B6169CEEE39504646E976FBF26B3EFBD609ABFA(/*hidden argument*/NULL); V_13 = ((int64_t)((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_64, (int64_t)L_65))/(int64_t)(((int64_t)((int64_t)((int32_t)10000)))))); int64_t L_66 = V_13; if ((((int64_t)L_66) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_01f4; } } IL_01ec: { V_1 = ((int32_t)2147483646); IL2CPP_LEAVE(0x20B, FINALLY_0200); } IL_01f4: { int64_t L_67 = V_13; V_1 = (((int32_t)((int32_t)L_67))); int32_t L_68 = V_1; if ((((int32_t)L_68) >= ((int32_t)0))) { goto IL_01fe; } } IL_01fc: { V_1 = 0; } IL_01fe: { IL2CPP_LEAVE(0x20B, FINALLY_0200); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0200; } FINALLY_0200: { // begin finally (depth: 1) { bool L_69 = V_4; if (!L_69) { goto IL_020a; } } IL_0204: { Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_70 = V_3; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_70, /*hidden argument*/NULL); } IL_020a: { IL2CPP_END_FINALLY(512) } } // end finally (depth: 1) IL2CPP_CLEANUP(512) { IL2CPP_JUMP_TBL(0x20B, IL_020b) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_020b: { ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * L_71 = __this->get_changed_2(); int32_t L_72 = V_1; NullCheck(L_71); VirtFuncInvoker1< bool, int32_t >::Invoke(10 /* System.Boolean System.Threading.WaitHandle::WaitOne(System.Int32) */, L_71, L_72); goto IL_001a; } } // System.Void System.Threading.Timer_Scheduler::ShrinkIfNeeded(System.Collections.Generic.List`1<System.Threading.Timer>,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scheduler_ShrinkIfNeeded_m1DDE9B9B4FECA8D16C922391413085ABCB2B60E4 (Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * __this, List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * ___list0, int32_t ___initial1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Scheduler_ShrinkIfNeeded_m1DDE9B9B4FECA8D16C922391413085ABCB2B60E4_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * L_0 = ___list0; NullCheck(L_0); int32_t L_1 = List_1_get_Capacity_m4E6CC6EB68ACB4009E66AE14C2969F02B644FAE7(L_0, /*hidden argument*/List_1_get_Capacity_m4E6CC6EB68ACB4009E66AE14C2969F02B644FAE7_RuntimeMethod_var); V_0 = L_1; List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * L_2 = ___list0; NullCheck(L_2); int32_t L_3 = List_1_get_Count_m102A5956CA038B4503A23CBAE433114532EC22E7_inline(L_2, /*hidden argument*/List_1_get_Count_m102A5956CA038B4503A23CBAE433114532EC22E7_RuntimeMethod_var); V_1 = L_3; int32_t L_4 = V_0; int32_t L_5 = ___initial1; if ((((int32_t)L_4) <= ((int32_t)L_5))) { goto IL_0025; } } { int32_t L_6 = V_1; if ((((int32_t)L_6) <= ((int32_t)0))) { goto IL_0025; } } { int32_t L_7 = V_0; int32_t L_8 = V_1; if ((((int32_t)((int32_t)((int32_t)L_7/(int32_t)L_8))) <= ((int32_t)3))) { goto IL_0025; } } { List_1_t0C6DF014BD2D1BE6D428FB761E8C21CDC22C5116 * L_9 = ___list0; int32_t L_10 = V_1; NullCheck(L_9); List_1_set_Capacity_m0DA623E0A9843F83E643A5E032D775F990F3863E(L_9, ((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)2)), /*hidden argument*/List_1_set_Capacity_m0DA623E0A9843F83E643A5E032D775F990F3863E_RuntimeMethod_var); } IL_0025: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 System.Threading.Timer_TimerComparer::Compare(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimerComparer_Compare_mA323B05AE75107BF3D65BCFB43976A29155A4659 (TimerComparer_tC987818CFADF2F3ECEB89C0BD510600DAD816015 * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimerComparer_Compare_mA323B05AE75107BF3D65BCFB43976A29155A4659_MetadataUsageId); s_Il2CppMethodInitialized = true; } Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * V_0 = NULL; Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * V_1 = NULL; int64_t V_2 = 0; { RuntimeObject * L_0 = ___x0; V_0 = ((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)IsInstSealed((RuntimeObject*)L_0, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var)); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_1 = V_0; if (L_1) { goto IL_000c; } } { return (-1); } IL_000c: { RuntimeObject * L_2 = ___y1; V_1 = ((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)IsInstSealed((RuntimeObject*)L_2, Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var)); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_3 = V_1; if (L_3) { goto IL_0018; } } { return 1; } IL_0018: { Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_4 = V_0; NullCheck(L_4); int64_t L_5 = L_4->get_next_run_6(); Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_6 = V_1; NullCheck(L_6); int64_t L_7 = L_6->get_next_run_6(); V_2 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_5, (int64_t)L_7)); int64_t L_8 = V_2; if (L_8) { goto IL_0031; } } { RuntimeObject * L_9 = ___x0; RuntimeObject * L_10 = ___y1; if ((((RuntimeObject*)(RuntimeObject *)L_9) == ((RuntimeObject*)(RuntimeObject *)L_10))) { goto IL_002f; } } { return (-1); } IL_002f: { return 0; } IL_0031: { int64_t L_11 = V_2; if ((((int64_t)L_11) > ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_0038; } } { return (-1); } IL_0038: { return 1; } } // System.Void System.Threading.Timer_TimerComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerComparer__ctor_m4286C1A800BFB3F6A065A9DB0122B7FC1A440F22 (TimerComparer_tC987818CFADF2F3ECEB89C0BD510600DAD816015 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.TimerCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerCallback__ctor_m6B85BEF2F0E429E5F8E4FA2F527B42247E95A690 (TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Threading.TimerCallback::Invoke(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerCallback_Invoke_m64E1279AA84FA0D01697CB6D7B3D8C01959B4A50 (TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * __this, RuntimeObject * ___state0, const RuntimeMethod* method) { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___state0, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___state0, targetMethod); } } else if (___parameterCount != 1) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker0::Invoke(targetMethod, ___state0); else GenericVirtActionInvoker0::Invoke(targetMethod, ___state0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___state0); else VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___state0); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___state0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___state0); else GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___state0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___state0); else VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___state0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___state0) - 1), targetMethod); } if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___state0, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___state0, targetMethod); } } } } } // System.IAsyncResult System.Threading.TimerCallback::BeginInvoke(System.Object,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TimerCallback_BeginInvoke_m8C0291B93231EC42260B0FB426CE548E6A5900C7 (TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * __this, RuntimeObject * ___state0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___state0; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Void System.Threading.TimerCallback::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerCallback_EndInvoke_m5783AC9B9655D0D798F57CF8B90EB381A284B3E1 (TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Threading.Volatile::Read(System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Volatile_Read_m0903B72AEBAB1A05DFD4A101411ED4A952B53E8A (bool* ___location0) { return VolatileRead(___location0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.WaitCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitCallback__ctor_m375A357FD7C64F4182FD88B8276D88FE5BE75B31 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Threading.WaitCallback::Invoke(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitCallback_Invoke_mB6A858A1792B8E0DE526C3C157624C1A59EEFA16 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * __this, RuntimeObject * ___state0, const RuntimeMethod* method) { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 1) { // open typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___state0, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___state0, targetMethod); } } else if (___parameterCount != 1) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker0::Invoke(targetMethod, ___state0); else GenericVirtActionInvoker0::Invoke(targetMethod, ___state0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___state0); else VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___state0); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___state0, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___state0); else GenericVirtActionInvoker1< RuntimeObject * >::Invoke(targetMethod, targetThis, ___state0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___state0); else VirtActionInvoker1< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___state0); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___state0) - 1), targetMethod); } if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___state0, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___state0, targetMethod); } } } } } // System.IAsyncResult System.Threading.WaitCallback::BeginInvoke(System.Object,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WaitCallback_BeginInvoke_m6D50CA2A74AF60AE847EC36236F0E836CFF74B62 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * __this, RuntimeObject * ___state0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___state0; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Void System.Threading.WaitCallback::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitCallback_EndInvoke_m04663D1F0CCF6C5CEE3FE7FC807953BAB0F51965 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Threading.WaitHandle IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_pinvoke(const WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6& unmarshaled, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke& marshaled) { marshaled.___waitHandle_3 = unmarshaled.get_waitHandle_3(); if (unmarshaled.get_safeWaitHandle_4() == NULL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_null_exception("unmarshaled_safeWaitHandle"), NULL); bool ___safeHandle_reference_incremented_for_unmarshaled_get_safeWaitHandle_4 = false; SafeHandle_DangerousAddRef_m38ABCE4B3DF7CEA3B6C79996C22E1D532E10F085(unmarshaled.get_safeWaitHandle_4(), (&___safeHandle_reference_incremented_for_unmarshaled_get_safeWaitHandle_4), NULL); marshaled.___safeWaitHandle_4 = reinterpret_cast<void*>((unmarshaled.get_safeWaitHandle_4())->get_handle_0()); marshaled.___hasThreadAffinity_5 = static_cast<int32_t>(unmarshaled.get_hasThreadAffinity_5()); if (unmarshaled.get__identity_0() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__identity_0())) { marshaled.____identity_0 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get__identity_0())); (marshaled.____identity_0)->AddRef(); } else { marshaled.____identity_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__identity_0()); } } else { marshaled.____identity_0 = NULL; } } IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_pinvoke_back(const WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke& marshaled, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_pinvoke_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } intptr_t unmarshaled_waitHandle_temp_0; memset((&unmarshaled_waitHandle_temp_0), 0, sizeof(unmarshaled_waitHandle_temp_0)); unmarshaled_waitHandle_temp_0 = marshaled.___waitHandle_3; unmarshaled.set_waitHandle_3(unmarshaled_waitHandle_temp_0); IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_missing_method_exception("A parameterless constructor is required for type 'Microsoft.Win32.SafeHandles.SafeWaitHandle'."), NULL); intptr_t unmarshaled_safeWaitHandle_handle_temp; unmarshaled_safeWaitHandle_handle_temp = (intptr_t)marshaled.___safeWaitHandle_4; (unmarshaled.get_safeWaitHandle_4())->set_handle_0(unmarshaled_safeWaitHandle_handle_temp); bool ___safeHandle_reference_incremented_for_unused1 = false; SafeHandle_DangerousAddRef_m38ABCE4B3DF7CEA3B6C79996C22E1D532E10F085(unmarshaled.get_safeWaitHandle_4(), (&___safeHandle_reference_incremented_for_unused1), NULL); bool unmarshaled_hasThreadAffinity_temp_2 = false; unmarshaled_hasThreadAffinity_temp_2 = static_cast<bool>(marshaled.___hasThreadAffinity_5); unmarshaled.set_hasThreadAffinity_5(unmarshaled_hasThreadAffinity_temp_2); if (marshaled.____identity_0 != NULL) { unmarshaled.set__identity_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____identity_0, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__identity_0())) { il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get__identity_0()), Il2CppIUnknown::IID, marshaled.____identity_0); } } else { unmarshaled.set__identity_0(NULL); } } // Conversion method for clean up from marshalling of: System.Threading.WaitHandle IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_pinvoke_cleanup(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke& marshaled) { if (marshaled.____identity_0 != NULL) { (marshaled.____identity_0)->Release(); marshaled.____identity_0 = NULL; } } // Conversion methods for marshalling of: System.Threading.WaitHandle IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_com(const WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6& unmarshaled, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com& marshaled) { marshaled.___waitHandle_3 = unmarshaled.get_waitHandle_3(); if (unmarshaled.get_safeWaitHandle_4() == NULL) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_null_exception("unmarshaled_safeWaitHandle"), NULL); bool ___safeHandle_reference_incremented_for_unmarshaled_get_safeWaitHandle_4 = false; SafeHandle_DangerousAddRef_m38ABCE4B3DF7CEA3B6C79996C22E1D532E10F085(unmarshaled.get_safeWaitHandle_4(), (&___safeHandle_reference_incremented_for_unmarshaled_get_safeWaitHandle_4), NULL); marshaled.___safeWaitHandle_4 = reinterpret_cast<void*>((unmarshaled.get_safeWaitHandle_4())->get_handle_0()); marshaled.___hasThreadAffinity_5 = static_cast<int32_t>(unmarshaled.get_hasThreadAffinity_5()); if (unmarshaled.get__identity_0() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__identity_0())) { marshaled.____identity_0 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get__identity_0())); (marshaled.____identity_0)->AddRef(); } else { marshaled.____identity_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__identity_0()); } } else { marshaled.____identity_0 = NULL; } } IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_com_back(const WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com& marshaled, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_com_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } intptr_t unmarshaled_waitHandle_temp_0; memset((&unmarshaled_waitHandle_temp_0), 0, sizeof(unmarshaled_waitHandle_temp_0)); unmarshaled_waitHandle_temp_0 = marshaled.___waitHandle_3; unmarshaled.set_waitHandle_3(unmarshaled_waitHandle_temp_0); IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_missing_method_exception("A parameterless constructor is required for type 'Microsoft.Win32.SafeHandles.SafeWaitHandle'."), NULL); intptr_t unmarshaled_safeWaitHandle_handle_temp; unmarshaled_safeWaitHandle_handle_temp = (intptr_t)marshaled.___safeWaitHandle_4; (unmarshaled.get_safeWaitHandle_4())->set_handle_0(unmarshaled_safeWaitHandle_handle_temp); bool ___safeHandle_reference_incremented_for_unused2 = false; SafeHandle_DangerousAddRef_m38ABCE4B3DF7CEA3B6C79996C22E1D532E10F085(unmarshaled.get_safeWaitHandle_4(), (&___safeHandle_reference_incremented_for_unused2), NULL); bool unmarshaled_hasThreadAffinity_temp_2 = false; unmarshaled_hasThreadAffinity_temp_2 = static_cast<bool>(marshaled.___hasThreadAffinity_5); unmarshaled.set_hasThreadAffinity_5(unmarshaled_hasThreadAffinity_temp_2); if (marshaled.____identity_0 != NULL) { unmarshaled.set__identity_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____identity_0, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__identity_0())) { il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get__identity_0()), Il2CppIUnknown::IID, marshaled.____identity_0); } } else { unmarshaled.set__identity_0(NULL); } } // Conversion method for clean up from marshalling of: System.Threading.WaitHandle IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_com_cleanup(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com& marshaled) { if (marshaled.____identity_0 != NULL) { (marshaled.____identity_0)->Release(); marshaled.____identity_0 = NULL; } } // System.Void System.Threading.WaitHandle::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle__ctor_mCB89DA137FF9E08F6C96589DD705EBEFBAADE905 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, const RuntimeMethod* method) { { MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL); WaitHandle_Init_m63320FFB796EB59BF6217787185DD0B9BCE7C6FD(__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.WaitHandle::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle_Init_m63320FFB796EB59BF6217787185DD0B9BCE7C6FD (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_Init_m63320FFB796EB59BF6217787185DD0B9BCE7C6FD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_memory_barrier(); __this->set_safeWaitHandle_4((SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 *)NULL); IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); intptr_t L_0 = ((WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields*)il2cpp_codegen_static_fields_for(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var))->get_InvalidHandle_10(); __this->set_waitHandle_3((intptr_t)L_0); __this->set_hasThreadAffinity_5((bool)0); return; } } // System.Void System.Threading.WaitHandle::set_Handle(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle_set_Handle_m174F142FBE3A6EBEF358B389AE825BF2569C2389 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, intptr_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_set_Handle_m174F142FBE3A6EBEF358B389AE825BF2569C2389_MetadataUsageId); s_Il2CppMethodInitialized = true; } { intptr_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); intptr_t L_1 = ((WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields*)il2cpp_codegen_static_fields_for(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var))->get_InvalidHandle_10(); bool L_2 = IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934((intptr_t)L_0, (intptr_t)L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_002f; } } { SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_3 = __this->get_safeWaitHandle_4(); il2cpp_codegen_memory_barrier(); if (!L_3) { goto IL_003e; } } { SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_4 = __this->get_safeWaitHandle_4(); il2cpp_codegen_memory_barrier(); NullCheck(L_4); SafeHandle_SetHandleAsInvalid_mAFA4A01F6FB566AB67312B96E5024088BDF255F6(L_4, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_safeWaitHandle_4((SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 *)NULL); goto IL_003e; } IL_002f: { intptr_t L_5 = ___value0; SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_6 = (SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 *)il2cpp_codegen_object_new(SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2_il2cpp_TypeInfo_var); SafeWaitHandle__ctor_m7A02720A5A03917CCA8DD68406A124C4AB76191A(L_6, (intptr_t)L_5, (bool)1, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_safeWaitHandle_4(L_6); } IL_003e: { intptr_t L_7 = ___value0; __this->set_waitHandle_3((intptr_t)L_7); return; } } // Microsoft.Win32.SafeHandles.SafeWaitHandle System.Threading.WaitHandle::get_SafeWaitHandle() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * WaitHandle_get_SafeWaitHandle_m9BA6EA0D8DBD059147DE77EE1E36181EEB5A8AB1 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_get_SafeWaitHandle_m9BA6EA0D8DBD059147DE77EE1E36181EEB5A8AB1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_0 = __this->get_safeWaitHandle_4(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_001d; } } { IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); intptr_t L_1 = ((WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields*)il2cpp_codegen_static_fields_for(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var))->get_InvalidHandle_10(); SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_2 = (SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 *)il2cpp_codegen_object_new(SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2_il2cpp_TypeInfo_var); SafeWaitHandle__ctor_m7A02720A5A03917CCA8DD68406A124C4AB76191A(L_2, (intptr_t)L_1, (bool)0, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_safeWaitHandle_4(L_2); } IL_001d: { SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_3 = __this->get_safeWaitHandle_4(); il2cpp_codegen_memory_barrier(); return L_3; } } // System.Void System.Threading.WaitHandle::SetHandleInternal(Microsoft.Win32.SafeHandles.SafeWaitHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle_SetHandleInternal_m93850C95BB1DA2F7E474CA98316B3DA7A23799BC (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * ___handle0, const RuntimeMethod* method) { { SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_0 = ___handle0; il2cpp_codegen_memory_barrier(); __this->set_safeWaitHandle_4(L_0); SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_1 = ___handle0; NullCheck(L_1); intptr_t L_2 = SafeHandle_DangerousGetHandle_m9014DC4C279F2EF9F9331915135F0AF5AF8A4368_inline(L_1, /*hidden argument*/NULL); __this->set_waitHandle_3((intptr_t)L_2); return; } } // System.Boolean System.Threading.WaitHandle::WaitOne(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WaitHandle_WaitOne_m0E8BFEEF95DC452E7C5A17DCA57D24F38FF7C467 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, int32_t ___millisecondsTimeout0, bool ___exitContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_WaitOne_m0E8BFEEF95DC452E7C5A17DCA57D24F38FF7C467_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___millisecondsTimeout0; if ((((int32_t)L_0) >= ((int32_t)(-1)))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1B8A0FD63D1D605E82838E8FBA940C1207478A60, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral9D9BED981884AC3D4D16BF22ED725A5686CEF15B, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, WaitHandle_WaitOne_m0E8BFEEF95DC452E7C5A17DCA57D24F38FF7C467_RuntimeMethod_var); } IL_0019: { int32_t L_3 = ___millisecondsTimeout0; bool L_4 = ___exitContext1; bool L_5 = WaitHandle_WaitOne_m6283DC18BCD374B579549B156DD30AAA74E64C89(__this, (((int64_t)((int64_t)L_3))), L_4, /*hidden argument*/NULL); return L_5; } } // System.Boolean System.Threading.WaitHandle::WaitOne() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WaitHandle_WaitOne_mEB04D9BA65731571C5ED2B68396B47FA686ED8BB (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker2< bool, int32_t, bool >::Invoke(8 /* System.Boolean System.Threading.WaitHandle::WaitOne(System.Int32,System.Boolean) */, __this, (-1), (bool)0); return L_0; } } // System.Boolean System.Threading.WaitHandle::WaitOne(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WaitHandle_WaitOne_m86F1422A0B09B944119508588110094D9223D7E3 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, int32_t ___millisecondsTimeout0, const RuntimeMethod* method) { { int32_t L_0 = ___millisecondsTimeout0; bool L_1 = VirtFuncInvoker2< bool, int32_t, bool >::Invoke(8 /* System.Boolean System.Threading.WaitHandle::WaitOne(System.Int32,System.Boolean) */, __this, L_0, (bool)0); return L_1; } } // System.Boolean System.Threading.WaitHandle::WaitOne(System.Int64,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WaitHandle_WaitOne_m6283DC18BCD374B579549B156DD30AAA74E64C89 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, int64_t ___timeout0, bool ___exitContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_WaitOne_m6283DC18BCD374B579549B156DD30AAA74E64C89_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_0 = __this->get_safeWaitHandle_4(); il2cpp_codegen_memory_barrier(); int64_t L_1 = ___timeout0; bool L_2 = __this->get_hasThreadAffinity_5(); bool L_3 = ___exitContext1; IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); bool L_4 = WaitHandle_InternalWaitOne_m14CF12240D30C25A6C34683080C5A0D982786303(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.Threading.WaitHandle::InternalWaitOne(System.Runtime.InteropServices.SafeHandle,System.Int64,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WaitHandle_InternalWaitOne_m14CF12240D30C25A6C34683080C5A0D982786303 (SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * ___waitableSafeHandle0, int64_t ___millisecondsTimeout1, bool ___hasThreadAffinity2, bool ___exitContext3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_InternalWaitOne_m14CF12240D30C25A6C34683080C5A0D982786303_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * L_0 = ___waitableSafeHandle0; if (L_0) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4A9B136550890770D29DF6A00FAA574C173789AD, /*hidden argument*/NULL); ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_2 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var); ObjectDisposedException__ctor_m303CFD09E4B541C36C60AE7B7CBC8B1B7EED66DC(L_2, (String_t*)NULL, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, WaitHandle_InternalWaitOne_m14CF12240D30C25A6C34683080C5A0D982786303_RuntimeMethod_var); } IL_0014: { SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * L_3 = ___waitableSafeHandle0; int64_t L_4 = ___millisecondsTimeout1; bool L_5 = ___hasThreadAffinity2; bool L_6 = ___exitContext3; IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); int32_t L_7 = WaitHandle_WaitOneNative_mC25327F2B99DBB404B62FD48CFCBDB3244F82434(L_3, (((int32_t)((uint32_t)L_4))), L_5, L_6, /*hidden argument*/NULL); V_0 = L_7; int32_t L_8 = V_0; if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)128))))) { goto IL_002c; } } { IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); WaitHandle_ThrowAbandonedMutexException_m4AFC4FEDCA7C3EF6E1C04D4176ABA49CC728224C(/*hidden argument*/NULL); } IL_002c: { int32_t L_9 = V_0; if ((((int32_t)L_9) == ((int32_t)((int32_t)258)))) { goto IL_0040; } } { int32_t L_10 = V_0; return (bool)((((int32_t)((((int32_t)L_10) == ((int32_t)((int32_t)2147483647LL)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0040: { return (bool)0; } } // System.Int32 System.Threading.WaitHandle::WaitAny(System.Threading.WaitHandle[],System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WaitHandle_WaitAny_m1CA2DEBC40AB9BAF7ADDC0921B2AC332FA44AB1E (WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* ___waitHandles0, int32_t ___millisecondsTimeout1, bool ___exitContext2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_WaitAny_m1CA2DEBC40AB9BAF7ADDC0921B2AC332FA44AB1E_MetadataUsageId); s_Il2CppMethodInitialized = true; } WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * V_3 = NULL; int32_t V_4 = 0; { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_0 = ___waitHandles0; if (L_0) { goto IL_0013; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9956E10D0235BEF9C63D0B1D2107F77CF985D4B2, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, WaitHandle_WaitAny_m1CA2DEBC40AB9BAF7ADDC0921B2AC332FA44AB1E_RuntimeMethod_var); } IL_0013: { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_3 = ___waitHandles0; NullCheck(L_3); if ((((RuntimeArray*)L_3)->max_length)) { goto IL_0027; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralCF76F3CD38A366E96CB2BED7C1D82F777242B6AA, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, WaitHandle_WaitAny_m1CA2DEBC40AB9BAF7ADDC0921B2AC332FA44AB1E_RuntimeMethod_var); } IL_0027: { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_6 = ___waitHandles0; NullCheck(L_6); if ((((int32_t)((int32_t)64)) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_003e; } } { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral50DB91C54DC6A6F5B481F31D2A1DA1FD5AA487E7, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_8 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_8, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, WaitHandle_WaitAny_m1CA2DEBC40AB9BAF7ADDC0921B2AC332FA44AB1E_RuntimeMethod_var); } IL_003e: { int32_t L_9 = ___millisecondsTimeout1; if ((((int32_t)(-1)) <= ((int32_t)L_9))) { goto IL_0057; } } { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1B8A0FD63D1D605E82838E8FBA940C1207478A60, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_11 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_11, _stringLiteral9D9BED981884AC3D4D16BF22ED725A5686CEF15B, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, WaitHandle_WaitAny_m1CA2DEBC40AB9BAF7ADDC0921B2AC332FA44AB1E_RuntimeMethod_var); } IL_0057: { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_12 = ___waitHandles0; NullCheck(L_12); WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_13 = (WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC*)(WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC*)SZArrayNew(WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))); V_0 = L_13; V_2 = 0; goto IL_0083; } IL_0064: { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_14 = ___waitHandles0; int32_t L_15 = V_2; NullCheck(L_14); int32_t L_16 = L_15; WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); V_3 = L_17; WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_18 = V_3; if (L_18) { goto IL_007b; } } { String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC8DFBF5C8D6E2ABCBCD997023A30E88DCEDF08DA, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_20 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_20, L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, WaitHandle_WaitAny_m1CA2DEBC40AB9BAF7ADDC0921B2AC332FA44AB1E_RuntimeMethod_var); } IL_007b: { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_21 = V_0; int32_t L_22 = V_2; WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_23 = V_3; NullCheck(L_21); ArrayElementTypeCheck (L_21, L_23); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 *)L_23); int32_t L_24 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_0083: { int32_t L_25 = V_2; WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_26 = ___waitHandles0; NullCheck(L_26); if ((((int32_t)L_25) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))))) { goto IL_0064; } } { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_27 = V_0; int32_t L_28 = ___millisecondsTimeout1; bool L_29 = ___exitContext2; IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); int32_t L_30 = WaitHandle_WaitMultiple_mAE04CACC2ADB312E42B0DF0E09EAB1744B50441E(L_27, L_28, L_29, (bool)0, /*hidden argument*/NULL); V_1 = L_30; int32_t L_31 = V_1; if ((((int32_t)((int32_t)128)) > ((int32_t)L_31))) { goto IL_00ce; } } { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_32 = V_0; NullCheck(L_32); int32_t L_33 = V_1; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)128), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length))))))) <= ((int32_t)L_33))) { goto IL_00ce; } } { int32_t L_34 = V_1; V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)((int32_t)128))); int32_t L_35 = V_4; if ((((int32_t)0) > ((int32_t)L_35))) { goto IL_00c9; } } { int32_t L_36 = V_4; WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_37 = V_0; NullCheck(L_37); if ((((int32_t)L_36) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_37)->max_length))))))) { goto IL_00c9; } } { int32_t L_38 = V_4; WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_39 = V_0; int32_t L_40 = V_4; NullCheck(L_39); int32_t L_41 = L_40; WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_42 = (L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_41)); IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); WaitHandle_ThrowAbandonedMutexException_m69BB8B9A409789BDFA844B2A06303CCB3FD3A69C(L_38, L_42, /*hidden argument*/NULL); goto IL_00ce; } IL_00c9: { IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); WaitHandle_ThrowAbandonedMutexException_m4AFC4FEDCA7C3EF6E1C04D4176ABA49CC728224C(/*hidden argument*/NULL); } IL_00ce: { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC_KeepAlive_mE836EDA45A7C6BFDCEA004B9089FA6B4810BDA89((RuntimeObject *)(RuntimeObject *)L_43, /*hidden argument*/NULL); int32_t L_44 = V_1; return L_44; } } // System.Int32 System.Threading.WaitHandle::WaitAny(System.Threading.WaitHandle[],System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WaitHandle_WaitAny_mB3F8C574D50E2EC2D056A731B86BC2284D1B85CB (WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* ___waitHandles0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___timeout1, bool ___exitContext2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_WaitAny_mB3F8C574D50E2EC2D056A731B86BC2284D1B85CB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { double L_0 = TimeSpan_get_TotalMilliseconds_m48B00B27D485CC556C10A5119BC11E1A1E0FE363((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___timeout1), /*hidden argument*/NULL); V_0 = (((int64_t)((int64_t)L_0))); int64_t L_1 = V_0; if ((((int64_t)(((int64_t)((int64_t)(-1))))) > ((int64_t)L_1))) { goto IL_0017; } } { int64_t L_2 = V_0; if ((((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))) >= ((int64_t)L_2))) { goto IL_002c; } } IL_0017: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1B8A0FD63D1D605E82838E8FBA940C1207478A60, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteral56D3C9490BE2608AC36F5A4805BFEC2F21F7F982, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, WaitHandle_WaitAny_mB3F8C574D50E2EC2D056A731B86BC2284D1B85CB_RuntimeMethod_var); } IL_002c: { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_5 = ___waitHandles0; int64_t L_6 = V_0; bool L_7 = ___exitContext2; IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); int32_t L_8 = WaitHandle_WaitAny_m1CA2DEBC40AB9BAF7ADDC0921B2AC332FA44AB1E(L_5, (((int32_t)((int32_t)L_6))), L_7, /*hidden argument*/NULL); return L_8; } } // System.Void System.Threading.WaitHandle::ThrowAbandonedMutexException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle_ThrowAbandonedMutexException_m4AFC4FEDCA7C3EF6E1C04D4176ABA49CC728224C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_ThrowAbandonedMutexException_m4AFC4FEDCA7C3EF6E1C04D4176ABA49CC728224C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9 * L_0 = (AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9 *)il2cpp_codegen_object_new(AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9_il2cpp_TypeInfo_var); AbandonedMutexException__ctor_mD789CDEE6F2EFECA949F0205C4AA37F140476E05(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, WaitHandle_ThrowAbandonedMutexException_m4AFC4FEDCA7C3EF6E1C04D4176ABA49CC728224C_RuntimeMethod_var); } } // System.Void System.Threading.WaitHandle::ThrowAbandonedMutexException(System.Int32,System.Threading.WaitHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle_ThrowAbandonedMutexException_m69BB8B9A409789BDFA844B2A06303CCB3FD3A69C (int32_t ___location0, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ___handle1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_ThrowAbandonedMutexException_m69BB8B9A409789BDFA844B2A06303CCB3FD3A69C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___location0; WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_1 = ___handle1; AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9 * L_2 = (AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9 *)il2cpp_codegen_object_new(AbandonedMutexException_tCE41515409705F64C8D2AE1AAB4C1864905803C9_il2cpp_TypeInfo_var); AbandonedMutexException__ctor_m5D2377FCE41D4EA1068C207B0105C7322D521666(L_2, L_0, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, WaitHandle_ThrowAbandonedMutexException_m69BB8B9A409789BDFA844B2A06303CCB3FD3A69C_RuntimeMethod_var); } } // System.Void System.Threading.WaitHandle::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle_Close_m40287CC581A72F1CB4882656D4F91ADDCF5C5434 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_Close_m40287CC581A72F1CB4882656D4F91ADDCF5C5434_MetadataUsageId); s_Il2CppMethodInitialized = true; } { VirtActionInvoker1< bool >::Invoke(12 /* System.Void System.Threading.WaitHandle::Dispose(System.Boolean) */, __this, (bool)1); IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL); return; } } // System.Void System.Threading.WaitHandle::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle_Dispose_m367477E3B92A15CA02FEBAADFBAA15093D727671 (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, bool ___explicitDisposing0, const RuntimeMethod* method) { { SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_0 = __this->get_safeWaitHandle_4(); il2cpp_codegen_memory_barrier(); if (!L_0) { goto IL_0017; } } { SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_1 = __this->get_safeWaitHandle_4(); il2cpp_codegen_memory_barrier(); NullCheck(L_1); SafeHandle_Close_m284B185A04D5FB0A23F55B333737B7DF2CBE1F80(L_1, /*hidden argument*/NULL); } IL_0017: { return; } } // System.Void System.Threading.WaitHandle::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle_Dispose_m47D6F15A6D36EFBF147D238B794AE6436FD5159C (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_Dispose_m47D6F15A6D36EFBF147D238B794AE6436FD5159C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { VirtActionInvoker1< bool >::Invoke(12 /* System.Void System.Threading.WaitHandle::Dispose(System.Boolean) */, __this, (bool)1); IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.Threading.WaitHandle::WaitMultiple(System.Threading.WaitHandle[],System.Int32,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WaitHandle_WaitMultiple_mAE04CACC2ADB312E42B0DF0E09EAB1744B50441E (WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* ___waitHandles0, int32_t ___millisecondsTimeout1, bool ___exitContext2, bool ___WaitAll3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_WaitMultiple_mAE04CACC2ADB312E42B0DF0E09EAB1744B50441E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; intptr_t* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_0 = ___waitHandles0; NullCheck(L_0); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) <= ((int32_t)((int32_t)64)))) { goto IL_000d; } } { return ((int32_t)2147483647LL); } IL_000d: { V_0 = (-1); } IL_000f: try { // begin try (depth: 1) { V_1 = 0; goto IL_002e; } IL_0013: { } IL_0014: try { // begin try (depth: 2) IL2CPP_LEAVE(0x2A, FINALLY_0016); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0016; } FINALLY_0016: { // begin finally (depth: 2) V_2 = (bool)0; WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_1 = ___waitHandles0; int32_t L_2 = V_1; NullCheck(L_1); int32_t L_3 = L_2; WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); NullCheck(L_4); SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_5 = WaitHandle_get_SafeWaitHandle_m9BA6EA0D8DBD059147DE77EE1E36181EEB5A8AB1(L_4, /*hidden argument*/NULL); NullCheck(L_5); SafeHandle_DangerousAddRef_m38ABCE4B3DF7CEA3B6C79996C22E1D532E10F085(L_5, (bool*)(&V_2), /*hidden argument*/NULL); int32_t L_6 = V_1; V_0 = L_6; IL2CPP_END_FINALLY(22) } // end finally (depth: 2) IL2CPP_CLEANUP(22) { IL2CPP_JUMP_TBL(0x2A, IL_002a) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_002a: { int32_t L_7 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); } IL_002e: { int32_t L_8 = V_1; WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_9 = ___waitHandles0; NullCheck(L_9); if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length))))))) { goto IL_0013; } } IL_0034: { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_10 = ___waitHandles0; NullCheck(L_10); uint32_t L_11 = sizeof(intptr_t); if ((uintptr_t)(((uintptr_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))) * (uintptr_t)L_11 > (uintptr_t)kIl2CppUIntPtrMax) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), WaitHandle_WaitMultiple_mAE04CACC2ADB312E42B0DF0E09EAB1744B50441E_RuntimeMethod_var); int8_t* L_12 = (int8_t*) alloca(((intptr_t)il2cpp_codegen_multiply((intptr_t)(((uintptr_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))), (int32_t)L_11))); memset(L_12, 0, ((intptr_t)il2cpp_codegen_multiply((intptr_t)(((uintptr_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))), (int32_t)L_11))); V_3 = (intptr_t*)(L_12); V_4 = 0; goto IL_0068; } IL_0047: { intptr_t* L_13 = V_3; int32_t L_14 = V_4; uint32_t L_15 = sizeof(intptr_t); WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_16 = ___waitHandles0; int32_t L_17 = V_4; NullCheck(L_16); int32_t L_18 = L_17; WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); NullCheck(L_19); SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_20 = WaitHandle_get_SafeWaitHandle_m9BA6EA0D8DBD059147DE77EE1E36181EEB5A8AB1(L_19, /*hidden argument*/NULL); NullCheck(L_20); intptr_t L_21 = SafeHandle_DangerousGetHandle_m9014DC4C279F2EF9F9331915135F0AF5AF8A4368_inline(L_20, /*hidden argument*/NULL); *((intptr_t*)((intptr_t*)il2cpp_codegen_add((intptr_t)L_13, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_14)), (int32_t)L_15))))) = (intptr_t)L_21; int32_t L_22 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); } IL_0068: { int32_t L_23 = V_4; WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_24 = ___waitHandles0; NullCheck(L_24); if ((((int32_t)L_23) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length))))))) { goto IL_0047; } } IL_006f: { intptr_t* L_25 = V_3; WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_26 = ___waitHandles0; NullCheck(L_26); bool L_27 = ___WaitAll3; int32_t L_28 = ___millisecondsTimeout1; IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); int32_t L_29 = WaitHandle_Wait_internal_m8941E096BE6A528D936BCE4B4D931753FCB0F483((intptr_t*)(intptr_t*)L_25, (((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))), L_27, L_28, /*hidden argument*/NULL); V_5 = L_29; IL2CPP_LEAVE(0x9D, FINALLY_007e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_007e; } FINALLY_007e: { // begin finally (depth: 1) { int32_t L_30 = V_0; V_6 = L_30; goto IL_0097; } IL_0083: { WaitHandleU5BU5D_t79FF2E6AC099CC1FDD2B24F21A72D36BA31298CC* L_31 = ___waitHandles0; int32_t L_32 = V_6; NullCheck(L_31); int32_t L_33 = L_32; WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_34 = (L_31)->GetAt(static_cast<il2cpp_array_size_t>(L_33)); NullCheck(L_34); SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * L_35 = WaitHandle_get_SafeWaitHandle_m9BA6EA0D8DBD059147DE77EE1E36181EEB5A8AB1(L_34, /*hidden argument*/NULL); NullCheck(L_35); SafeHandle_DangerousRelease_m3D5C78EBCD583C58AE715F7A8AC1BD3BA976CF01(L_35, /*hidden argument*/NULL); int32_t L_36 = V_6; V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1)); } IL_0097: { int32_t L_37 = V_6; if ((((int32_t)L_37) >= ((int32_t)0))) { goto IL_0083; } } IL_009c: { IL2CPP_END_FINALLY(126) } } // end finally (depth: 1) IL2CPP_CLEANUP(126) { IL2CPP_JUMP_TBL(0x9D, IL_009d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_009d: { int32_t L_38 = V_5; return L_38; } } // System.Int32 System.Threading.WaitHandle::WaitOneNative(System.Runtime.InteropServices.SafeHandle,System.UInt32,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WaitHandle_WaitOneNative_mC25327F2B99DBB404B62FD48CFCBDB3244F82434 (SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * ___waitableSafeHandle0, uint32_t ___millisecondsTimeout1, bool ___hasThreadAffinity2, bool ___exitContext3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle_WaitOneNative_mC25327F2B99DBB404B62FD48CFCBDB3244F82434_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; intptr_t V_1; memset((&V_1), 0, sizeof(V_1)); int32_t V_2 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { V_0 = (bool)0; } IL_0002: try { // begin try (depth: 1) SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * L_0 = ___waitableSafeHandle0; NullCheck(L_0); SafeHandle_DangerousAddRef_m38ABCE4B3DF7CEA3B6C79996C22E1D532E10F085(L_0, (bool*)(&V_0), /*hidden argument*/NULL); SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * L_1 = ___waitableSafeHandle0; NullCheck(L_1); intptr_t L_2 = SafeHandle_DangerousGetHandle_m9014DC4C279F2EF9F9331915135F0AF5AF8A4368_inline(L_1, /*hidden argument*/NULL); V_1 = (intptr_t)L_2; uint32_t L_3 = ___millisecondsTimeout1; IL2CPP_RUNTIME_CLASS_INIT(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var); int32_t L_4 = WaitHandle_Wait_internal_m8941E096BE6A528D936BCE4B4D931753FCB0F483((intptr_t*)(intptr_t*)(((uintptr_t)(&V_1))), 1, (bool)0, L_3, /*hidden argument*/NULL); V_2 = L_4; IL2CPP_LEAVE(0x29, FINALLY_001f); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_001f; } FINALLY_001f: { // begin finally (depth: 1) { bool L_5 = V_0; if (!L_5) { goto IL_0028; } } IL_0022: { SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * L_6 = ___waitableSafeHandle0; NullCheck(L_6); SafeHandle_DangerousRelease_m3D5C78EBCD583C58AE715F7A8AC1BD3BA976CF01(L_6, /*hidden argument*/NULL); } IL_0028: { IL2CPP_END_FINALLY(31) } } // end finally (depth: 1) IL2CPP_CLEANUP(31) { IL2CPP_JUMP_TBL(0x29, IL_0029) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0029: { int32_t L_7 = V_2; return L_7; } } // System.Int32 System.Threading.WaitHandle::Wait_internal(System.IntPtr*,System.Int32,System.Boolean,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t WaitHandle_Wait_internal_m8941E096BE6A528D936BCE4B4D931753FCB0F483 (intptr_t* ___handles0, int32_t ___numHandles1, bool ___waitAll2, int32_t ___ms3, const RuntimeMethod* method) { typedef int32_t (*WaitHandle_Wait_internal_m8941E096BE6A528D936BCE4B4D931753FCB0F483_ftn) (intptr_t*, int32_t, bool, int32_t); using namespace il2cpp::icalls; return ((WaitHandle_Wait_internal_m8941E096BE6A528D936BCE4B4D931753FCB0F483_ftn)mscorlib::System::Threading::WaitHandle::Wait_internal) (___handles0, ___numHandles1, ___waitAll2, ___ms3); } // System.Void System.Threading.WaitHandle::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandle__cctor_m007CFC1D3AC126BF18F2000C962A2C73EB73D671 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandle__cctor_m007CFC1D3AC126BF18F2000C962A2C73EB73D671_MetadataUsageId); s_Il2CppMethodInitialized = true; } { intptr_t L_0 = IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91((-1), /*hidden argument*/NULL); ((WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields*)il2cpp_codegen_static_fields_for(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_il2cpp_TypeInfo_var))->set_InvalidHandle_10((intptr_t)L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.WaitHandleCannotBeOpenedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandleCannotBeOpenedException__ctor_m7A3521D80FAFFDEE0AA1DAE1C9CE3D643AEA0C6D (WaitHandleCannotBeOpenedException_t869CD999EE7B918C5546E2007AF7C4557281B65B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitHandleCannotBeOpenedException__ctor_m7A3521D80FAFFDEE0AA1DAE1C9CE3D643AEA0C6D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC66F297D9CFBA91552616C44CE043096BDC566A6, /*hidden argument*/NULL); ApplicationException__ctor_mDC26CE8ECD0DDA5C8FA50C8E8B2614F3B50FC308(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233044), /*hidden argument*/NULL); return; } } // System.Void System.Threading.WaitHandleCannotBeOpenedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandleCannotBeOpenedException__ctor_m00FD39B43CE8A42DEFC752F71A7BEA5EAED5C59B (WaitHandleCannotBeOpenedException_t869CD999EE7B918C5546E2007AF7C4557281B65B * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; ApplicationException__ctor_mDC26CE8ECD0DDA5C8FA50C8E8B2614F3B50FC308(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233044), /*hidden argument*/NULL); return; } } // System.Void System.Threading.WaitHandleCannotBeOpenedException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitHandleCannotBeOpenedException__ctor_mF8FACE8B63C48B415DCACE80632C6308AF6D8F38 (WaitHandleCannotBeOpenedException_t869CD999EE7B918C5546E2007AF7C4557281B65B * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; ApplicationException__ctor_mFF30CCDE8B078E0ED2E206EEB39611840367607A(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Threading.WaitOrTimerCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitOrTimerCallback__ctor_m3F8B82720682E41B16CC030AF8CDD748F882F67F (WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void System.Threading.WaitOrTimerCallback::Invoke(System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitOrTimerCallback_Invoke_m339DD37A56CCF4A02065A78DEE3A981017B80670 (WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * __this, RuntimeObject * ___state0, bool ___timedOut1, const RuntimeMethod* method) { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef void (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___state0, ___timedOut1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___state0, ___timedOut1, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< bool >::Invoke(targetMethod, ___state0, ___timedOut1); else GenericVirtActionInvoker1< bool >::Invoke(targetMethod, ___state0, ___timedOut1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___state0, ___timedOut1); else VirtActionInvoker1< bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___state0, ___timedOut1); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(&___timedOut1) - 1), targetMethod); } typedef void (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___state0, ___timedOut1, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< RuntimeObject *, bool >::Invoke(targetMethod, targetThis, ___state0, ___timedOut1); else GenericVirtActionInvoker2< RuntimeObject *, bool >::Invoke(targetMethod, targetThis, ___state0, ___timedOut1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject *, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___state0, ___timedOut1); else VirtActionInvoker2< RuntimeObject *, bool >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___state0, ___timedOut1); } } else { if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod))) { typedef void (*FunctionPointerType) (RuntimeObject*, bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___state0) - 1), ___timedOut1, targetMethod); } if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___state0, ___timedOut1, targetMethod); } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, bool, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___state0, ___timedOut1, targetMethod); } } } } } // System.IAsyncResult System.Threading.WaitOrTimerCallback::BeginInvoke(System.Object,System.Boolean,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WaitOrTimerCallback_BeginInvoke_m86C8EC9E231C1076272729D07B6331A3253150CF (WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * __this, RuntimeObject * ___state0, bool ___timedOut1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WaitOrTimerCallback_BeginInvoke_m86C8EC9E231C1076272729D07B6331A3253150CF_MetadataUsageId); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = ___state0; __d_args[1] = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &___timedOut1); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // System.Void System.Threading.WaitOrTimerCallback::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitOrTimerCallback_EndInvoke_m71FFCA3224CF4023B31E50E9B0EAAB639369E801 (WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Threading._ThreadPoolWaitCallback::PerformWaitCallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool _ThreadPoolWaitCallback_PerformWaitCallback_mD77C78004E606A2556E66C0D674100581F264C58 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (_ThreadPoolWaitCallback_PerformWaitCallback_mD77C78004E606A2556E66C0D674100581F264C58_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(ThreadPoolWorkQueue_t7CD2CD2E30665483DB7D73043AE06270E0220011_il2cpp_TypeInfo_var); bool L_0 = ThreadPoolWorkQueue_Dispatch_mCDF7415E4C9D02B34761CAE8EA15CD33DDF85ADF(/*hidden argument*/NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ThrowHelper::ThrowArgumentNullException(System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E (int32_t ___argument0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___argument0; Exception_t * L_1 = ThrowHelper_CreateArgumentNullException_m73D3C5638F0A69939498020AA3AE650DAA0178FD(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E_RuntimeMethod_var); } } // System.Exception System.ThrowHelper::CreateArgumentNullException(System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR Exception_t * ThrowHelper_CreateArgumentNullException_m73D3C5638F0A69939498020AA3AE650DAA0178FD (int32_t ___argument0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThrowHelper_CreateArgumentNullException_m73D3C5638F0A69939498020AA3AE650DAA0178FD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = Box(ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14_il2cpp_TypeInfo_var, (&___argument0)); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_0); ___argument0 = *(int32_t*)UnBox(L_0); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550 (const RuntimeMethod* method) { { ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)13), ((int32_t)22), /*hidden argument*/NULL); return; } } // System.Void System.ThrowHelper::ThrowWrongValueTypeArgumentException(System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowWrongValueTypeArgumentException_m81EB12FF3AB8403FBF5D9DC58BF6A4950EE76F5F (RuntimeObject * ___value0, Type_t * ___targetType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThrowHelper_ThrowWrongValueTypeArgumentException_m81EB12FF3AB8403FBF5D9DC58BF6A4950EE76F5F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; RuntimeObject * L_2 = ___value0; NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_1; Type_t * L_4 = ___targetType1; NullCheck(L_3); ArrayElementTypeCheck (L_3, L_4); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_4); String_t* L_5 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralC2FE37F547603E5070979129624113F1C6F9D844, L_3, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ThrowHelper_ThrowWrongValueTypeArgumentException_m81EB12FF3AB8403FBF5D9DC58BF6A4950EE76F5F_RuntimeMethod_var); } } // System.Void System.ThrowHelper::ThrowArgumentException(System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84 (int32_t ___resource0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___resource0; String_t* L_1 = ThrowHelper_GetResourceName_m13FDAE58B6F545972524C1B952F26628A50ED48E(L_0, /*hidden argument*/NULL); String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(L_1, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84_RuntimeMethod_var); } } // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument,System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51 (int32_t ___argument0, int32_t ___resource1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1(); if (!L_0) { goto IL_0018; } } { int32_t L_1 = ___argument0; String_t* L_2 = ThrowHelper_GetArgumentName_m557024344066246E63A04D0B1A2DB0F6C6781D2C(L_1, /*hidden argument*/NULL); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, L_2, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51_RuntimeMethod_var); } IL_0018: { int32_t L_5 = ___argument0; String_t* L_6 = ThrowHelper_GetArgumentName_m557024344066246E63A04D0B1A2DB0F6C6781D2C(L_5, /*hidden argument*/NULL); int32_t L_7 = ___resource1; String_t* L_8 = ThrowHelper_GetResourceName_m13FDAE58B6F545972524C1B952F26628A50ED48E(L_7, /*hidden argument*/NULL); String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(L_8, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, L_6, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51_RuntimeMethod_var); } } // System.Void System.ThrowHelper::ThrowInvalidOperationException(System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowInvalidOperationException_m5FC21125115DA5A3A78175937F96B30333FF2454 (int32_t ___resource0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThrowHelper_ThrowInvalidOperationException_m5FC21125115DA5A3A78175937F96B30333FF2454_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___resource0; String_t* L_1 = ThrowHelper_GetResourceName_m13FDAE58B6F545972524C1B952F26628A50ED48E(L_0, /*hidden argument*/NULL); String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(L_1, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ThrowHelper_ThrowInvalidOperationException_m5FC21125115DA5A3A78175937F96B30333FF2454_RuntimeMethod_var); } } // System.Void System.ThrowHelper::ThrowNotSupportedException(System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowNotSupportedException_mDE950AAFA2110B5EB15127AAD48E54ADF9C180FC (int32_t ___resource0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThrowHelper_ThrowNotSupportedException_mDE950AAFA2110B5EB15127AAD48E54ADF9C180FC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___resource0; String_t* L_1 = ThrowHelper_GetResourceName_m13FDAE58B6F545972524C1B952F26628A50ED48E(L_0, /*hidden argument*/NULL); String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(L_1, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_3 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ThrowHelper_ThrowNotSupportedException_mDE950AAFA2110B5EB15127AAD48E54ADF9C180FC_RuntimeMethod_var); } } // System.String System.ThrowHelper::GetArgumentName(System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ThrowHelper_GetArgumentName_m557024344066246E63A04D0B1A2DB0F6C6781D2C (int32_t ___argument0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThrowHelper_GetArgumentName_m557024344066246E63A04D0B1A2DB0F6C6781D2C_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { V_0 = (String_t*)NULL; int32_t L_0 = ___argument0; switch (L_0) { case 0: { goto IL_00ed; } case 1: { goto IL_00ba; } case 2: { goto IL_00c5; } case 3: { goto IL_006d; } case 4: { goto IL_00d5; } case 5: { goto IL_00dd; } case 6: { goto IL_008e; } case 7: { goto IL_0099; } case 8: { goto IL_00e5; } case 9: { goto IL_00a4; } case 10: { goto IL_00f5; } case 11: { goto IL_00fd; } case 12: { goto IL_0083; } case 13: { goto IL_00cd; } case 14: { goto IL_0105; } case 15: { goto IL_010d; } case 16: { goto IL_00af; } case 17: { goto IL_0078; } case 18: { goto IL_0115; } case 19: { goto IL_011d; } case 20: { goto IL_0125; } case 21: { goto IL_012d; } case 22: { goto IL_0135; } case 23: { goto IL_013d; } } } { goto IL_0145; } IL_006d: { V_0 = _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25; goto IL_014b; } IL_0078: { V_0 = _stringLiteralFA5342C4F12AD1A860B71DA5AD002761768999C3; goto IL_014b; } IL_0083: { V_0 = _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860; goto IL_014b; } IL_008e: { V_0 = _stringLiteral2037DE437C80264CCBCE8A8B61D0BF9F593D2322; goto IL_014b; } IL_0099: { V_0 = _stringLiteral38B62BE4BDDAA5661C7D6B8E36E28159314DF5C7; goto IL_014b; } IL_00a4: { V_0 = _stringLiteral2C3199988097E4BB3103E8C34B8DFE8796545D8F; goto IL_014b; } IL_00af: { V_0 = _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556; goto IL_014b; } IL_00ba: { V_0 = _stringLiteralF18BFB74E613AFB11F36BDD80CF05CD5DFAD98D6; goto IL_014b; } IL_00c5: { V_0 = _stringLiteralE87A29FAFA6BDE5DB2F2ED78580BDB62061933A0; goto IL_014b; } IL_00cd: { V_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; goto IL_014b; } IL_00d5: { V_0 = _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889; goto IL_014b; } IL_00dd: { V_0 = _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE; goto IL_014b; } IL_00e5: { V_0 = _stringLiteralEF5C844EAB88BCACA779BD2F3AD67B573BBBBFCA; goto IL_014b; } IL_00ed: { V_0 = _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B; goto IL_014b; } IL_00f5: { V_0 = _stringLiteral1038345ECC525CA37383914C8D7839E94CCF5448; goto IL_014b; } IL_00fd: { V_0 = _stringLiteralB26DC72D261A92C1CFD1E643717E450A84CF2122; goto IL_014b; } IL_0105: { V_0 = _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56; goto IL_014b; } IL_010d: { V_0 = _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5; goto IL_014b; } IL_0115: { V_0 = _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C; goto IL_014b; } IL_011d: { V_0 = _stringLiteralE78FE7049341B36116D8054F5A3E00D01F245FCC; goto IL_014b; } IL_0125: { V_0 = _stringLiteral3A7D9767B1233601EBF8B67495C6DC2CE8B8C2AF; goto IL_014b; } IL_012d: { V_0 = _stringLiteral513F8DE9259FE7658FE14D1352C54CCF070E911F; goto IL_014b; } IL_0135: { V_0 = _stringLiteral8F3A07543988E4673DCAE5E59C35323C5791F370; goto IL_014b; } IL_013d: { V_0 = _stringLiteralFC6AE05A55888138AD5ED7FDF85E0CFAF96F0CB1; goto IL_014b; } IL_0145: { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_1; } IL_014b: { String_t* L_2 = V_0; return L_2; } } // System.String System.ThrowHelper::GetResourceName(System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ThrowHelper_GetResourceName_m13FDAE58B6F545972524C1B952F26628A50ED48E (int32_t ___resource0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ThrowHelper_GetResourceName_m13FDAE58B6F545972524C1B952F26628A50ED48E_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { V_0 = (String_t*)NULL; int32_t L_0 = ___resource0; switch (L_0) { case 0: { goto IL_00c5; } case 1: { goto IL_0204; } case 2: { goto IL_020f; } case 3: { goto IL_026f; } case 4: { goto IL_0112; } case 5: { goto IL_0128; } case 6: { goto IL_013e; } case 7: { goto IL_0133; } case 8: { goto IL_0237; } case 9: { goto IL_0267; } case 10: { goto IL_0247; } case 11: { goto IL_024f; } case 12: { goto IL_0227; } case 13: { goto IL_022f; } case 14: { goto IL_00d0; } case 15: { goto IL_01e3; } case 16: { goto IL_01ee; } case 17: { goto IL_01f9; } case 18: { goto IL_0149; } case 19: { goto IL_01b7; } case 20: { goto IL_01cd; } case 21: { goto IL_011d; } case 22: { goto IL_00f1; } case 23: { goto IL_0154; } case 24: { goto IL_015f; } case 25: { goto IL_00e6; } case 26: { goto IL_00fc; } case 27: { goto IL_0107; } case 28: { goto IL_01c2; } case 29: { goto IL_016a; } case 30: { goto IL_0175; } case 31: { goto IL_0180; } case 32: { goto IL_018b; } case 33: { goto IL_0196; } case 34: { goto IL_00db; } case 35: { goto IL_01a1; } case 36: { goto IL_01ac; } case 37: { goto IL_01d8; } case 38: { goto IL_0217; } case 39: { goto IL_021f; } case 40: { goto IL_023f; } case 41: { goto IL_0257; } case 42: { goto IL_025f; } case 43: { goto IL_0277; } case 44: { goto IL_027f; } case 45: { goto IL_0287; } } } { goto IL_028f; } IL_00c5: { V_0 = _stringLiteral463C9ACFFA099CA60B83F74DD23B2E4DE31E298B; goto IL_0295; } IL_00d0: { V_0 = _stringLiteralE15B6A0A1108C9AC320286F96690841664ACD678; goto IL_0295; } IL_00db: { V_0 = _stringLiteralEBA8B69763EB43A139DEA3B8C4A58E9CEDCA4968; goto IL_0295; } IL_00e6: { V_0 = _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC; goto IL_0295; } IL_00f1: { V_0 = _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA; goto IL_0295; } IL_00fc: { V_0 = _stringLiteral5EE6EC49CF3A25DADF191E62C4851F860A7900C3; goto IL_0295; } IL_0107: { V_0 = _stringLiteral1C58A3FE6DCE8C4663334496A6CC60DFDF3BB4EE; goto IL_0295; } IL_0112: { V_0 = _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D; goto IL_0295; } IL_011d: { V_0 = _stringLiteralFB89F8D393DA096100BFDC1D5649D094EFF15377; goto IL_0295; } IL_0128: { V_0 = _stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8; goto IL_0295; } IL_0133: { V_0 = _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A; goto IL_0295; } IL_013e: { V_0 = _stringLiteralC363992023785AF013BBCF2E20C19D9835184F82; goto IL_0295; } IL_0149: { V_0 = _stringLiteralC44D4E6C6AF3517A1CC72EDF7D1A5FFD7E3368F1; goto IL_0295; } IL_0154: { V_0 = _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A; goto IL_0295; } IL_015f: { V_0 = _stringLiteral8F8AE9544C800C5645217FBE5AA94B8E526C7E98; goto IL_0295; } IL_016a: { V_0 = _stringLiteralF410B3794614F4946761EA1E8C628608639839C6; goto IL_0295; } IL_0175: { V_0 = _stringLiteral1F81AFFE48C2C2B337815693830EBEE586D9A96C; goto IL_0295; } IL_0180: { V_0 = _stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC; goto IL_0295; } IL_018b: { V_0 = _stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049; goto IL_0295; } IL_0196: { V_0 = _stringLiteral2AE9006AA79BCA491D17932D2580DBE509CC1BD7; goto IL_0295; } IL_01a1: { V_0 = _stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432; goto IL_0295; } IL_01ac: { V_0 = _stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469; goto IL_0295; } IL_01b7: { V_0 = _stringLiteralBCA799238FFD9062EADADF1671BF7042DB42CF92; goto IL_0295; } IL_01c2: { V_0 = _stringLiteral7C9E4CE229BAFB966C53CA8676C5BAD2046C9B62; goto IL_0295; } IL_01cd: { V_0 = _stringLiteral26B5A99C75CDB00D6145F11A983C91ACADFFFFF1; goto IL_0295; } IL_01d8: { V_0 = _stringLiteral885F50DCFD6542D03A37B7DE40CFBAEB00164500; goto IL_0295; } IL_01e3: { V_0 = _stringLiteralA70F1BF46F12CF5517DAB14A442D77DB24FDDC26; goto IL_0295; } IL_01ee: { V_0 = _stringLiteral0446EADE62BBE35D165AAAD965949803B6521089; goto IL_0295; } IL_01f9: { V_0 = _stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD; goto IL_0295; } IL_0204: { V_0 = _stringLiteral1C2EBE0E70C4B03074D33C64120CD29EA385AA71; goto IL_0295; } IL_020f: { V_0 = _stringLiteralA7CA3604B3B7A0733239DF9F41348D06245AC357; goto IL_0295; } IL_0217: { V_0 = _stringLiteralF7F24D49529641003F57A1A7C43CFCCA3D29BD73; goto IL_0295; } IL_021f: { V_0 = _stringLiteral3F1100B2ABF8FFBAD088B793AAF302D5435DBE3F; goto IL_0295; } IL_0227: { V_0 = _stringLiteral53F7F9602724F5C9D2B64C05462A6DA2F44E2BD0; goto IL_0295; } IL_022f: { V_0 = _stringLiteralD7938D08865974650DE95B633047523C268290B9; goto IL_0295; } IL_0237: { V_0 = _stringLiteralC34859D7F446AA18DD9260227F587FBA6EB4DB1D; goto IL_0295; } IL_023f: { V_0 = _stringLiteral171112507722F18531ACD11A635F712DADCEBE6E; goto IL_0295; } IL_0247: { V_0 = _stringLiteralCDD3E50B9E706702A4996E0BC1E08259AF9C1950; goto IL_0295; } IL_024f: { V_0 = _stringLiteral7E2E7C38B817DB77D6B12E99B9738E18BDDF9B28; goto IL_0295; } IL_0257: { V_0 = _stringLiteral1821AE443912F325AB2E97DF532D1DACF7161739; goto IL_0295; } IL_025f: { V_0 = _stringLiteralFF69C2D636503743B153CA52D647A5C19B17092C; goto IL_0295; } IL_0267: { V_0 = _stringLiteralA2D9E3AC892A8FEA3180CFBA1F1C9D0F8716EA95; goto IL_0295; } IL_026f: { V_0 = _stringLiteral1B08DBA6C41309ED4513414011188E6B4CA2403F; goto IL_0295; } IL_0277: { V_0 = _stringLiteral32368864574CE30745E6A3A112FCB36F083BFB0C; goto IL_0295; } IL_027f: { V_0 = _stringLiteralD416C225B5075E134E29DFBF7B48B6B0F77F834D; goto IL_0295; } IL_0287: { V_0 = _stringLiteral93DEC40AB1B5EF19C715C0EAE5164CC3C700BCAF; goto IL_0295; } IL_028f: { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_1; } IL_0295: { String_t* L_2 = V_0; return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.TimeSpan::.ctor(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int64_t ___ticks0, const RuntimeMethod* method) { { int64_t L_0 = ___ticks0; __this->set__ticks_3(L_0); return; } } IL2CPP_EXTERN_C void TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_AdjustorThunk (RuntimeObject * __this, int64_t ___ticks0, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline(_thisAdjusted, ___ticks0, method); } // System.Void System.TimeSpan::.ctor(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int32_t ___hours0, int32_t ___minutes1, int32_t ___seconds2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___hours0; int32_t L_1 = ___minutes1; int32_t L_2 = ___seconds2; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); int64_t L_3 = TimeSpan_TimeToTicks_m30D961C24084E95EA9FE0565B87FCFFE24DD3632(L_0, L_1, L_2, /*hidden argument*/NULL); __this->set__ticks_3(L_3); return; } } IL2CPP_EXTERN_C void TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87_AdjustorThunk (RuntimeObject * __this, int32_t ___hours0, int32_t ___minutes1, int32_t ___seconds2, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87(_thisAdjusted, ___hours0, ___minutes1, ___seconds2, method); } // System.Void System.TimeSpan::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpan__ctor_m310F37AF5F9F91433A98062BF6E4A248AA6C3DE5 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int32_t ___days0, int32_t ___hours1, int32_t ___minutes2, int32_t ___seconds3, int32_t ___milliseconds4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan__ctor_m310F37AF5F9F91433A98062BF6E4A248AA6C3DE5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { int32_t L_0 = ___days0; int32_t L_1 = ___hours1; int32_t L_2 = ___minutes2; int32_t L_3 = ___seconds3; int32_t L_4 = ___milliseconds4; V_0 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_0))), (int64_t)(((int64_t)((int64_t)((int32_t)3600)))))), (int64_t)(((int64_t)((int64_t)((int32_t)24)))))), (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)((int32_t)3600)))))))), (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_2))), (int64_t)(((int64_t)((int64_t)((int32_t)60)))))))), (int64_t)(((int64_t)((int64_t)L_3))))), (int64_t)(((int64_t)((int64_t)((int32_t)1000)))))), (int64_t)(((int64_t)((int64_t)L_4))))); int64_t L_5 = V_0; if ((((int64_t)L_5) > ((int64_t)((int64_t)922337203685477LL)))) { goto IL_0046; } } { int64_t L_6 = V_0; if ((((int64_t)L_6) >= ((int64_t)((int64_t)-922337203685477LL)))) { goto IL_0057; } } IL_0046: { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3E817DFC269EB4946CD544A6A97B106296C3940B, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, (String_t*)NULL, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, TimeSpan__ctor_m310F37AF5F9F91433A98062BF6E4A248AA6C3DE5_RuntimeMethod_var); } IL_0057: { int64_t L_9 = V_0; __this->set__ticks_3(((int64_t)il2cpp_codegen_multiply((int64_t)L_9, (int64_t)(((int64_t)((int64_t)((int32_t)10000))))))); return; } } IL2CPP_EXTERN_C void TimeSpan__ctor_m310F37AF5F9F91433A98062BF6E4A248AA6C3DE5_AdjustorThunk (RuntimeObject * __this, int32_t ___days0, int32_t ___hours1, int32_t ___minutes2, int32_t ___seconds3, int32_t ___milliseconds4, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); TimeSpan__ctor_m310F37AF5F9F91433A98062BF6E4A248AA6C3DE5(_thisAdjusted, ___days0, ___hours1, ___minutes2, ___seconds3, ___milliseconds4, method); } // System.Int64 System.TimeSpan::get_Ticks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return L_0; } } IL2CPP_EXTERN_C int64_t TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline(_thisAdjusted, method); } // System.Int32 System.TimeSpan::get_Hours() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Hours_mE248B39F7E3E07DAD257713114E86A1A2C191A45 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_0/(int64_t)((int64_t)36000000000LL)))%(int64_t)(((int64_t)((int64_t)((int32_t)24))))))))); } } IL2CPP_EXTERN_C int32_t TimeSpan_get_Hours_mE248B39F7E3E07DAD257713114E86A1A2C191A45_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_get_Hours_mE248B39F7E3E07DAD257713114E86A1A2C191A45(_thisAdjusted, method); } // System.Int32 System.TimeSpan::get_Minutes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Minutes_mCABF9EE7E7F78368DA0F825F5922C06238DD0F22 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_0/(int64_t)(((int64_t)((int64_t)((int32_t)600000000))))))%(int64_t)(((int64_t)((int64_t)((int32_t)60))))))))); } } IL2CPP_EXTERN_C int32_t TimeSpan_get_Minutes_mCABF9EE7E7F78368DA0F825F5922C06238DD0F22_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_get_Minutes_mCABF9EE7E7F78368DA0F825F5922C06238DD0F22(_thisAdjusted, method); } // System.Double System.TimeSpan::get_TotalHours() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalHours_mE5E189FF852CBC3046D1B584D2DC6B541D0BD327 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return ((double)il2cpp_codegen_multiply((double)(((double)((double)L_0))), (double)(2.7777777777777777E-11))); } } IL2CPP_EXTERN_C double TimeSpan_get_TotalHours_mE5E189FF852CBC3046D1B584D2DC6B541D0BD327_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_get_TotalHours_mE5E189FF852CBC3046D1B584D2DC6B541D0BD327(_thisAdjusted, method); } // System.Double System.TimeSpan::get_TotalMilliseconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalMilliseconds_m48B00B27D485CC556C10A5119BC11E1A1E0FE363 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { double V_0 = 0.0; { int64_t L_0 = __this->get__ticks_3(); V_0 = ((double)il2cpp_codegen_multiply((double)(((double)((double)L_0))), (double)(0.0001))); double L_1 = V_0; if ((!(((double)L_1) > ((double)(922337203685477.0))))) { goto IL_0028; } } { return (922337203685477.0); } IL_0028: { double L_2 = V_0; if ((!(((double)L_2) < ((double)(-922337203685477.0))))) { goto IL_003e; } } { return (-922337203685477.0); } IL_003e: { double L_3 = V_0; return L_3; } } IL2CPP_EXTERN_C double TimeSpan_get_TotalMilliseconds_m48B00B27D485CC556C10A5119BC11E1A1E0FE363_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_get_TotalMilliseconds_m48B00B27D485CC556C10A5119BC11E1A1E0FE363(_thisAdjusted, method); } // System.Double System.TimeSpan::get_TotalMinutes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalMinutes_m41B6248DF2E4E6CAFC4A1B3C7ECCD9A10CC16C22 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return ((double)il2cpp_codegen_multiply((double)(((double)((double)L_0))), (double)(1.6666666666666667E-09))); } } IL2CPP_EXTERN_C double TimeSpan_get_TotalMinutes_m41B6248DF2E4E6CAFC4A1B3C7ECCD9A10CC16C22_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_get_TotalMinutes_m41B6248DF2E4E6CAFC4A1B3C7ECCD9A10CC16C22(_thisAdjusted, method); } // System.Double System.TimeSpan::get_TotalSeconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalSeconds_m0F8F314166E6D1F9D36F32EB1272451EDE56B4EA (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return ((double)il2cpp_codegen_multiply((double)(((double)((double)L_0))), (double)(1.0E-07))); } } IL2CPP_EXTERN_C double TimeSpan_get_TotalSeconds_m0F8F314166E6D1F9D36F32EB1272451EDE56B4EA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_get_TotalSeconds_m0F8F314166E6D1F9D36F32EB1272451EDE56B4EA(_thisAdjusted, method); } // System.TimeSpan System.TimeSpan::Add(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Add_mC4C54D4AF8C34EF36288176B85FF2F488A7C5507 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___ts0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_Add_mC4C54D4AF8C34EF36288176B85FF2F488A7C5507_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { int64_t L_0 = __this->get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___ts0; int64_t L_2 = L_1.get__ticks_3(); V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_0, (int64_t)L_2)); int64_t L_3 = __this->get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_4 = ___ts0; int64_t L_5 = L_4.get__ticks_3(); if ((!(((uint64_t)((int64_t)((int64_t)L_3>>(int32_t)((int32_t)63)))) == ((uint64_t)((int64_t)((int64_t)L_5>>(int32_t)((int32_t)63))))))) { goto IL_0041; } } { int64_t L_6 = __this->get__ticks_3(); int64_t L_7 = V_0; if ((((int64_t)((int64_t)((int64_t)L_6>>(int32_t)((int32_t)63)))) == ((int64_t)((int64_t)((int64_t)L_7>>(int32_t)((int32_t)63)))))) { goto IL_0041; } } { String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3E817DFC269EB4946CD544A6A97B106296C3940B, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, TimeSpan_Add_mC4C54D4AF8C34EF36288176B85FF2F488A7C5507_RuntimeMethod_var); } IL_0041: { int64_t L_10 = V_0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_11; memset((&L_11), 0, sizeof(L_11)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((&L_11), L_10, /*hidden argument*/NULL); return L_11; } } IL2CPP_EXTERN_C TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Add_mC4C54D4AF8C34EF36288176B85FF2F488A7C5507_AdjustorThunk (RuntimeObject * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___ts0, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_Add_mC4C54D4AF8C34EF36288176B85FF2F488A7C5507(_thisAdjusted, ___ts0, method); } // System.Int32 System.TimeSpan::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_CompareTo_mF5675C9DD2AA6D97C68CFAAE340B54EC4485564B (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_CompareTo_mF5675C9DD2AA6D97C68CFAAE340B54EC4485564B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___value0; if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))) { goto IL_001d; } } { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBAF34A2547265FEEA14708F8A1A89708432452A6, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TimeSpan_CompareTo_mF5675C9DD2AA6D97C68CFAAE340B54EC4485564B_RuntimeMethod_var); } IL_001d: { RuntimeObject * L_4 = ___value0; int64_t L_5 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)UnBox(L_4, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get__ticks_3(); V_0 = L_5; int64_t L_6 = __this->get__ticks_3(); int64_t L_7 = V_0; if ((((int64_t)L_6) <= ((int64_t)L_7))) { goto IL_0034; } } { return 1; } IL_0034: { int64_t L_8 = __this->get__ticks_3(); int64_t L_9 = V_0; if ((((int64_t)L_8) >= ((int64_t)L_9))) { goto IL_003f; } } { return (-1); } IL_003f: { return 0; } } IL2CPP_EXTERN_C int32_t TimeSpan_CompareTo_mF5675C9DD2AA6D97C68CFAAE340B54EC4485564B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_CompareTo_mF5675C9DD2AA6D97C68CFAAE340B54EC4485564B(_thisAdjusted, ___value0, method); } // System.Int32 System.TimeSpan::CompareTo(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_CompareTo_mCC797C9F7FF3BC0D7C8401666BDE7DCE676449E3 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method) { int64_t V_0 = 0; { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___value0; int64_t L_1 = L_0.get__ticks_3(); V_0 = L_1; int64_t L_2 = __this->get__ticks_3(); int64_t L_3 = V_0; if ((((int64_t)L_2) <= ((int64_t)L_3))) { goto IL_0012; } } { return 1; } IL_0012: { int64_t L_4 = __this->get__ticks_3(); int64_t L_5 = V_0; if ((((int64_t)L_4) >= ((int64_t)L_5))) { goto IL_001d; } } { return (-1); } IL_001d: { return 0; } } IL2CPP_EXTERN_C int32_t TimeSpan_CompareTo_mCC797C9F7FF3BC0D7C8401666BDE7DCE676449E3_AdjustorThunk (RuntimeObject * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_CompareTo_mCC797C9F7FF3BC0D7C8401666BDE7DCE676449E3(_thisAdjusted, ___value0, method); } // System.TimeSpan System.TimeSpan::FromDays(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_FromDays_m99DCC655C53C2898FF0C41D1DDFE17A749081DDB (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_FromDays_m99DCC655C53C2898FF0C41D1DDFE17A749081DDB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732(L_0, ((int32_t)86400000), /*hidden argument*/NULL); return L_1; } } // System.Boolean System.TimeSpan::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_Equals_m7CD315197413EB59DDBCF923AD564E0021E91A70 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_Equals_m7CD315197413EB59DDBCF923AD564E0021E91A70_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))) { goto IL_001c; } } { int64_t L_1 = __this->get__ticks_3(); RuntimeObject * L_2 = ___value0; int64_t L_3 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)UnBox(L_2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get__ticks_3(); return (bool)((((int64_t)L_1) == ((int64_t)L_3))? 1 : 0); } IL_001c: { return (bool)0; } } IL2CPP_EXTERN_C bool TimeSpan_Equals_m7CD315197413EB59DDBCF923AD564E0021E91A70_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_Equals_m7CD315197413EB59DDBCF923AD564E0021E91A70(_thisAdjusted, ___value0, method); } // System.Boolean System.TimeSpan::Equals(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_Equals_m03A10C4E2E28E5E56B4342AC0B9C68EC677C67F4 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___obj0, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___obj0; int64_t L_2 = L_1.get__ticks_3(); return (bool)((((int64_t)L_0) == ((int64_t)L_2))? 1 : 0); } } IL2CPP_EXTERN_C bool TimeSpan_Equals_m03A10C4E2E28E5E56B4342AC0B9C68EC677C67F4_AdjustorThunk (RuntimeObject * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_Equals_m03A10C4E2E28E5E56B4342AC0B9C68EC677C67F4(_thisAdjusted, ___obj0, method); } // System.Int32 System.TimeSpan::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_GetHashCode_m4FD4BD6B179EDD97650F594B0E671EC8FB1E535F (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); int64_t L_1 = __this->get__ticks_3(); return ((int32_t)((int32_t)(((int32_t)((int32_t)L_0)))^(int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)L_1>>(int32_t)((int32_t)32)))))))); } } IL2CPP_EXTERN_C int32_t TimeSpan_GetHashCode_m4FD4BD6B179EDD97650F594B0E671EC8FB1E535F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_GetHashCode_m4FD4BD6B179EDD97650F594B0E671EC8FB1E535F(_thisAdjusted, method); } // System.TimeSpan System.TimeSpan::FromHours(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_FromHours_m90C3C400E2561055C063148CF7B6D71EE5E52D5F (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_FromHours_m90C3C400E2561055C063148CF7B6D71EE5E52D5F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732(L_0, ((int32_t)3600000), /*hidden argument*/NULL); return L_1; } } // System.TimeSpan System.TimeSpan::Interval(System.Double,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732 (double ___value0, int32_t ___scale1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732_MetadataUsageId); s_Il2CppMethodInitialized = true; } double V_0 = 0.0; double G_B4_0 = 0.0; double G_B3_0 = 0.0; double G_B5_0 = 0.0; double G_B5_1 = 0.0; { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var); bool L_1 = Double_IsNaN_m5DFBBD58036879B687FEC248C50EACBABE205AB3(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0018; } } { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral7B9E91548E399930C3935F7EC5D98D85C3F78739, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732_RuntimeMethod_var); } IL_0018: { double L_4 = ___value0; int32_t L_5 = ___scale1; double L_6 = ___value0; G_B3_0 = ((double)il2cpp_codegen_multiply((double)L_4, (double)(((double)((double)L_5))))); if ((((double)L_6) >= ((double)(0.0)))) { G_B4_0 = ((double)il2cpp_codegen_multiply((double)L_4, (double)(((double)((double)L_5))))); goto IL_0033; } } { G_B5_0 = (-0.5); G_B5_1 = G_B3_0; goto IL_003c; } IL_0033: { G_B5_0 = (0.5); G_B5_1 = G_B4_0; } IL_003c: { V_0 = ((double)il2cpp_codegen_add((double)G_B5_1, (double)G_B5_0)); double L_7 = V_0; if ((((double)L_7) > ((double)(922337203685477.0)))) { goto IL_0056; } } { double L_8 = V_0; if ((!(((double)L_8) < ((double)(-922337203685477.0))))) { goto IL_0066; } } IL_0056: { String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3E817DFC269EB4946CD544A6A97B106296C3940B, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_10 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732_RuntimeMethod_var); } IL_0066: { double L_11 = V_0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_12; memset((&L_12), 0, sizeof(L_12)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((&L_12), ((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_11))), (int64_t)(((int64_t)((int64_t)((int32_t)10000)))))), /*hidden argument*/NULL); return L_12; } } // System.TimeSpan System.TimeSpan::FromMilliseconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_FromMilliseconds_mED351BDAFE79A7C08A3F115FB4B5E000CF73900D (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_FromMilliseconds_mED351BDAFE79A7C08A3F115FB4B5E000CF73900D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732(L_0, 1, /*hidden argument*/NULL); return L_1; } } // System.TimeSpan System.TimeSpan::FromMinutes(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_FromMinutes_m3038BAC5BAB62262567D7BB3AE6DD845FC985BC2 (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_FromMinutes_m3038BAC5BAB62262567D7BB3AE6DD845FC985BC2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732(L_0, ((int32_t)60000), /*hidden argument*/NULL); return L_1; } } // System.TimeSpan System.TimeSpan::Negate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33_MetadataUsageId); s_Il2CppMethodInitialized = true; } TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_0; memset((&V_0), 0, sizeof(V_0)); { int64_t L_0 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_MinValue_2(); V_0 = L_1; int64_t L_2 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_0), /*hidden argument*/NULL); if ((!(((uint64_t)L_0) == ((uint64_t)L_2)))) { goto IL_0025; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6CB021F4DE5A59C914CE2FD45BD52E5CA6A397FC, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_4 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33_RuntimeMethod_var); } IL_0025: { int64_t L_5 = __this->get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_6; memset((&L_6), 0, sizeof(L_6)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((&L_6), ((-L_5)), /*hidden argument*/NULL); return L_6; } } IL2CPP_EXTERN_C TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_Negate_m0DC5231DD5489EB3A8A7AE9AC30F83CBD3987C33(_thisAdjusted, method); } // System.TimeSpan System.TimeSpan::FromSeconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_FromSeconds_mB18CB94089B3DA3B1B059BBE90367A9928AEE5CA (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_FromSeconds_mB18CB94089B3DA3B1B059BBE90367A9928AEE5CA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = TimeSpan_Interval_mC54779784D1D81AF3B63161397F31CF7ECDD7732(L_0, ((int32_t)1000), /*hidden argument*/NULL); return L_1; } } // System.TimeSpan System.TimeSpan::Subtract(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Subtract_m9A5CA898BD0D57AE22E8E19548B8D635961A71C0 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___ts0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_Subtract_m9A5CA898BD0D57AE22E8E19548B8D635961A71C0_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { int64_t L_0 = __this->get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___ts0; int64_t L_2 = L_1.get__ticks_3(); V_0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_0, (int64_t)L_2)); int64_t L_3 = __this->get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_4 = ___ts0; int64_t L_5 = L_4.get__ticks_3(); if ((((int64_t)((int64_t)((int64_t)L_3>>(int32_t)((int32_t)63)))) == ((int64_t)((int64_t)((int64_t)L_5>>(int32_t)((int32_t)63)))))) { goto IL_0041; } } { int64_t L_6 = __this->get__ticks_3(); int64_t L_7 = V_0; if ((((int64_t)((int64_t)((int64_t)L_6>>(int32_t)((int32_t)63)))) == ((int64_t)((int64_t)((int64_t)L_7>>(int32_t)((int32_t)63)))))) { goto IL_0041; } } { String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3E817DFC269EB4946CD544A6A97B106296C3940B, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_9 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, TimeSpan_Subtract_m9A5CA898BD0D57AE22E8E19548B8D635961A71C0_RuntimeMethod_var); } IL_0041: { int64_t L_10 = V_0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_11; memset((&L_11), 0, sizeof(L_11)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((&L_11), L_10, /*hidden argument*/NULL); return L_11; } } IL2CPP_EXTERN_C TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_Subtract_m9A5CA898BD0D57AE22E8E19548B8D635961A71C0_AdjustorThunk (RuntimeObject * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___ts0, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_Subtract_m9A5CA898BD0D57AE22E8E19548B8D635961A71C0(_thisAdjusted, ___ts0, method); } // System.TimeSpan System.TimeSpan::FromTicks(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_FromTicks_mDF1F429F18294D57DE2739DBD2F33637E4E5F8F4 (int64_t ___value0, const RuntimeMethod* method) { { int64_t L_0 = ___value0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1; memset((&L_1), 0, sizeof(L_1)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((&L_1), L_0, /*hidden argument*/NULL); return L_1; } } // System.Int64 System.TimeSpan::TimeToTicks(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeSpan_TimeToTicks_m30D961C24084E95EA9FE0565B87FCFFE24DD3632 (int32_t ___hour0, int32_t ___minute1, int32_t ___second2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_TimeToTicks_m30D961C24084E95EA9FE0565B87FCFFE24DD3632_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { int32_t L_0 = ___hour0; int32_t L_1 = ___minute1; int32_t L_2 = ___second2; V_0 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_0))), (int64_t)(((int64_t)((int64_t)((int32_t)3600)))))), (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_1))), (int64_t)(((int64_t)((int64_t)((int32_t)60)))))))), (int64_t)(((int64_t)((int64_t)L_2))))); int64_t L_3 = V_0; if ((((int64_t)L_3) > ((int64_t)((int64_t)922337203685LL)))) { goto IL_002c; } } { int64_t L_4 = V_0; if ((((int64_t)L_4) >= ((int64_t)((int64_t)-922337203685LL)))) { goto IL_003d; } } IL_002c: { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3E817DFC269EB4946CD544A6A97B106296C3940B, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, (String_t*)NULL, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, TimeSpan_TimeToTicks_m30D961C24084E95EA9FE0565B87FCFFE24DD3632_RuntimeMethod_var); } IL_003d: { int64_t L_7 = V_0; return ((int64_t)il2cpp_codegen_multiply((int64_t)L_7, (int64_t)(((int64_t)((int64_t)((int32_t)10000000)))))); } } // System.String System.TimeSpan::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeSpan_ToString_m3D31EDB779332CA887A4CB9BD1CA781C59B79EA8 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_ToString_m3D31EDB779332CA887A4CB9BD1CA781C59B79EA8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = (*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)__this); IL2CPP_RUNTIME_CLASS_INIT(TimeSpanFormat_t90CBC39FE99AC515E1F68FE55DBA3D8515F19B51_il2cpp_TypeInfo_var); String_t* L_1 = TimeSpanFormat_Format_mDFAF627CECBD00A1DDB27D3D812974B3A2875B8F(L_0, (String_t*)NULL, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C String_t* TimeSpan_ToString_m3D31EDB779332CA887A4CB9BD1CA781C59B79EA8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_ToString_m3D31EDB779332CA887A4CB9BD1CA781C59B79EA8(_thisAdjusted, method); } // System.String System.TimeSpan::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeSpan_ToString_m8931E09D0B73F3CF436C70E02D74E14F5479B9BF (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, String_t* ___format0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_ToString_m8931E09D0B73F3CF436C70E02D74E14F5479B9BF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = (*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)__this); String_t* L_1 = ___format0; IL2CPP_RUNTIME_CLASS_INIT(TimeSpanFormat_t90CBC39FE99AC515E1F68FE55DBA3D8515F19B51_il2cpp_TypeInfo_var); String_t* L_2 = TimeSpanFormat_Format_mDFAF627CECBD00A1DDB27D3D812974B3A2875B8F(L_0, L_1, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C String_t* TimeSpan_ToString_m8931E09D0B73F3CF436C70E02D74E14F5479B9BF_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_ToString_m8931E09D0B73F3CF436C70E02D74E14F5479B9BF(_thisAdjusted, ___format0, method); } // System.String System.TimeSpan::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeSpan_ToString_m9486CD30DB9A51A6AA51C2672FCB1DFEF074FC9F (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, String_t* ___format0, RuntimeObject* ___formatProvider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_ToString_m9486CD30DB9A51A6AA51C2672FCB1DFEF074FC9F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_0 = TimeSpan_get_LegacyMode_mB9C63B017249E99A978D2977C6172848EFBA30F8(/*hidden argument*/NULL); if (!L_0) { goto IL_0015; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = (*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)__this); IL2CPP_RUNTIME_CLASS_INIT(TimeSpanFormat_t90CBC39FE99AC515E1F68FE55DBA3D8515F19B51_il2cpp_TypeInfo_var); String_t* L_2 = TimeSpanFormat_Format_mDFAF627CECBD00A1DDB27D3D812974B3A2875B8F(L_1, (String_t*)NULL, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_2; } IL_0015: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_3 = (*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)__this); String_t* L_4 = ___format0; RuntimeObject* L_5 = ___formatProvider1; IL2CPP_RUNTIME_CLASS_INIT(TimeSpanFormat_t90CBC39FE99AC515E1F68FE55DBA3D8515F19B51_il2cpp_TypeInfo_var); String_t* L_6 = TimeSpanFormat_Format_mDFAF627CECBD00A1DDB27D3D812974B3A2875B8F(L_3, L_4, L_5, /*hidden argument*/NULL); return L_6; } } IL2CPP_EXTERN_C String_t* TimeSpan_ToString_m9486CD30DB9A51A6AA51C2672FCB1DFEF074FC9F_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___formatProvider1, const RuntimeMethod* method) { int32_t _offset = 1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * _thisAdjusted = reinterpret_cast<TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *>(__this + _offset); return TimeSpan_ToString_m9486CD30DB9A51A6AA51C2672FCB1DFEF074FC9F(_thisAdjusted, ___format0, ___formatProvider1, method); } // System.TimeSpan System.TimeSpan::op_Subtraction(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_op_Subtraction_m5978CE5FCEB3D59AF0BC52AF838BFE3237AE8B23 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___t21; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = TimeSpan_Subtract_m9A5CA898BD0D57AE22E8E19548B8D635961A71C0((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___t10), L_0, /*hidden argument*/NULL); return L_1; } } // System.TimeSpan System.TimeSpan::op_Addition(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_op_Addition_m2C916EE6F60BA72329886F1568FE9DD0D8DF0DB7 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___t21; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = TimeSpan_Add_mC4C54D4AF8C34EF36288176B85FF2F488A7C5507((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___t10), L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.TimeSpan::op_Equality(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Equality_mEA0A4B7FDCAFA54C636292F7EB76F9A16C44096D (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___t10; int64_t L_1 = L_0.get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = ___t21; int64_t L_3 = L_2.get__ticks_3(); return (bool)((((int64_t)L_1) == ((int64_t)L_3))? 1 : 0); } } // System.Boolean System.TimeSpan::op_Inequality(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___t10; int64_t L_1 = L_0.get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = ___t21; int64_t L_3 = L_2.get__ticks_3(); return (bool)((((int32_t)((((int64_t)L_1) == ((int64_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.TimeSpan::op_LessThan(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_LessThan_mF92FF63DD1E52540977D3B1753D43895F7B0A117 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___t10; int64_t L_1 = L_0.get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = ___t21; int64_t L_3 = L_2.get__ticks_3(); return (bool)((((int64_t)L_1) < ((int64_t)L_3))? 1 : 0); } } // System.Boolean System.TimeSpan::op_LessThanOrEqual(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_LessThanOrEqual_mFFB6826BC19E5E63E62697EF3A81B84CD529E83B (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___t10; int64_t L_1 = L_0.get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = ___t21; int64_t L_3 = L_2.get__ticks_3(); return (bool)((((int32_t)((((int64_t)L_1) > ((int64_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.TimeSpan::op_GreaterThan(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThan_mC4CE0AD3057035058479B695ACDC089F3A6EA486 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___t10; int64_t L_1 = L_0.get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = ___t21; int64_t L_3 = L_2.get__ticks_3(); return (bool)((((int64_t)L_1) > ((int64_t)L_3))? 1 : 0); } } // System.Boolean System.TimeSpan::op_GreaterThanOrEqual(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThanOrEqual_m7FE9830EF2AAD2BB65628A0FE7F7C70161BB4D9B (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___t10; int64_t L_1 = L_0.get__ticks_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = ___t21; int64_t L_3 = L_2.get__ticks_3(); return (bool)((((int32_t)((((int64_t)L_1) < ((int64_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.TimeSpan::GetLegacyFormatMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_GetLegacyFormatMode_m058C62B8FEB05BBD84A5437AEDF60DAF2444EBB8 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_GetLegacyFormatMode_m058C62B8FEB05BBD84A5437AEDF60DAF2444EBB8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanSilverlight4_0(); return L_0; } } // System.Boolean System.TimeSpan::get_LegacyMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_get_LegacyMode_mB9C63B017249E99A978D2977C6172848EFBA30F8 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_get_LegacyMode_mB9C63B017249E99A978D2977C6172848EFBA30F8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_0 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get__legacyConfigChecked_4(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_001d; } } { IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_1 = TimeSpan_GetLegacyFormatMode_m058C62B8FEB05BBD84A5437AEDF60DAF2444EBB8_inline(/*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->set__legacyMode_5(L_1); il2cpp_codegen_memory_barrier(); ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->set__legacyConfigChecked_4(1); } IL_001d: { IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_2 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get__legacyMode_5(); il2cpp_codegen_memory_barrier(); return L_2; } } // System.Void System.TimeSpan::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpan__cctor_m4277FE003AF4295BD502DDC59770B07A497C1CBE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan__cctor_m4277FE003AF4295BD502DDC59770B07A497C1CBE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0; memset((&L_0), 0, sizeof(L_0)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((&L_0), (((int64_t)((int64_t)0))), /*hidden argument*/NULL); ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->set_Zero_0(L_0); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1; memset((&L_1), 0, sizeof(L_1)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((&L_1), ((int64_t)(std::numeric_limits<int64_t>::max)()), /*hidden argument*/NULL); ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->set_MaxValue_1(L_1); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2; memset((&L_2), 0, sizeof(L_2)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((&L_2), ((int64_t)(std::numeric_limits<int64_t>::min)()), /*hidden argument*/NULL); ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->set_MinValue_2(L_2); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.TimeType::.ctor(System.Int32,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeType__ctor_m28FA06EC6A851C81414A6435BE25D1FD494FFE03 (TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * __this, int32_t ___offset0, bool ___is_dst1, String_t* ___abbrev2, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___offset0; __this->set_Offset_0(L_0); bool L_1 = ___is_dst1; __this->set_IsDst_1(L_1); String_t* L_2 = ___abbrev2; __this->set_Name_2(L_2); return; } } // System.String System.TimeType::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeType_ToString_m038596EE0936A7854ECC6E84EE9BF236B3DA2BA4 (TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeType_ToString_m038596EE0936A7854ECC6E84EE9BF236B3DA2BA4_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)6); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral1AD0E9342E3C33991ED3887D6306B249546F0C7B); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral1AD0E9342E3C33991ED3887D6306B249546F0C7B); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; int32_t L_3 = __this->get_Offset_0(); int32_t L_4 = L_3; RuntimeObject * L_5 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_4); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_5); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_5); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_2; NullCheck(L_6); ArrayElementTypeCheck (L_6, _stringLiteral168E598D868A0CC9140604911551C2FC496E3A05); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral168E598D868A0CC9140604911551C2FC496E3A05); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6; bool L_8 = __this->get_IsDst_1(); V_0 = L_8; String_t* L_9 = Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301((bool*)(&V_0), /*hidden argument*/NULL); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_9); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_7; NullCheck(L_10); ArrayElementTypeCheck (L_10, _stringLiteral222A297D18FF1387F7919DAD802CF73BA68A5B9C); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral222A297D18FF1387F7919DAD802CF73BA68A5B9C); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_10; String_t* L_12 = __this->get_Name_2(); NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_12); String_t* L_13 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_11, /*hidden argument*/NULL); return L_13; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.TimeZone::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZone__ctor_mBD56855E65E61A15C21F434032207DF5469CEF31 (TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.TimeZone::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZone__cctor_mF4FC3AB8D82A4A380D166F0F60CE193D51FA07D8 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZone__cctor_mF4FC3AB8D82A4A380D166F0F60CE193D51FA07D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL); ((TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454_StaticFields*)il2cpp_codegen_static_fields_for(TimeZone_tA2DF435DA1A379978B885F0872A93774666B7454_il2cpp_TypeInfo_var))->set_tz_lock_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.TimeZoneInfo::UtcOffsetOutOfRange(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_UtcOffsetOutOfRange_m90D343BE5ACC4FA2B82B2801550A1D44C72F3E6C (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___offset0, const RuntimeMethod* method) { { double L_0 = TimeSpan_get_TotalHours_mE5E189FF852CBC3046D1B584D2DC6B541D0BD327((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___offset0), /*hidden argument*/NULL); if ((((double)L_0) < ((double)(-14.0)))) { goto IL_0025; } } { double L_1 = TimeSpan_get_TotalHours_mE5E189FF852CBC3046D1B584D2DC6B541D0BD327((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___offset0), /*hidden argument*/NULL); return (bool)((((double)L_1) > ((double)(14.0)))? 1 : 0); } IL_0025: { return (bool)1; } } // System.Collections.Generic.List`1<System.TimeZoneInfo_AdjustmentRule> System.TimeZoneInfo::CreateAdjustmentRule(System.Int32,System.Int64[]&,System.String[]&,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * TimeZoneInfo_CreateAdjustmentRule_m91309BB1DD028055DF1162AF2C32E3B49B205217 (int32_t ___year0, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** ___data1, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** ___names2, String_t* ___standardNameCurrentYear3, String_t* ___daylightNameCurrentYear4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_CreateAdjustmentRule_m91309BB1DD028055DF1162AF2C32E3B49B205217_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * V_0 = NULL; bool V_1 = false; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_3; memset((&V_3), 0, sizeof(V_3)); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_4; memset((&V_4), 0, sizeof(V_4)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_5; memset((&V_5), 0, sizeof(V_5)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_6; memset((&V_6), 0, sizeof(V_6)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_7; memset((&V_7), 0, sizeof(V_7)); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_8; memset((&V_8), 0, sizeof(V_8)); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_9; memset((&V_9), 0, sizeof(V_9)); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_10 = NULL; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_11; memset((&V_11), 0, sizeof(V_11)); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_12; memset((&V_12), 0, sizeof(V_12)); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_13; memset((&V_13), 0, sizeof(V_13)); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_14 = NULL; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_15; memset((&V_15), 0, sizeof(V_15)); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_16; memset((&V_16), 0, sizeof(V_16)); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_17 = NULL; { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_0 = (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *)il2cpp_codegen_object_new(List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E_il2cpp_TypeInfo_var); List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708(L_0, /*hidden argument*/List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708_RuntimeMethod_var); V_0 = L_0; int32_t L_1 = ___year0; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** L_2 = ___data1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** L_3 = ___names2; bool L_4 = CurrentSystemTimeZone_GetTimeZoneData_m24EC5AA1CB7F2E2809CE4C2EE66FDB062C2EAFCF(L_1, (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F**)L_2, (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**)L_3, (bool*)(&V_1), /*hidden argument*/NULL); if (L_4) { goto IL_0014; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_5 = V_0; return L_5; } IL_0014: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** L_6 = ___data1; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_7 = *((Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F**)L_6); NullCheck(L_7); int32_t L_8 = 0; int64_t L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), L_9, /*hidden argument*/NULL); Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** L_10 = ___data1; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_11 = *((Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F**)L_10); NullCheck(L_11); int32_t L_12 = 1; int64_t L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_3), L_13, /*hidden argument*/NULL); Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F** L_14 = ___data1; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_15 = *((Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F**)L_14); NullCheck(L_15); int32_t L_16 = 3; int64_t L_17 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_4), L_17, /*hidden argument*/NULL); String_t* L_18 = ___standardNameCurrentYear3; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** L_19 = ___names2; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = *((StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**)L_19); NullCheck(L_20); int32_t L_21 = 0; String_t* L_22 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); bool L_23 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_18, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_0043; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_24 = V_0; return L_24; } IL_0043: { String_t* L_25 = ___daylightNameCurrentYear4; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** L_26 = ___names2; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = *((StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**)L_26); NullCheck(L_27); int32_t L_28 = 1; String_t* L_29 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_28)); bool L_30 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_25, L_29, /*hidden argument*/NULL); if (!L_30) { goto IL_0052; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_31 = V_0; return L_31; } IL_0052: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_32 = V_3; bool L_33 = DateTime_Equals_m5D0978D469FA7B13308608D7DA97E1AF6265AD42((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), L_32, /*hidden argument*/NULL); if (!L_33) { goto IL_005e; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_34 = V_0; return L_34; } IL_005e: { int32_t L_35 = ___year0; DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_5), L_35, 1, 1, 0, 0, 0, 0, /*hidden argument*/NULL); int32_t L_36 = ___year0; int32_t L_37 = ___year0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); int32_t L_38 = DateTime_DaysInMonth_mE979D12858E0D6CC14576D283B5AB66AA53B9F90(L_37, ((int32_t)12), /*hidden argument*/NULL); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_6), L_36, ((int32_t)12), L_38, /*hidden argument*/NULL); int32_t L_39 = ___year0; int32_t L_40 = ___year0; int32_t L_41 = DateTime_DaysInMonth_mE979D12858E0D6CC14576D283B5AB66AA53B9F90(L_40, ((int32_t)12), /*hidden argument*/NULL); DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_7), L_39, ((int32_t)12), L_41, ((int32_t)23), ((int32_t)59), ((int32_t)59), ((int32_t)999), /*hidden argument*/NULL); bool L_42 = V_1; if (L_42) { goto IL_0116; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_43; memset((&L_43), 0, sizeof(L_43)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_43), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_43; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_44 = DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_45 = DateTime_Add_mA4F1A47C77858AC06AF07CCE9BDFF32F442B27DB((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_11), L_44, /*hidden argument*/NULL); int32_t L_46 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); int32_t L_47 = DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_48 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_45, L_46, L_47, /*hidden argument*/NULL); V_8 = L_48; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_49; memset((&L_49), 0, sizeof(L_49)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_49), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_49; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_50 = DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_3), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_51 = DateTime_Add_mA4F1A47C77858AC06AF07CCE9BDFF32F442B27DB((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_11), L_50, /*hidden argument*/NULL); int32_t L_52 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_3), /*hidden argument*/NULL); int32_t L_53 = DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_3), /*hidden argument*/NULL); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_54 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_51, L_52, L_53, /*hidden argument*/NULL); V_9 = L_54; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_55 = V_5; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_56 = V_6; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_57 = V_4; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_58 = V_8; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_59 = V_9; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_60 = AdjustmentRule_CreateAdjustmentRule_m02250B76565B1F45DA0F87EA2630579828049935(L_55, L_56, L_57, L_58, L_59, /*hidden argument*/NULL); V_10 = L_60; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_61 = V_0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_62 = V_10; NullCheck(L_61); List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608(L_61, L_62, /*hidden argument*/List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608_RuntimeMethod_var); goto IL_0228; } IL_0116: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_63; memset((&L_63), 0, sizeof(L_63)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_63), 1, 1, 1, /*hidden argument*/NULL); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_64 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_63, 1, 1, /*hidden argument*/NULL); V_12 = L_64; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_65; memset((&L_65), 0, sizeof(L_65)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_65), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_65; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_66 = DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_67 = DateTime_Add_mA4F1A47C77858AC06AF07CCE9BDFF32F442B27DB((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_11), L_66, /*hidden argument*/NULL); int32_t L_68 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); int32_t L_69 = DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_70 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_67, L_68, L_69, /*hidden argument*/NULL); V_13 = L_70; int32_t L_71 = ___year0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_72; memset((&L_72), 0, sizeof(L_72)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_72), L_71, 1, 1, /*hidden argument*/NULL); int32_t L_73 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); int32_t L_74 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); int32_t L_75 = DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_76; memset((&L_76), 0, sizeof(L_76)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_76), L_73, L_74, L_75, /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_77 = V_4; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_78 = V_12; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_79 = V_13; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_80 = AdjustmentRule_CreateAdjustmentRule_m02250B76565B1F45DA0F87EA2630579828049935(L_72, L_76, L_77, L_78, L_79, /*hidden argument*/NULL); V_14 = L_80; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_81 = V_0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_82 = V_14; NullCheck(L_81); List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608(L_81, L_82, /*hidden argument*/List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608_RuntimeMethod_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_83; memset((&L_83), 0, sizeof(L_83)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_83), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_83; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_84 = DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_3), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_85 = DateTime_Add_mA4F1A47C77858AC06AF07CCE9BDFF32F442B27DB((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_11), L_84, /*hidden argument*/NULL); int32_t L_86 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_3), /*hidden argument*/NULL); int32_t L_87 = DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_3), /*hidden argument*/NULL); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_88 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_85, L_86, L_87, /*hidden argument*/NULL); V_15 = L_88; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_89; memset((&L_89), 0, sizeof(L_89)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_89), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_89; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_90 = DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_7), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_91 = DateTime_Add_mA4F1A47C77858AC06AF07CCE9BDFF32F442B27DB((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_11), L_90, /*hidden argument*/NULL); int32_t L_92 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_7), /*hidden argument*/NULL); int32_t L_93 = DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_7), /*hidden argument*/NULL); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_94 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_91, L_92, L_93, /*hidden argument*/NULL); V_16 = L_94; int32_t L_95 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); int32_t L_96 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); int32_t L_97 = DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_98; memset((&L_98), 0, sizeof(L_98)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_98), L_95, L_96, L_97, /*hidden argument*/NULL); V_11 = L_98; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_99 = DateTime_AddDays_mB11D2BB2D7DD6944D1071809574A951258F94D8E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_11), (1.0), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_100 = V_6; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_101 = V_4; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_102 = V_15; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_103 = V_16; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_104 = AdjustmentRule_CreateAdjustmentRule_m02250B76565B1F45DA0F87EA2630579828049935(L_99, L_100, L_101, L_102, L_103, /*hidden argument*/NULL); V_17 = L_104; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_105 = V_0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_106 = V_17; NullCheck(L_105); List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608(L_105, L_106, /*hidden argument*/List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608_RuntimeMethod_var); } IL_0228: { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_107 = V_0; return L_107; } } // System.TimeZoneInfo System.TimeZoneInfo::CreateLocalUnity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_CreateLocalUnity_mD72D1DBB52C82E4AC72C1B697F1F37C935C755EA (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_CreateLocalUnity_mD72D1DBB52C82E4AC72C1B697F1F37C935C755EA_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* V_0 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_1 = NULL; bool V_2 = false; int32_t V_3 = 0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_4; memset((&V_4), 0, sizeof(V_4)); Il2CppChar V_5 = 0x0; String_t* V_6 = NULL; String_t* V_7 = NULL; String_t* V_8 = NULL; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * V_9 = NULL; bool V_10 = false; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_11; memset((&V_11), 0, sizeof(V_11)); int32_t V_12 = 0; int32_t V_13 = 0; int32_t V_14 = 0; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * V_15 = NULL; int32_t V_16 = 0; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * V_17 = NULL; int32_t G_B5_0 = 0; Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 * G_B16_0 = NULL; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * G_B16_1 = NULL; Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 * G_B15_0 = NULL; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * G_B15_1 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1(/*hidden argument*/NULL); V_11 = L_0; int32_t L_1 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_11), /*hidden argument*/NULL); V_3 = L_1; int32_t L_2 = V_3; bool L_3 = CurrentSystemTimeZone_GetTimeZoneData_m24EC5AA1CB7F2E2809CE4C2EE66FDB062C2EAFCF(L_2, (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F**)(&V_0), (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**)(&V_1), (bool*)(&V_2), /*hidden argument*/NULL); if (L_3) { goto IL_0028; } } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_4 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_4, _stringLiteralF632347943CA4E8CC8339626FD5E7D507C6E5C81, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TimeZoneInfo_CreateLocalUnity_mD72D1DBB52C82E4AC72C1B697F1F37C935C755EA_RuntimeMethod_var); } IL_0028: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_5 = V_0; NullCheck(L_5); int32_t L_6 = 2; int64_t L_7 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_8 = TimeSpan_FromTicks_mDF1F429F18294D57DE2739DBD2F33637E4E5F8F4(L_7, /*hidden argument*/NULL); V_4 = L_8; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_9 = V_4; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_10 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); bool L_11 = TimeSpan_op_GreaterThanOrEqual_m7FE9830EF2AAD2BB65628A0FE7F7C70161BB4D9B(L_9, L_10, /*hidden argument*/NULL); if (L_11) { goto IL_0044; } } { G_B5_0 = ((int32_t)45); goto IL_0046; } IL_0044: { G_B5_0 = ((int32_t)43); } IL_0046: { V_5 = G_B5_0; String_t* L_12 = Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8((Il2CppChar*)(&V_5), /*hidden argument*/NULL); String_t* L_13 = TimeSpan_ToString_m8931E09D0B73F3CF436C70E02D74E14F5479B9BF((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_4), _stringLiteral0BE186D40CC51422D8F602B64FE0068673C79138, /*hidden argument*/NULL); String_t* L_14 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteralDDB0D01193ED435B77174CFA9313A4E94E2B4FD5, L_12, L_13, _stringLiteralD25FC308E967C0107DD8D8FCA45D38FEC31F5CF1, /*hidden argument*/NULL); V_6 = L_14; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_15 = V_1; NullCheck(L_15); int32_t L_16 = 0; String_t* L_17 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); V_7 = L_17; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_18 = V_1; NullCheck(L_18); int32_t L_19 = 1; String_t* L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); V_8 = L_20; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_21 = (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *)il2cpp_codegen_object_new(List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E_il2cpp_TypeInfo_var); List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708(L_21, /*hidden argument*/List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708_RuntimeMethod_var); V_9 = L_21; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_22 = V_0; NullCheck(L_22); int32_t L_23 = 3; int64_t L_24 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_23)); V_10 = (bool)((((int64_t)L_24) == ((int64_t)(((int64_t)((int64_t)0)))))? 1 : 0); bool L_25 = V_10; if (L_25) { goto IL_012d; } } { V_12 = ((int32_t)1971); V_13 = ((int32_t)2037); int32_t L_26 = V_3; V_14 = L_26; goto IL_00ca; } IL_00a0: { int32_t L_27 = V_14; String_t* L_28 = V_7; String_t* L_29 = V_8; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_30 = TimeZoneInfo_CreateAdjustmentRule_m91309BB1DD028055DF1162AF2C32E3B49B205217(L_27, (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F**)(&V_0), (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**)(&V_1), L_28, L_29, /*hidden argument*/NULL); V_15 = L_30; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_31 = V_15; NullCheck(L_31); int32_t L_32 = List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_inline(L_31, /*hidden argument*/List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_RuntimeMethod_var); if ((((int32_t)L_32) <= ((int32_t)0))) { goto IL_00d0; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_33 = V_9; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_34 = V_15; NullCheck(L_33); List_1_AddRange_m6A63D4FE58AC9BB75CFFAC71A9F238D5D2FA6B86(L_33, L_34, /*hidden argument*/List_1_AddRange_m6A63D4FE58AC9BB75CFFAC71A9F238D5D2FA6B86_RuntimeMethod_var); int32_t L_35 = V_14; V_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)); } IL_00ca: { int32_t L_36 = V_14; int32_t L_37 = V_13; if ((((int32_t)L_36) <= ((int32_t)L_37))) { goto IL_00a0; } } IL_00d0: { int32_t L_38 = V_3; V_16 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)1)); goto IL_0101; } IL_00d7: { int32_t L_39 = V_16; String_t* L_40 = V_7; String_t* L_41 = V_8; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_42 = TimeZoneInfo_CreateAdjustmentRule_m91309BB1DD028055DF1162AF2C32E3B49B205217(L_39, (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F**)(&V_0), (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**)(&V_1), L_40, L_41, /*hidden argument*/NULL); V_17 = L_42; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_43 = V_17; NullCheck(L_43); int32_t L_44 = List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_inline(L_43, /*hidden argument*/List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_RuntimeMethod_var); if ((((int32_t)L_44) <= ((int32_t)0))) { goto IL_0107; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_45 = V_9; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_46 = V_17; NullCheck(L_45); List_1_AddRange_m6A63D4FE58AC9BB75CFFAC71A9F238D5D2FA6B86(L_45, L_46, /*hidden argument*/List_1_AddRange_m6A63D4FE58AC9BB75CFFAC71A9F238D5D2FA6B86_RuntimeMethod_var); int32_t L_47 = V_16; V_16 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_47, (int32_t)1)); } IL_0101: { int32_t L_48 = V_16; int32_t L_49 = V_12; if ((((int32_t)L_48) >= ((int32_t)L_49))) { goto IL_00d7; } } IL_0107: { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_50 = V_9; IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_il2cpp_TypeInfo_var); Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 * L_51 = ((U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_il2cpp_TypeInfo_var))->get_U3CU3E9__19_0_1(); Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 * L_52 = L_51; G_B15_0 = L_52; G_B15_1 = L_50; if (L_52) { G_B16_0 = L_52; G_B16_1 = L_50; goto IL_0128; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_il2cpp_TypeInfo_var); U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7 * L_53 = ((U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 * L_54 = (Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 *)il2cpp_codegen_object_new(Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6_il2cpp_TypeInfo_var); Comparison_1__ctor_mE0538E25387B755D53C0B704CB16ED1F23AD18E0(L_54, L_53, (intptr_t)((intptr_t)U3CU3Ec_U3CCreateLocalUnityU3Eb__19_0_m55743CD9DA788A9D4D21F215C405D7EF527EDF15_RuntimeMethod_var), /*hidden argument*/Comparison_1__ctor_mE0538E25387B755D53C0B704CB16ED1F23AD18E0_RuntimeMethod_var); Comparison_1_tD28744463320E1F22A90E02BFEE7967364ABCAA6 * L_55 = L_54; ((U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_il2cpp_TypeInfo_var))->set_U3CU3E9__19_0_1(L_55); G_B16_0 = L_55; G_B16_1 = G_B15_1; } IL_0128: { NullCheck(G_B16_1); List_1_Sort_m3B256FB508DAF70D63EBA562343E275EC0308919(G_B16_1, G_B16_0, /*hidden argument*/List_1_Sort_m3B256FB508DAF70D63EBA562343E275EC0308919_RuntimeMethod_var); } IL_012d: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_56 = V_4; String_t* L_57 = V_6; String_t* L_58 = V_7; String_t* L_59 = V_8; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_60 = V_9; NullCheck(L_60); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_61 = List_1_ToArray_m803235EC510CCE1CF53E7D6FB952A83E01154DE1(L_60, /*hidden argument*/List_1_ToArray_m803235EC510CCE1CF53E7D6FB952A83E01154DE1_RuntimeMethod_var); bool L_62 = V_10; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_63 = TimeZoneInfo_CreateCustomTimeZone_m11D4C4650268C21964BDAEBE2DF66EF03FA0D44A(_stringLiteralDC99D54D9990E3C134420BE3918E88F28531E630, L_56, L_57, L_58, L_59, L_61, L_62, /*hidden argument*/NULL); return L_63; } } #if FORCE_PINVOKE_INTERNAL IL2CPP_EXTERN_C uint32_t DEFAULT_CALL EnumDynamicTimeZoneInformation(uint32_t, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*); #endif // System.UInt32 System.TimeZoneInfo::EnumDynamicTimeZoneInformation(System.UInt32,System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TimeZoneInfo_EnumDynamicTimeZoneInformation_mA9B80840DB7EFA7A20521562B5D00BEA0545D3D3 (uint32_t ___dwIndex0, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___lpTimeZoneInformation1, const RuntimeMethod* method) { typedef uint32_t (DEFAULT_CALL *PInvokeFunc) (uint32_t, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*); #if !FORCE_PINVOKE_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t) + sizeof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke<PInvokeFunc>(IL2CPP_NATIVE_STRING("api-ms-win-core-timezone-l1-1-0.dll"), "EnumDynamicTimeZoneInformation", IL2CPP_CALL_DEFAULT, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___lpTimeZoneInformation1' to native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke ____lpTimeZoneInformation1_empty = {}; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke* ____lpTimeZoneInformation1_marshaled = &____lpTimeZoneInformation1_empty; // Native function invocation #if FORCE_PINVOKE_INTERNAL uint32_t returnValue = reinterpret_cast<PInvokeFunc>(EnumDynamicTimeZoneInformation)(___dwIndex0, ____lpTimeZoneInformation1_marshaled); #else uint32_t returnValue = il2cppPInvokeFunc(___dwIndex0, ____lpTimeZoneInformation1_marshaled); #endif // Marshaling of parameter '___lpTimeZoneInformation1' back from native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F _____lpTimeZoneInformation1_marshaled_unmarshaled_dereferenced; memset((&_____lpTimeZoneInformation1_marshaled_unmarshaled_dereferenced), 0, sizeof(_____lpTimeZoneInformation1_marshaled_unmarshaled_dereferenced)); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_back(*____lpTimeZoneInformation1_marshaled, _____lpTimeZoneInformation1_marshaled_unmarshaled_dereferenced); *___lpTimeZoneInformation1 = _____lpTimeZoneInformation1_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((&((___lpTimeZoneInformation1)->___TZI_0))->___StandardName_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((___lpTimeZoneInformation1)->___TZI_0))->___DaylightName_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___lpTimeZoneInformation1)->___TimeZoneKeyName_1), (void*)NULL); #endif // Marshaling cleanup of parameter '___lpTimeZoneInformation1' native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_cleanup(*____lpTimeZoneInformation1_marshaled); return returnValue; } #if FORCE_PINVOKE_INTERNAL IL2CPP_EXTERN_C uint32_t DEFAULT_CALL GetDynamicTimeZoneInformation(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*); #endif // System.UInt32 System.TimeZoneInfo::GetDynamicTimeZoneInformation(System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TimeZoneInfo_GetDynamicTimeZoneInformation_m98112C4EC3EC3C78A62FD422F73DC66309DA08F0 (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___pTimeZoneInformation0, const RuntimeMethod* method) { typedef uint32_t (DEFAULT_CALL *PInvokeFunc) (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*); #if !FORCE_PINVOKE_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke<PInvokeFunc>(IL2CPP_NATIVE_STRING("api-ms-win-core-timezone-l1-1-0.dll"), "GetDynamicTimeZoneInformation", IL2CPP_CALL_DEFAULT, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___pTimeZoneInformation0' to native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke ____pTimeZoneInformation0_empty = {}; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke* ____pTimeZoneInformation0_marshaled = &____pTimeZoneInformation0_empty; // Native function invocation #if FORCE_PINVOKE_INTERNAL uint32_t returnValue = reinterpret_cast<PInvokeFunc>(GetDynamicTimeZoneInformation)(____pTimeZoneInformation0_marshaled); #else uint32_t returnValue = il2cppPInvokeFunc(____pTimeZoneInformation0_marshaled); #endif // Marshaling of parameter '___pTimeZoneInformation0' back from native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F _____pTimeZoneInformation0_marshaled_unmarshaled_dereferenced; memset((&_____pTimeZoneInformation0_marshaled_unmarshaled_dereferenced), 0, sizeof(_____pTimeZoneInformation0_marshaled_unmarshaled_dereferenced)); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_back(*____pTimeZoneInformation0_marshaled, _____pTimeZoneInformation0_marshaled_unmarshaled_dereferenced); *___pTimeZoneInformation0 = _____pTimeZoneInformation0_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((&((___pTimeZoneInformation0)->___TZI_0))->___StandardName_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((___pTimeZoneInformation0)->___TZI_0))->___DaylightName_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___pTimeZoneInformation0)->___TimeZoneKeyName_1), (void*)NULL); #endif // Marshaling cleanup of parameter '___pTimeZoneInformation0' native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_cleanup(*____pTimeZoneInformation0_marshaled); return returnValue; } #if FORCE_PINVOKE_INTERNAL #endif // System.UInt32 System.TimeZoneInfo::GetDynamicTimeZoneInformationWin32(System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TimeZoneInfo_GetDynamicTimeZoneInformationWin32_mD44C73EC6EF2106606DB096D99DE652AC2351A4A (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___pTimeZoneInformation0, const RuntimeMethod* method) { typedef uint32_t (DEFAULT_CALL *PInvokeFunc) (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*); #if !FORCE_PINVOKE_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke<PInvokeFunc>(IL2CPP_NATIVE_STRING("kernel32.dll"), "GetDynamicTimeZoneInformation", IL2CPP_CALL_DEFAULT, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___pTimeZoneInformation0' to native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke ____pTimeZoneInformation0_empty = {}; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke* ____pTimeZoneInformation0_marshaled = &____pTimeZoneInformation0_empty; // Native function invocation #if FORCE_PINVOKE_INTERNAL uint32_t returnValue = reinterpret_cast<PInvokeFunc>(GetDynamicTimeZoneInformation)(____pTimeZoneInformation0_marshaled); #else uint32_t returnValue = il2cppPInvokeFunc(____pTimeZoneInformation0_marshaled); #endif // Marshaling of parameter '___pTimeZoneInformation0' back from native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F _____pTimeZoneInformation0_marshaled_unmarshaled_dereferenced; memset((&_____pTimeZoneInformation0_marshaled_unmarshaled_dereferenced), 0, sizeof(_____pTimeZoneInformation0_marshaled_unmarshaled_dereferenced)); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_back(*____pTimeZoneInformation0_marshaled, _____pTimeZoneInformation0_marshaled_unmarshaled_dereferenced); *___pTimeZoneInformation0 = _____pTimeZoneInformation0_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((&((___pTimeZoneInformation0)->___TZI_0))->___StandardName_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((___pTimeZoneInformation0)->___TZI_0))->___DaylightName_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___pTimeZoneInformation0)->___TimeZoneKeyName_1), (void*)NULL); #endif // Marshaling cleanup of parameter '___pTimeZoneInformation0' native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_cleanup(*____pTimeZoneInformation0_marshaled); return returnValue; } #if FORCE_PINVOKE_INTERNAL IL2CPP_EXTERN_C uint32_t DEFAULT_CALL GetDynamicTimeZoneInformationEffectiveYears(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*, uint32_t*, uint32_t*); #endif // System.UInt32 System.TimeZoneInfo::GetDynamicTimeZoneInformationEffectiveYears(System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION&,System.UInt32&,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t TimeZoneInfo_GetDynamicTimeZoneInformationEffectiveYears_mD84BD6607A090CF1D7A8C82DE00770D2CAFDFC14 (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___lpTimeZoneInformation0, uint32_t* ___FirstYear1, uint32_t* ___LastYear2, const RuntimeMethod* method) { typedef uint32_t (DEFAULT_CALL *PInvokeFunc) (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*, uint32_t*, uint32_t*); #if !FORCE_PINVOKE_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*) + sizeof(uint32_t*) + sizeof(uint32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke<PInvokeFunc>(IL2CPP_NATIVE_STRING("api-ms-win-core-timezone-l1-1-0.dll"), "GetDynamicTimeZoneInformationEffectiveYears", IL2CPP_CALL_DEFAULT, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___lpTimeZoneInformation0' to native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke* ____lpTimeZoneInformation0_marshaled = NULL; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke ____lpTimeZoneInformation0_marshaled_dereferenced = {}; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke(*___lpTimeZoneInformation0, ____lpTimeZoneInformation0_marshaled_dereferenced); ____lpTimeZoneInformation0_marshaled = &____lpTimeZoneInformation0_marshaled_dereferenced; // Native function invocation #if FORCE_PINVOKE_INTERNAL uint32_t returnValue = reinterpret_cast<PInvokeFunc>(GetDynamicTimeZoneInformationEffectiveYears)(____lpTimeZoneInformation0_marshaled, ___FirstYear1, ___LastYear2); #else uint32_t returnValue = il2cppPInvokeFunc(____lpTimeZoneInformation0_marshaled, ___FirstYear1, ___LastYear2); #endif // Marshaling of parameter '___lpTimeZoneInformation0' back from native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F _____lpTimeZoneInformation0_marshaled_unmarshaled_dereferenced; memset((&_____lpTimeZoneInformation0_marshaled_unmarshaled_dereferenced), 0, sizeof(_____lpTimeZoneInformation0_marshaled_unmarshaled_dereferenced)); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_back(*____lpTimeZoneInformation0_marshaled, _____lpTimeZoneInformation0_marshaled_unmarshaled_dereferenced); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_cleanup(*____lpTimeZoneInformation0_marshaled); *___lpTimeZoneInformation0 = _____lpTimeZoneInformation0_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((&((___lpTimeZoneInformation0)->___TZI_0))->___StandardName_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((___lpTimeZoneInformation0)->___TZI_0))->___DaylightName_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___lpTimeZoneInformation0)->___TimeZoneKeyName_1), (void*)NULL); #endif return returnValue; } #if FORCE_PINVOKE_INTERNAL IL2CPP_EXTERN_C int32_t DEFAULT_CALL GetTimeZoneInformationForYear(uint16_t, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke*); #endif // System.Boolean System.TimeZoneInfo::GetTimeZoneInformationForYear(System.UInt16,System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION&,System.TimeZoneInfo_TIME_ZONE_INFORMATION&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetTimeZoneInformationForYear_m7E665C3816CE3BF020B6813B81C8FF892B0D9DC3 (uint16_t ___wYear0, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___pdtzi1, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * ___ptzi2, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc) (uint16_t, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke*); #if !FORCE_PINVOKE_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint16_t) + 2 + sizeof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke*) + sizeof(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke<PInvokeFunc>(IL2CPP_NATIVE_STRING("api-ms-win-core-timezone-l1-1-0.dll"), "GetTimeZoneInformationForYear", IL2CPP_CALL_DEFAULT, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___pdtzi1' to native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke* ____pdtzi1_marshaled = NULL; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke ____pdtzi1_marshaled_dereferenced = {}; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke(*___pdtzi1, ____pdtzi1_marshaled_dereferenced); ____pdtzi1_marshaled = &____pdtzi1_marshaled_dereferenced; // Marshaling of parameter '___ptzi2' to native representation TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke ____ptzi2_empty = {}; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke* ____ptzi2_marshaled = &____ptzi2_empty; // Native function invocation #if FORCE_PINVOKE_INTERNAL int32_t returnValue = reinterpret_cast<PInvokeFunc>(GetTimeZoneInformationForYear)(___wYear0, ____pdtzi1_marshaled, ____ptzi2_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(___wYear0, ____pdtzi1_marshaled, ____ptzi2_marshaled); #endif // Marshaling of parameter '___pdtzi1' back from native representation DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F _____pdtzi1_marshaled_unmarshaled_dereferenced; memset((&_____pdtzi1_marshaled_unmarshaled_dereferenced), 0, sizeof(_____pdtzi1_marshaled_unmarshaled_dereferenced)); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_back(*____pdtzi1_marshaled, _____pdtzi1_marshaled_unmarshaled_dereferenced); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_cleanup(*____pdtzi1_marshaled); *___pdtzi1 = _____pdtzi1_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((&((___pdtzi1)->___TZI_0))->___StandardName_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&((___pdtzi1)->___TZI_0))->___DaylightName_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___pdtzi1)->___TimeZoneKeyName_1), (void*)NULL); #endif // Marshaling of parameter '___ptzi2' back from native representation TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 _____ptzi2_marshaled_unmarshaled_dereferenced; memset((&_____ptzi2_marshaled_unmarshaled_dereferenced), 0, sizeof(_____ptzi2_marshaled_unmarshaled_dereferenced)); TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_pinvoke_back(*____ptzi2_marshaled, _____ptzi2_marshaled_unmarshaled_dereferenced); *___ptzi2 = _____ptzi2_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((___ptzi2)->___StandardName_1), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___ptzi2)->___DaylightName_4), (void*)NULL); #endif // Marshaling cleanup of parameter '___ptzi2' native representation TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_pinvoke_cleanup(*____ptzi2_marshaled); return static_cast<bool>(returnValue); } // System.TimeZoneInfo_AdjustmentRule System.TimeZoneInfo::CreateAdjustmentRuleFromTimeZoneInformation(System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION&,System.DateTime,System.DateTime,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation_m2F69E15F97EACDA6A80A979A0C225BBB24B02F49 (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * ___timeZoneInformation0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___startDate1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___endDate2, int32_t ___defaultBaseUtcOffset3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation_m2F69E15F97EACDA6A80A979A0C225BBB24B02F49_MetadataUsageId); s_Il2CppMethodInitialized = true; } TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_0; memset((&V_0), 0, sizeof(V_0)); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_1; memset((&V_1), 0, sizeof(V_1)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_2; memset((&V_2), 0, sizeof(V_2)); { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * L_0 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * L_1 = L_0->get_address_of_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 * L_2 = L_1->get_address_of_StandardDate_2(); uint16_t L_3 = L_2->get_wMonth_1(); if (((!(((uint32_t)L_3) <= ((uint32_t)0)))? 1 : 0)) { goto IL_006f; } } { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * L_4 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * L_5 = L_4->get_address_of_TZI_0(); int32_t L_6 = L_5->get_Bias_0(); int32_t L_7 = ___defaultBaseUtcOffset3; if ((!(((uint32_t)L_6) == ((uint32_t)L_7)))) { goto IL_0025; } } { return (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)NULL; } IL_0025: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_8 = ___startDate1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9 = ___endDate2; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_10 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_11 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_12 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_11, 1, 1, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); V_2 = L_13; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_14 = DateTime_AddMilliseconds_mD93AB4338708397D6030FF082EBB3FC8C3E195F2((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), (1.0), /*hidden argument*/NULL); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_15 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_14, 1, 1, /*hidden argument*/NULL); int32_t L_16 = ___defaultBaseUtcOffset3; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * L_17 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * L_18 = L_17->get_address_of_TZI_0(); int32_t L_19 = L_18->get_Bias_0(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_20; memset((&L_20), 0, sizeof(L_20)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_20), 0, ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_19)), 0, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_21 = AdjustmentRule_CreateAdjustmentRule_mB15A8247120D71B44A45115C4ABD819A6DFCFD67(L_8, L_9, L_10, L_12, L_15, L_20, /*hidden argument*/NULL); return L_21; } IL_006f: { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * L_22 = ___timeZoneInformation0; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_23 = (*(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)L_22); bool L_24 = TimeZoneInfo_TransitionTimeFromTimeZoneInformation_mB2907D018D3F74650B0214133DA2632953A52575(L_23, (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&V_0), (bool)1, /*hidden argument*/NULL); if (L_24) { goto IL_0081; } } { return (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)NULL; } IL_0081: { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * L_25 = ___timeZoneInformation0; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_26 = (*(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)L_25); bool L_27 = TimeZoneInfo_TransitionTimeFromTimeZoneInformation_mB2907D018D3F74650B0214133DA2632953A52575(L_26, (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&V_1), (bool)0, /*hidden argument*/NULL); if (L_27) { goto IL_0093; } } { return (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)NULL; } IL_0093: { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_28 = V_1; bool L_29 = TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&V_0), L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_009f; } } { return (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)NULL; } IL_009f: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_30 = ___startDate1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_31 = ___endDate2; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * L_32 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * L_33 = L_32->get_address_of_TZI_0(); int32_t L_34 = L_33->get_DaylightBias_6(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_35; memset((&L_35), 0, sizeof(L_35)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_35), 0, ((-L_34)), 0, /*hidden argument*/NULL); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_36 = V_0; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_37 = V_1; int32_t L_38 = ___defaultBaseUtcOffset3; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F * L_39 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * L_40 = L_39->get_address_of_TZI_0(); int32_t L_41 = L_40->get_Bias_0(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_42; memset((&L_42), 0, sizeof(L_42)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_42), 0, ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)L_41)), 0, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_43 = AdjustmentRule_CreateAdjustmentRule_mB15A8247120D71B44A45115C4ABD819A6DFCFD67(L_30, L_31, L_35, L_36, L_37, L_42, /*hidden argument*/NULL); return L_43; } } // System.Boolean System.TimeZoneInfo::TransitionTimeFromTimeZoneInformation(System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION,System.TimeZoneInfo_TransitionTime&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TransitionTimeFromTimeZoneInformation_mB2907D018D3F74650B0214133DA2632953A52575 (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F ___timeZoneInformation0, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * ___transitionTime1, bool ___readStartDate2, const RuntimeMethod* method) { { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_0 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_1 = L_0.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_2 = L_1.get_StandardDate_2(); uint16_t L_3 = L_2.get_wMonth_1(); if (((!(((uint32_t)L_3) <= ((uint32_t)0)))? 1 : 0)) { goto IL_001e; } } { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * L_4 = ___transitionTime1; il2cpp_codegen_initobj(L_4, sizeof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 )); return (bool)0; } IL_001e: { bool L_5 = ___readStartDate2; if (!L_5) { goto IL_0139; } } { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_6 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_7 = L_6.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_8 = L_7.get_DaylightDate_5(); uint16_t L_9 = L_8.get_wYear_0(); if (L_9) { goto IL_00c1; } } { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * L_10 = ___transitionTime1; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_11 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_12 = L_11.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_13 = L_12.get_DaylightDate_5(); uint16_t L_14 = L_13.get_wHour_4(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_15 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_16 = L_15.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_17 = L_16.get_DaylightDate_5(); uint16_t L_18 = L_17.get_wMinute_5(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_19 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_20 = L_19.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_21 = L_20.get_DaylightDate_5(); uint16_t L_22 = L_21.get_wSecond_6(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_23 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_24 = L_23.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_25 = L_24.get_DaylightDate_5(); uint16_t L_26 = L_25.get_wMilliseconds_7(); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_27; memset((&L_27), 0, sizeof(L_27)); DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E((&L_27), 1, 1, 1, L_14, L_18, L_22, L_26, /*hidden argument*/NULL); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_28 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_29 = L_28.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_30 = L_29.get_DaylightDate_5(); uint16_t L_31 = L_30.get_wMonth_1(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_32 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_33 = L_32.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_34 = L_33.get_DaylightDate_5(); uint16_t L_35 = L_34.get_wDay_3(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_36 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_37 = L_36.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_38 = L_37.get_DaylightDate_5(); uint16_t L_39 = L_38.get_wDayOfWeek_2(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_40 = TransitionTime_CreateFloatingDateRule_mF22316F8D071F0D8AAE9981156D6CD87637A327E(L_27, L_31, L_35, L_39, /*hidden argument*/NULL); *(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)L_10 = L_40; goto IL_0246; } IL_00c1: { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * L_41 = ___transitionTime1; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_42 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_43 = L_42.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_44 = L_43.get_DaylightDate_5(); uint16_t L_45 = L_44.get_wHour_4(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_46 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_47 = L_46.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_48 = L_47.get_DaylightDate_5(); uint16_t L_49 = L_48.get_wMinute_5(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_50 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_51 = L_50.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_52 = L_51.get_DaylightDate_5(); uint16_t L_53 = L_52.get_wSecond_6(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_54 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_55 = L_54.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_56 = L_55.get_DaylightDate_5(); uint16_t L_57 = L_56.get_wMilliseconds_7(); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_58; memset((&L_58), 0, sizeof(L_58)); DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E((&L_58), 1, 1, 1, L_45, L_49, L_53, L_57, /*hidden argument*/NULL); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_59 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_60 = L_59.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_61 = L_60.get_DaylightDate_5(); uint16_t L_62 = L_61.get_wMonth_1(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_63 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_64 = L_63.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_65 = L_64.get_DaylightDate_5(); uint16_t L_66 = L_65.get_wDay_3(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_67 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_58, L_62, L_66, /*hidden argument*/NULL); *(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)L_41 = L_67; goto IL_0246; } IL_0139: { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_68 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_69 = L_68.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_70 = L_69.get_StandardDate_2(); uint16_t L_71 = L_70.get_wYear_0(); if (L_71) { goto IL_01d3; } } { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * L_72 = ___transitionTime1; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_73 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_74 = L_73.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_75 = L_74.get_StandardDate_2(); uint16_t L_76 = L_75.get_wHour_4(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_77 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_78 = L_77.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_79 = L_78.get_StandardDate_2(); uint16_t L_80 = L_79.get_wMinute_5(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_81 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_82 = L_81.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_83 = L_82.get_StandardDate_2(); uint16_t L_84 = L_83.get_wSecond_6(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_85 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_86 = L_85.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_87 = L_86.get_StandardDate_2(); uint16_t L_88 = L_87.get_wMilliseconds_7(); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_89; memset((&L_89), 0, sizeof(L_89)); DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E((&L_89), 1, 1, 1, L_76, L_80, L_84, L_88, /*hidden argument*/NULL); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_90 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_91 = L_90.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_92 = L_91.get_StandardDate_2(); uint16_t L_93 = L_92.get_wMonth_1(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_94 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_95 = L_94.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_96 = L_95.get_StandardDate_2(); uint16_t L_97 = L_96.get_wDay_3(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_98 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_99 = L_98.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_100 = L_99.get_StandardDate_2(); uint16_t L_101 = L_100.get_wDayOfWeek_2(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_102 = TransitionTime_CreateFloatingDateRule_mF22316F8D071F0D8AAE9981156D6CD87637A327E(L_89, L_93, L_97, L_101, /*hidden argument*/NULL); *(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)L_72 = L_102; goto IL_0246; } IL_01d3: { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * L_103 = ___transitionTime1; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_104 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_105 = L_104.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_106 = L_105.get_StandardDate_2(); uint16_t L_107 = L_106.get_wHour_4(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_108 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_109 = L_108.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_110 = L_109.get_StandardDate_2(); uint16_t L_111 = L_110.get_wMinute_5(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_112 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_113 = L_112.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_114 = L_113.get_StandardDate_2(); uint16_t L_115 = L_114.get_wSecond_6(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_116 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_117 = L_116.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_118 = L_117.get_StandardDate_2(); uint16_t L_119 = L_118.get_wMilliseconds_7(); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_120; memset((&L_120), 0, sizeof(L_120)); DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E((&L_120), 1, 1, 1, L_107, L_111, L_115, L_119, /*hidden argument*/NULL); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_121 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_122 = L_121.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_123 = L_122.get_StandardDate_2(); uint16_t L_124 = L_123.get_wMonth_1(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_125 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_126 = L_125.get_TZI_0(); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 L_127 = L_126.get_StandardDate_2(); uint16_t L_128 = L_127.get_wDay_3(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_129 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_120, L_124, L_128, /*hidden argument*/NULL); *(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)L_103 = L_129; } IL_0246: { return (bool)1; } } // System.TimeZoneInfo System.TimeZoneInfo::TryCreateTimeZone(System.TimeZoneInfo_DYNAMIC_TIME_ZONE_INFORMATION) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_TryCreateTimeZone_m61B74EA70226BCF8AAD99419AD574B6459E1E3B4 (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F ___timeZoneInformation0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_TryCreateTimeZone_m61B74EA70226BCF8AAD99419AD574B6459E1E3B4_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; uint32_t V_1 = 0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_2 = NULL; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* V_3 = NULL; int32_t V_4 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_5; memset((&V_5), 0, sizeof(V_5)); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F V_6; memset((&V_6), 0, sizeof(V_6)); List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * V_7 = NULL; uint32_t V_8 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { V_0 = 0; V_1 = 0; V_3 = (AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)NULL; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_0 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_1 = L_0.get_TZI_0(); int32_t L_2 = L_1.get_Bias_0(); V_4 = L_2; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_3 = ___timeZoneInformation0; String_t* L_4 = L_3.get_TimeZoneKeyName_1(); bool L_5 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0022; } } { return (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)NULL; } IL_0022: { } IL_0023: try { // begin try (depth: 1) { uint32_t L_6 = TimeZoneInfo_GetDynamicTimeZoneInformationEffectiveYears_mD84BD6607A090CF1D7A8C82DE00770D2CAFDFC14((DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)(&___timeZoneInformation0), (uint32_t*)(&V_0), (uint32_t*)(&V_1), /*hidden argument*/NULL); if (!L_6) { goto IL_0034; } } IL_0030: { int32_t L_7 = 0; V_1 = L_7; V_0 = L_7; } IL_0034: { goto IL_003d; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0036; throw e; } CATCH_0036: { // begin catch(System.Object) int32_t L_8 = 0; V_1 = L_8; V_0 = L_8; goto IL_003d; } // end catch (depth: 1) IL_003d: { uint32_t L_9 = V_0; uint32_t L_10 = V_1; if ((!(((uint32_t)L_9) == ((uint32_t)L_10)))) { goto IL_007d; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_11 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); V_5 = L_11; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_12 = DateTime_get_Date_m9466964BC55564ED7EEC022AB9E50D875707B774((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_5), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MaxValue_32(); V_5 = L_13; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_14 = DateTime_get_Date_m9466964BC55564ED7EEC022AB9E50D875707B774((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_5), /*hidden argument*/NULL); int32_t L_15 = V_4; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_16 = TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation_m2F69E15F97EACDA6A80A979A0C225BBB24B02F49((DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)(&___timeZoneInformation0), L_12, L_14, L_15, /*hidden argument*/NULL); V_2 = L_16; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_17 = V_2; if (!L_17) { goto IL_016e; } } { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_18 = (AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)(AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)SZArrayNew(AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD_il2cpp_TypeInfo_var, (uint32_t)1); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_19 = L_18; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_20 = V_2; NullCheck(L_19); ArrayElementTypeCheck (L_19, L_20); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)L_20); V_3 = L_19; goto IL_016e; } IL_007d: { il2cpp_codegen_initobj((&V_6), sizeof(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F )); List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_21 = (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *)il2cpp_codegen_object_new(List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E_il2cpp_TypeInfo_var); List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708(L_21, /*hidden argument*/List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708_RuntimeMethod_var); V_7 = L_21; uint32_t L_22 = V_0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * L_23 = (&V_6)->get_address_of_TZI_0(); bool L_24 = TimeZoneInfo_GetTimeZoneInformationForYear_m7E665C3816CE3BF020B6813B81C8FF892B0D9DC3((uint16_t)(((int32_t)((uint16_t)L_22))), (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)(&___timeZoneInformation0), (TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 *)L_23, /*hidden argument*/NULL); if (L_24) { goto IL_00a0; } } { return (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)NULL; } IL_00a0: { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_25 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); V_5 = L_25; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_26 = DateTime_get_Date_m9466964BC55564ED7EEC022AB9E50D875707B774((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_5), /*hidden argument*/NULL); uint32_t L_27 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_28; memset((&L_28), 0, sizeof(L_28)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_28), L_27, ((int32_t)12), ((int32_t)31), /*hidden argument*/NULL); int32_t L_29 = V_4; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_30 = TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation_m2F69E15F97EACDA6A80A979A0C225BBB24B02F49((DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)(&V_6), L_26, L_28, L_29, /*hidden argument*/NULL); V_2 = L_30; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_31 = V_2; if (!L_31) { goto IL_00cd; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_32 = V_7; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_33 = V_2; NullCheck(L_32); List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608(L_32, L_33, /*hidden argument*/List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608_RuntimeMethod_var); } IL_00cd: { uint32_t L_34 = V_0; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1)); goto IL_0118; } IL_00d4: { uint32_t L_35 = V_8; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * L_36 = (&V_6)->get_address_of_TZI_0(); bool L_37 = TimeZoneInfo_GetTimeZoneInformationForYear_m7E665C3816CE3BF020B6813B81C8FF892B0D9DC3((uint16_t)(((int32_t)((uint16_t)L_35))), (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)(&___timeZoneInformation0), (TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 *)L_36, /*hidden argument*/NULL); if (L_37) { goto IL_00e9; } } { return (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)NULL; } IL_00e9: { uint32_t L_38 = V_8; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_39; memset((&L_39), 0, sizeof(L_39)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_39), L_38, 1, 1, /*hidden argument*/NULL); uint32_t L_40 = V_8; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_41; memset((&L_41), 0, sizeof(L_41)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_41), L_40, ((int32_t)12), ((int32_t)31), /*hidden argument*/NULL); int32_t L_42 = V_4; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_43 = TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation_m2F69E15F97EACDA6A80A979A0C225BBB24B02F49((DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)(&V_6), L_39, L_41, L_42, /*hidden argument*/NULL); V_2 = L_43; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_44 = V_2; if (!L_44) { goto IL_0112; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_45 = V_7; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_46 = V_2; NullCheck(L_45); List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608(L_45, L_46, /*hidden argument*/List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608_RuntimeMethod_var); } IL_0112: { uint32_t L_47 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1)); } IL_0118: { uint32_t L_48 = V_8; uint32_t L_49 = V_1; if ((!(((uint32_t)L_48) >= ((uint32_t)L_49)))) { goto IL_00d4; } } { uint32_t L_50 = V_1; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 * L_51 = (&V_6)->get_address_of_TZI_0(); bool L_52 = TimeZoneInfo_GetTimeZoneInformationForYear_m7E665C3816CE3BF020B6813B81C8FF892B0D9DC3((uint16_t)(((int32_t)((uint16_t)L_50))), (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)(&___timeZoneInformation0), (TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 *)L_51, /*hidden argument*/NULL); if (L_52) { goto IL_0131; } } { return (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)NULL; } IL_0131: { uint32_t L_53 = V_1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_54; memset((&L_54), 0, sizeof(L_54)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_54), L_53, 1, 1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_55 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MaxValue_32(); V_5 = L_55; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_56 = DateTime_get_Date_m9466964BC55564ED7EEC022AB9E50D875707B774((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_5), /*hidden argument*/NULL); int32_t L_57 = V_4; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_58 = TimeZoneInfo_CreateAdjustmentRuleFromTimeZoneInformation_m2F69E15F97EACDA6A80A979A0C225BBB24B02F49((DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)(&V_6), L_54, L_56, L_57, /*hidden argument*/NULL); V_2 = L_58; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_59 = V_2; if (!L_59) { goto IL_015c; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_60 = V_7; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_61 = V_2; NullCheck(L_60); List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608(L_60, L_61, /*hidden argument*/List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608_RuntimeMethod_var); } IL_015c: { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_62 = V_7; NullCheck(L_62); int32_t L_63 = List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_inline(L_62, /*hidden argument*/List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_RuntimeMethod_var); if ((((int32_t)L_63) <= ((int32_t)0))) { goto IL_016e; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_64 = V_7; NullCheck(L_64); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_65 = List_1_ToArray_m803235EC510CCE1CF53E7D6FB952A83E01154DE1(L_64, /*hidden argument*/List_1_ToArray_m803235EC510CCE1CF53E7D6FB952A83E01154DE1_RuntimeMethod_var); V_3 = L_65; } IL_016e: { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_66 = ___timeZoneInformation0; String_t* L_67 = L_66.get_TimeZoneKeyName_1(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_68 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_69 = L_68.get_TZI_0(); int32_t L_70 = L_69.get_Bias_0(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_71; memset((&L_71), 0, sizeof(L_71)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_71), 0, ((-L_70)), 0, /*hidden argument*/NULL); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_72 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_73 = L_72.get_TZI_0(); String_t* L_74 = L_73.get_StandardName_1(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_75 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_76 = L_75.get_TZI_0(); String_t* L_77 = L_76.get_StandardName_1(); DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_78 = ___timeZoneInformation0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_79 = L_78.get_TZI_0(); String_t* L_80 = L_79.get_DaylightName_4(); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_81 = V_3; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_82 = (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)il2cpp_codegen_object_new(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var); TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5(L_82, L_67, L_71, L_74, L_77, L_80, L_81, (bool)0, /*hidden argument*/NULL); return L_82; } } // System.TimeZoneInfo System.TimeZoneInfo::GetLocalTimeZoneInfoWinRTFallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_GetLocalTimeZoneInfoWinRTFallback_mAC4FAB77907E048A003EDB46ACA0A2B3665AAC15 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_GetLocalTimeZoneInfoWinRTFallback_mAC4FAB77907E048A003EDB46ACA0A2B3665AAC15_MetadataUsageId); s_Il2CppMethodInitialized = true; } DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F V_0; memset((&V_0), 0, sizeof(V_0)); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_1 = NULL; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 3); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * G_B5_0 = NULL; IL_0000: try { // begin try (depth: 1) { uint32_t L_0 = TimeZoneInfo_GetDynamicTimeZoneInformation_m98112C4EC3EC3C78A62FD422F73DC66309DA08F0((DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)(&V_0), /*hidden argument*/NULL); if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_0012; } } IL_000a: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_1 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); V_2 = L_1; goto IL_0030; } IL_0012: { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_2 = V_0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_3 = TimeZoneInfo_TryCreateTimeZone_m61B74EA70226BCF8AAD99419AD574B6459E1E3B4(L_2, /*hidden argument*/NULL); V_1 = L_3; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_4 = V_1; if (L_4) { goto IL_0023; } } IL_001c: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_5 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); G_B5_0 = L_5; goto IL_0024; } IL_0023: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_6 = V_1; G_B5_0 = L_6; } IL_0024: { V_2 = G_B5_0; goto IL_0030; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0027; throw e; } CATCH_0027: { // begin catch(System.Object) TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_7 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); V_2 = L_7; goto IL_0030; } // end catch (depth: 1) IL_0030: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_8 = V_2; return L_8; } } // System.String System.TimeZoneInfo::GetLocalTimeZoneKeyNameWin32Fallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetLocalTimeZoneKeyNameWin32Fallback_m135325753C0EB2FFA39439FCAFF86BC41D8DC1A3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_GetLocalTimeZoneKeyNameWin32Fallback_m135325753C0EB2FFA39439FCAFF86BC41D8DC1A3_MetadataUsageId); s_Il2CppMethodInitialized = true; } DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F V_0; memset((&V_0), 0, sizeof(V_0)); String_t* V_1 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 5); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) { uint32_t L_0 = TimeZoneInfo_GetDynamicTimeZoneInformationWin32_mD44C73EC6EF2106606DB096D99DE652AC2351A4A((DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)(&V_0), /*hidden argument*/NULL); if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_000e; } } IL_000a: { V_1 = (String_t*)NULL; goto IL_004d; } IL_000e: { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_1 = V_0; String_t* L_2 = L_1.get_TimeZoneKeyName_1(); bool L_3 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0024; } } IL_001b: { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_4 = V_0; String_t* L_5 = L_4.get_TimeZoneKeyName_1(); V_1 = L_5; goto IL_004d; } IL_0024: { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_6 = V_0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_7 = L_6.get_TZI_0(); String_t* L_8 = L_7.get_StandardName_1(); bool L_9 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_0044; } } IL_0036: { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_10 = V_0; TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 L_11 = L_10.get_TZI_0(); String_t* L_12 = L_11.get_StandardName_1(); V_1 = L_12; goto IL_004d; } IL_0044: { V_1 = (String_t*)NULL; goto IL_004d; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0048; throw e; } CATCH_0048: { // begin catch(System.Object) V_1 = (String_t*)NULL; goto IL_004d; } // end catch (depth: 1) IL_004d: { String_t* L_13 = V_1; return L_13; } } // System.TimeZoneInfo System.TimeZoneInfo::FindSystemTimeZoneByIdWinRTFallback(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_FindSystemTimeZoneByIdWinRTFallback_m97E8D7110492D9A43A425DA0A06FCCCE3F8ED483 (String_t* ___id0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_FindSystemTimeZoneByIdWinRTFallback_m97E8D7110492D9A43A425DA0A06FCCCE3F8ED483_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_1 = NULL; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * L_0 = TimeZoneInfo_GetSystemTimeZones_mEA58988461DB651BAAEFE60B72EBCC2403FCDC3A(/*hidden argument*/NULL); NullCheck(L_0); RuntimeObject* L_1 = ReadOnlyCollection_1_GetEnumerator_m99D19158C39B54528C9227F6F986B66D499C0B42(L_0, /*hidden argument*/ReadOnlyCollection_1_GetEnumerator_m99D19158C39B54528C9227F6F986B66D499C0B42_RuntimeMethod_var); V_0 = L_1; } IL_000b: try { // begin try (depth: 1) { goto IL_0027; } IL_000d: { RuntimeObject* L_2 = V_0; NullCheck(L_2); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_3 = InterfaceFuncInvoker0< TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.TimeZoneInfo>::get_Current() */, IEnumerator_1_t06E561A91115B283FAF267723103A4A703276008_il2cpp_TypeInfo_var, L_2); V_1 = L_3; String_t* L_4 = ___id0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_5 = V_1; NullCheck(L_5); String_t* L_6 = TimeZoneInfo_get_Id_mE52B846A9B3701B6BFFC99AD5F486584044304C6_inline(L_5, /*hidden argument*/NULL); int32_t L_7 = String_Compare_m5BD1EF8904C9B13BEDB7A876B122F117B317B442(L_4, L_6, 4, /*hidden argument*/NULL); if (L_7) { goto IL_0027; } } IL_0023: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_8 = V_1; V_2 = L_8; IL2CPP_LEAVE(0x41, FINALLY_0031); } IL_0027: { RuntimeObject* L_9 = V_0; NullCheck(L_9); bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_9); if (L_10) { goto IL_000d; } } IL_002f: { IL2CPP_LEAVE(0x3B, FINALLY_0031); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0031; } FINALLY_0031: { // begin finally (depth: 1) { RuntimeObject* L_11 = V_0; if (!L_11) { goto IL_003a; } } IL_0034: { RuntimeObject* L_12 = V_0; NullCheck(L_12); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_12); } IL_003a: { IL2CPP_END_FINALLY(49) } } // end finally (depth: 1) IL2CPP_CLEANUP(49) { IL2CPP_JUMP_TBL(0x41, IL_0041) IL2CPP_JUMP_TBL(0x3B, IL_003b) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_003b: { TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 * L_13 = (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 *)il2cpp_codegen_object_new(TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388_il2cpp_TypeInfo_var); TimeZoneNotFoundException__ctor_m13C5CB453D2842823AA85B9B4E422C42D659FA19(L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, TimeZoneInfo_FindSystemTimeZoneByIdWinRTFallback_m97E8D7110492D9A43A425DA0A06FCCCE3F8ED483_RuntimeMethod_var); } IL_0041: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_14 = V_2; return L_14; } } // System.Collections.Generic.List`1<System.TimeZoneInfo> System.TimeZoneInfo::GetSystemTimeZonesWinRTFallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * TimeZoneInfo_GetSystemTimeZonesWinRTFallback_m6A927CC8A8AC235866DC2399C990A32C6BF846D0 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_GetSystemTimeZonesWinRTFallback_m6A927CC8A8AC235866DC2399C990A32C6BF846D0_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * V_0 = NULL; uint32_t V_1 = 0; DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F V_2; memset((&V_2), 0, sizeof(V_2)); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_0 = (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD *)il2cpp_codegen_object_new(List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD_il2cpp_TypeInfo_var); List_1__ctor_m8EA0E94A31BE27A0D2CF4FA7BDDC767E5D2ADC23(L_0, /*hidden argument*/List_1__ctor_m8EA0E94A31BE27A0D2CF4FA7BDDC767E5D2ADC23_RuntimeMethod_var); V_0 = L_0; } IL_0006: try { // begin try (depth: 1) { V_1 = 0; goto IL_001b; } IL_000a: { DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F L_1 = V_2; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_2 = TimeZoneInfo_TryCreateTimeZone_m61B74EA70226BCF8AAD99419AD574B6459E1E3B4(L_1, /*hidden argument*/NULL); V_3 = L_2; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_3 = V_3; if (!L_3) { goto IL_001b; } } IL_0014: { List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_4 = V_0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_5 = V_3; NullCheck(L_4); List_1_Add_m3C00FE8E3C5994C50C32F29BEE73E95FC93432F5(L_4, L_5, /*hidden argument*/List_1_Add_m3C00FE8E3C5994C50C32F29BEE73E95FC93432F5_RuntimeMethod_var); } IL_001b: { uint32_t L_6 = V_1; uint32_t L_7 = L_6; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)); uint32_t L_8 = TimeZoneInfo_EnumDynamicTimeZoneInformation_mA9B80840DB7EFA7A20521562B5D00BEA0545D3D3(L_7, (DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F *)(&V_2), /*hidden argument*/NULL); if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)259))))) { goto IL_000a; } } IL_002e: { goto IL_0033; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0030; throw e; } CATCH_0030: { // begin catch(System.Object) goto IL_0033; } // end catch (depth: 1) IL_0033: { List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_9 = V_0; NullCheck(L_9); int32_t L_10 = List_1_get_Count_mEAB0A1E6130424B195D6DBFD71FAB35A51BA5337_inline(L_9, /*hidden argument*/List_1_get_Count_mEAB0A1E6130424B195D6DBFD71FAB35A51BA5337_RuntimeMethod_var); if (L_10) { goto IL_0046; } } { List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_11 = V_0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_12 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); NullCheck(L_11); List_1_Add_m3C00FE8E3C5994C50C32F29BEE73E95FC93432F5(L_11, L_12, /*hidden argument*/List_1_Add_m3C00FE8E3C5994C50C32F29BEE73E95FC93432F5_RuntimeMethod_var); } IL_0046: { List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_13 = V_0; return L_13; } } // System.TimeSpan System.TimeZoneInfo::get_BaseUtcOffset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = __this->get_baseUtcOffset_0(); return L_0; } } // System.String System.TimeZoneInfo::get_DisplayName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_DisplayName_m583E6E48EAA12F6D87191F71AAE821481F8B006A (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_displayName_2(); return L_0; } } // System.String System.TimeZoneInfo::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_Id_mE52B846A9B3701B6BFFC99AD5F486584044304C6 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_id_3(); return L_0; } } // System.TimeZoneInfo System.TimeZoneInfo::get_Local() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD_MetadataUsageId); s_Il2CppMethodInitialized = true; } TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_0 = NULL; { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_0 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_local_4(); V_0 = L_0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_1 = V_0; if (L_1) { goto IL_002c; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_2 = TimeZoneInfo_CreateLocal_m15C54141FB316F34FA44CA5B96CC02E2CB2F0638(/*hidden argument*/NULL); V_0 = L_2; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_3 = V_0; if (L_3) { goto IL_0018; } } { TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 * L_4 = (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 *)il2cpp_codegen_object_new(TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388_il2cpp_TypeInfo_var); TimeZoneNotFoundException__ctor_m13C5CB453D2842823AA85B9B4E422C42D659FA19(L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD_RuntimeMethod_var); } IL_0018: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_5 = V_0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_6 = InterlockedCompareExchangeImpl<TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *>((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 **)(((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_address_of_local_4()), L_5, (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)NULL); if (!L_6) { goto IL_002c; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_7 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_local_4(); V_0 = L_7; } IL_002c: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_8 = V_0; return L_8; } } #if FORCE_PINVOKE_INTERNAL IL2CPP_EXTERN_C int32_t DEFAULT_CALL readlink(char*, uint8_t*, int32_t); #endif // System.Int32 System.TimeZoneInfo::readlink(System.String,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_readlink_m42B2B8CB1D4B7CCFE6FBBD7ABD10314EAE094F55 (String_t* ___path0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer1, int32_t ___buflen2, const RuntimeMethod* method) { typedef int32_t (DEFAULT_CALL *PInvokeFunc) (char*, uint8_t*, int32_t); #if !FORCE_PINVOKE_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(char*) + sizeof(void*) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke<PInvokeFunc>(IL2CPP_NATIVE_STRING("libc"), "readlink", IL2CPP_CALL_DEFAULT, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___path0' to native representation char* ____path0_marshaled = NULL; ____path0_marshaled = il2cpp_codegen_marshal_string(___path0); // Marshaling of parameter '___buffer1' to native representation uint8_t* ____buffer1_marshaled = NULL; if (___buffer1 != NULL) { ____buffer1_marshaled = reinterpret_cast<uint8_t*>((___buffer1)->GetAddressAtUnchecked(0)); } // Native function invocation #if FORCE_PINVOKE_INTERNAL int32_t returnValue = reinterpret_cast<PInvokeFunc>(readlink)(____path0_marshaled, ____buffer1_marshaled, ___buflen2); #else int32_t returnValue = il2cppPInvokeFunc(____path0_marshaled, ____buffer1_marshaled, ___buflen2); #endif // Marshaling cleanup of parameter '___path0' native representation il2cpp_codegen_marshal_free(____path0_marshaled); ____path0_marshaled = NULL; return returnValue; } // System.String System.TimeZoneInfo::readlink(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_readlink_m36675E5C86E478A8F522061E1AE5DD3F441F1413 (String_t* ___path0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_readlink_m36675E5C86E478A8F522061E1AE5DD3F441F1413_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; int32_t V_1 = 0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_2 = NULL; int32_t V_3 = 0; String_t* V_4 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 3); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { bool L_0 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_readlinkNotFound_6(); if (!L_0) { goto IL_0009; } } { return (String_t*)NULL; } IL_0009: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)512)); V_0 = L_1; } IL_0014: try { // begin try (depth: 1) String_t* L_2 = ___path0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0; NullCheck(L_4); int32_t L_5 = TimeZoneInfo_readlink_m42B2B8CB1D4B7CCFE6FBBD7ABD10314EAE094F55(L_2, L_3, (((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), /*hidden argument*/NULL); V_1 = L_5; goto IL_0039; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (DllNotFoundException_tED90B6A78D4CF5AA565288E0BA88A990062A7F76_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0021; if(il2cpp_codegen_class_is_assignable_from (EntryPointNotFoundException_tCF689617164B79AD85A41DADB38D27BD1E10B279_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_002d; throw e; } CATCH_0021: { // begin catch(System.DllNotFoundException) ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->set_readlinkNotFound_6((bool)1); V_4 = (String_t*)NULL; goto IL_0063; } // end catch (depth: 1) CATCH_002d: { // begin catch(System.EntryPointNotFoundException) ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->set_readlinkNotFound_6((bool)1); V_4 = (String_t*)NULL; goto IL_0063; } // end catch (depth: 1) IL_0039: { int32_t L_6 = V_1; if ((!(((uint32_t)L_6) == ((uint32_t)(-1))))) { goto IL_003f; } } { return (String_t*)NULL; } IL_003f: { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)512)); V_2 = L_7; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_8 = Encoding_get_Default_m625C78C2A9A8504B8BA4141994412513DC470CE2(/*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0; int32_t L_10 = V_1; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = V_2; NullCheck(L_8); int32_t L_12 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(33 /* System.Int32 System.Text.Encoding::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_8, L_9, 0, L_10, L_11, 0); V_3 = L_12; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = V_2; int32_t L_14 = V_3; String_t* L_15 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_13, 0, L_14, /*hidden argument*/NULL); return L_15; } IL_0063: { String_t* L_16 = V_4; return L_16; } } // System.Boolean System.TimeZoneInfo::TryGetNameFromPath(System.String,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryGetNameFromPath_m030B7AF03FD88B0FCAF5374F33D9E2B22ECCFD42 (String_t* ___path0, String_t** ___name1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_TryGetNameFromPath_m030B7AF03FD88B0FCAF5374F33D9E2B22ECCFD42_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; Il2CppChar V_2 = 0x0; { String_t** L_0 = ___name1; *((RuntimeObject **)L_0) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL); String_t* L_1 = ___path0; bool L_2 = File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_000d; } } { return (bool)0; } IL_000d: { String_t* L_3 = ___path0; String_t* L_4 = TimeZoneInfo_readlink_m36675E5C86E478A8F522061E1AE5DD3F441F1413(L_3, /*hidden argument*/NULL); V_0 = L_4; String_t* L_5 = V_0; if (!L_5) { goto IL_0032; } } { String_t* L_6 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); bool L_7 = Path_IsPathRooted_mF70DAF863202638692CF75CCFA09ACBBD90C9A53(L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_0024; } } { String_t* L_8 = V_0; ___path0 = L_8; goto IL_0032; } IL_0024: { String_t* L_9 = ___path0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_10 = Path_GetDirectoryName_m61922AA6D7B48EACBA36FF41A1B28F506CFB8A97(L_9, /*hidden argument*/NULL); String_t* L_11 = V_0; String_t* L_12 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_10, L_11, /*hidden argument*/NULL); ___path0 = L_12; } IL_0032: { String_t* L_13 = ___path0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_14 = Path_GetFullPath_m58677E6FFAFB7BB4A23011CE50F76487226EDE20(L_13, /*hidden argument*/NULL); ___path0 = L_14; String_t* L_15 = TimeZoneInfo_get_TimeZoneDirectory_m364906451AD0C6AF1BE27A57739BB888AD144414(/*hidden argument*/NULL); bool L_16 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0048; } } { return (bool)0; } IL_0048: { String_t* L_17 = TimeZoneInfo_get_TimeZoneDirectory_m364906451AD0C6AF1BE27A57739BB888AD144414(/*hidden argument*/NULL); V_1 = L_17; String_t* L_18 = V_1; String_t* L_19 = V_1; NullCheck(L_19); int32_t L_20 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_19, /*hidden argument*/NULL); NullCheck(L_18); Il2CppChar L_21 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_18, ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); Il2CppChar L_22 = ((Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields*)il2cpp_codegen_static_fields_for(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var))->get_DirectorySeparatorChar_2(); if ((((int32_t)L_21) == ((int32_t)L_22))) { goto IL_0077; } } { String_t* L_23 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); Il2CppChar L_24 = ((Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_StaticFields*)il2cpp_codegen_static_fields_for(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var))->get_DirectorySeparatorChar_2(); V_2 = L_24; String_t* L_25 = Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8((Il2CppChar*)(&V_2), /*hidden argument*/NULL); String_t* L_26 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_23, L_25, /*hidden argument*/NULL); V_1 = L_26; } IL_0077: { String_t* L_27 = ___path0; String_t* L_28 = V_1; NullCheck(L_27); bool L_29 = String_StartsWith_m844A95C9A205A0F951B0C45634E0C222E73D0B49(L_27, L_28, 2, /*hidden argument*/NULL); if (L_29) { goto IL_0083; } } { return (bool)0; } IL_0083: { String_t** L_30 = ___name1; String_t* L_31 = ___path0; String_t* L_32 = V_1; NullCheck(L_32); int32_t L_33 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_32, /*hidden argument*/NULL); NullCheck(L_31); String_t* L_34 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_31, L_33, /*hidden argument*/NULL); *((RuntimeObject **)L_30) = (RuntimeObject *)L_34; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_30, (void*)(RuntimeObject *)L_34); String_t** L_35 = ___name1; String_t* L_36 = *((String_t**)L_35); bool L_37 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_36, _stringLiteralF25BCCD744FAB3255BB82BAC88C618963868A33F, /*hidden argument*/NULL); if (!L_37) { goto IL_00a6; } } { String_t** L_38 = ___name1; *((RuntimeObject **)L_38) = (RuntimeObject *)_stringLiteralDC99D54D9990E3C134420BE3918E88F28531E630; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_38, (void*)(RuntimeObject *)_stringLiteralDC99D54D9990E3C134420BE3918E88F28531E630); } IL_00a6: { return (bool)1; } } // System.TimeZoneInfo System.TimeZoneInfo::CreateLocal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_CreateLocal_m15C54141FB316F34FA44CA5B96CC02E2CB2F0638 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_CreateLocal_m15C54141FB316F34FA44CA5B96CC02E2CB2F0638_MetadataUsageId); s_Il2CppMethodInitialized = true; } TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_3 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_4 = NULL; int32_t V_5 = 0; String_t* V_6 = NULL; String_t* V_7 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 9); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { bool L_0 = TimeZoneInfo_get_IsWindows_mD360DB90A5AFD0D6CE4E89EBAB7F40D5CEF25706(/*hidden argument*/NULL); if (!L_0) { goto IL_006b; } } { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_1 = TimeZoneInfo_get_LocalZoneKey_mB5065905D83948EB70306D6BCABA0857FE0BF65C(/*hidden argument*/NULL); if (!L_1) { goto IL_006b; } } { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_2 = TimeZoneInfo_get_LocalZoneKey_mB5065905D83948EB70306D6BCABA0857FE0BF65C(/*hidden argument*/NULL); NullCheck(L_2); RuntimeObject * L_3 = RegistryKey_GetValue_mC95227C5F159D15D0A59EE72A31840CE3C6DB381(L_2, _stringLiteral5673FDDE0249844B4A82C15CA2BD6584D7C308E4, /*hidden argument*/NULL); V_2 = ((String_t*)CastclassSealed((RuntimeObject*)L_3, String_t_il2cpp_TypeInfo_var)); String_t* L_4 = V_2; if (L_4) { goto IL_003b; } } { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_5 = TimeZoneInfo_get_LocalZoneKey_mB5065905D83948EB70306D6BCABA0857FE0BF65C(/*hidden argument*/NULL); NullCheck(L_5); RuntimeObject * L_6 = RegistryKey_GetValue_mC95227C5F159D15D0A59EE72A31840CE3C6DB381(L_5, _stringLiteral0F6182802153D24EEA849ECD8B3CDAA0F9B47E59, /*hidden argument*/NULL); V_2 = ((String_t*)CastclassSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)); } IL_003b: { String_t* L_7 = V_2; String_t* L_8 = TimeZoneInfo_TrimSpecial_m8904FED0584050DFA61E0BD573BDDF2D2E24DD64(L_7, /*hidden argument*/NULL); V_2 = L_8; String_t* L_9 = V_2; bool L_10 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0050; } } { String_t* L_11 = TimeZoneInfo_GetLocalTimeZoneKeyNameWin32Fallback_m135325753C0EB2FFA39439FCAFF86BC41D8DC1A3(/*hidden argument*/NULL); V_2 = L_11; } IL_0050: { String_t* L_12 = V_2; if (!L_12) { goto IL_0078; } } IL_0053: try { // begin try (depth: 1) String_t* L_13 = V_2; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_14 = TimeZoneInfo_FindSystemTimeZoneById_m1213ADAB49255703C816325E6F215AE0E7E9F8DD(L_13, /*hidden argument*/NULL); V_3 = L_14; goto IL_0134; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_005f; throw e; } CATCH_005f: { // begin catch(System.TimeZoneNotFoundException) TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_15 = TimeZoneInfo_GetLocalTimeZoneInfoWinRTFallback_mAC4FAB77907E048A003EDB46ACA0A2B3665AAC15(/*hidden argument*/NULL); V_3 = L_15; goto IL_0134; } // end catch (depth: 1) IL_006b: { bool L_16 = TimeZoneInfo_get_IsWindows_mD360DB90A5AFD0D6CE4E89EBAB7F40D5CEF25706(/*hidden argument*/NULL); if (!L_16) { goto IL_0078; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_17 = TimeZoneInfo_GetLocalTimeZoneInfoWinRTFallback_mAC4FAB77907E048A003EDB46ACA0A2B3665AAC15(/*hidden argument*/NULL); return L_17; } IL_0078: { V_0 = (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)NULL; } IL_007a: try { // begin try (depth: 1) TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_18 = TimeZoneInfo_CreateLocalUnity_mD72D1DBB52C82E4AC72C1B697F1F37C935C755EA(/*hidden argument*/NULL); V_0 = L_18; goto IL_0087; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0082; throw e; } CATCH_0082: { // begin catch(System.Object) V_0 = (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)NULL; goto IL_0087; } // end catch (depth: 1) IL_0087: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_19 = V_0; if (L_19) { goto IL_0090; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_20 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); V_0 = L_20; } IL_0090: { String_t* L_21 = Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185(_stringLiteralED9428DBFB0B1BF45F637DBEABF0DB8879D90E82, /*hidden argument*/NULL); V_1 = L_21; String_t* L_22 = V_1; if (!L_22) { goto IL_00c7; } } { String_t* L_23 = V_1; String_t* L_24 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_25 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_23, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00ad; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_26 = V_0; return L_26; } IL_00ad: { } IL_00ae: try { // begin try (depth: 1) String_t* L_27 = V_1; String_t* L_28 = TimeZoneInfo_get_TimeZoneDirectory_m364906451AD0C6AF1BE27A57739BB888AD144414(/*hidden argument*/NULL); String_t* L_29 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_30 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_28, L_29, /*hidden argument*/NULL); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_31 = TimeZoneInfo_FindSystemTimeZoneByFileName_m8AA63273DF4EAB14398DCD1E7B84FCADF6F84E7D(L_27, L_30, /*hidden argument*/NULL); V_3 = L_31; goto IL_0134; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00c2; throw e; } CATCH_00c2: { // begin catch(System.Object) TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_32 = V_0; V_3 = L_32; goto IL_0134; } // end catch (depth: 1) IL_00c7: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_33 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)2); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_34 = L_33; NullCheck(L_34); ArrayElementTypeCheck (L_34, _stringLiteral25F82570C8A4E0BBF33D841DA7020C5961D4B0F7); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral25F82570C8A4E0BBF33D841DA7020C5961D4B0F7); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = L_34; String_t* L_36 = TimeZoneInfo_get_TimeZoneDirectory_m364906451AD0C6AF1BE27A57739BB888AD144414(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_37 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_36, _stringLiteralF25BCCD744FAB3255BB82BAC88C618963868A33F, /*hidden argument*/NULL); NullCheck(L_35); ArrayElementTypeCheck (L_35, L_37); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_37); V_4 = L_35; V_5 = 0; goto IL_012a; } IL_00ee: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_38 = V_4; int32_t L_39 = V_5; NullCheck(L_38); int32_t L_40 = L_39; String_t* L_41 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_40)); V_6 = L_41; } IL_00f5: try { // begin try (depth: 1) { V_7 = (String_t*)NULL; String_t* L_42 = V_6; bool L_43 = TimeZoneInfo_TryGetNameFromPath_m030B7AF03FD88B0FCAF5374F33D9E2B22ECCFD42(L_42, (String_t**)(&V_7), /*hidden argument*/NULL); if (L_43) { goto IL_010a; } } IL_0103: { V_7 = _stringLiteralDC99D54D9990E3C134420BE3918E88F28531E630; } IL_010a: { String_t* L_44 = V_6; bool L_45 = File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB(L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_011f; } } IL_0113: { String_t* L_46 = V_7; String_t* L_47 = V_6; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_48 = TimeZoneInfo_FindSystemTimeZoneByFileName_m8AA63273DF4EAB14398DCD1E7B84FCADF6F84E7D(L_46, L_47, /*hidden argument*/NULL); V_3 = L_48; goto IL_0134; } IL_011f: { goto IL_0124; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0121; throw e; } CATCH_0121: { // begin catch(System.TimeZoneNotFoundException) goto IL_0124; } // end catch (depth: 1) IL_0124: { int32_t L_49 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1)); } IL_012a: { int32_t L_50 = V_5; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_51 = V_4; NullCheck(L_51); if ((((int32_t)L_50) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length))))))) { goto IL_00ee; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_52 = V_0; return L_52; } IL_0134: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_53 = V_3; return L_53; } } // System.TimeZoneInfo System.TimeZoneInfo::FindSystemTimeZoneByIdCore(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_FindSystemTimeZoneByIdCore_m62ECDFA5D89CE3B68C56D1B72B2CF5FB709DF322 (String_t* ___id0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_FindSystemTimeZoneByIdCore_m62ECDFA5D89CE3B68C56D1B72B2CF5FB709DF322_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0 = TimeZoneInfo_get_TimeZoneDirectory_m364906451AD0C6AF1BE27A57739BB888AD144414(/*hidden argument*/NULL); String_t* L_1 = ___id0; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_2 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; String_t* L_3 = ___id0; String_t* L_4 = V_0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_5 = TimeZoneInfo_FindSystemTimeZoneByFileName_m8AA63273DF4EAB14398DCD1E7B84FCADF6F84E7D(L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Void System.TimeZoneInfo::GetSystemTimeZonesCore(System.Collections.Generic.List`1<System.TimeZoneInfo>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_GetSystemTimeZonesCore_m9D3D231ABFB243A5720D61CA7FF524E6E6D77808 (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * ___systemTimeZones0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_GetSystemTimeZonesCore_m9D3D231ABFB243A5720D61CA7FF524E6E6D77808_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_0 = NULL; int32_t V_1 = 0; String_t* V_2 = NULL; RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * V_3 = NULL; String_t* V_4 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_5 = NULL; int32_t V_6 = 0; String_t* V_7 = NULL; String_t* V_8 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 8); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_0 = TimeZoneInfo_get_TimeZoneKey_m82B63E987CBDF47D6637B89F5A09F5509F5C7529(/*hidden argument*/NULL); if (!L_0) { goto IL_005b; } } { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_1 = TimeZoneInfo_get_TimeZoneKey_m82B63E987CBDF47D6637B89F5A09F5509F5C7529(/*hidden argument*/NULL); NullCheck(L_1); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = RegistryKey_GetSubKeyNames_m117A40457A2C3473D9D9E8CD9916D23DC8B4532F(L_1, /*hidden argument*/NULL); V_0 = L_2; V_1 = 0; goto IL_0054; } IL_0016: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = V_0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; String_t* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_2 = L_6; RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_7 = TimeZoneInfo_get_TimeZoneKey_m82B63E987CBDF47D6637B89F5A09F5509F5C7529(/*hidden argument*/NULL); String_t* L_8 = V_2; NullCheck(L_7); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_9 = RegistryKey_OpenSubKey_m7BAA592BA6639DE0CBAC3D300C5A28DCA05190F2(L_7, L_8, /*hidden argument*/NULL); V_3 = L_9; } IL_0026: try { // begin try (depth: 1) { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_10 = V_3; if (!L_10) { goto IL_0036; } } IL_0029: { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_11 = V_3; NullCheck(L_11); RuntimeObject * L_12 = RegistryKey_GetValue_mC95227C5F159D15D0A59EE72A31840CE3C6DB381(L_11, _stringLiteral91B84E8687F2D082DB7BCB05E1B3B2123A1D8366, /*hidden argument*/NULL); if (L_12) { goto IL_0038; } } IL_0036: { IL2CPP_LEAVE(0x50, FINALLY_003a); } IL_0038: { IL2CPP_LEAVE(0x44, FINALLY_003a); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_003a; } FINALLY_003a: { // begin finally (depth: 1) { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_13 = V_3; if (!L_13) { goto IL_0043; } } IL_003d: { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_14 = V_3; NullCheck(L_14); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_14); } IL_0043: { IL2CPP_END_FINALLY(58) } } // end finally (depth: 1) IL2CPP_CLEANUP(58) { IL2CPP_JUMP_TBL(0x50, IL_0050) IL2CPP_JUMP_TBL(0x44, IL_0044) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0044: { List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_15 = ___systemTimeZones0; String_t* L_16 = V_2; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_17 = TimeZoneInfo_FindSystemTimeZoneById_m1213ADAB49255703C816325E6F215AE0E7E9F8DD(L_16, /*hidden argument*/NULL); NullCheck(L_15); List_1_Add_m3C00FE8E3C5994C50C32F29BEE73E95FC93432F5(L_15, L_17, /*hidden argument*/List_1_Add_m3C00FE8E3C5994C50C32F29BEE73E95FC93432F5_RuntimeMethod_var); } IL_0050: { int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_0054: { int32_t L_19 = V_1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_20 = V_0; NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))))))) { goto IL_0016; } } { return; } IL_005b: { bool L_21 = TimeZoneInfo_get_IsWindows_mD360DB90A5AFD0D6CE4E89EBAB7F40D5CEF25706(/*hidden argument*/NULL); if (!L_21) { goto IL_006e; } } { List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_22 = ___systemTimeZones0; List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_23 = TimeZoneInfo_GetSystemTimeZonesWinRTFallback_m6A927CC8A8AC235866DC2399C990A32C6BF846D0(/*hidden argument*/NULL); NullCheck(L_22); List_1_AddRange_m3D1C9DA1E2012F97E0097903E50DED0F25776C57(L_22, L_23, /*hidden argument*/List_1_AddRange_m3D1C9DA1E2012F97E0097903E50DED0F25776C57_RuntimeMethod_var); return; } IL_006e: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16)); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = L_24; NullCheck(L_25); ArrayElementTypeCheck (L_25, _stringLiteral1D35114B8F34BF6224A46DAC8D98B4ED3594B7F5); (L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1D35114B8F34BF6224A46DAC8D98B4ED3594B7F5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = L_25; NullCheck(L_26); ArrayElementTypeCheck (L_26, _stringLiteralA1E290BAB556CC85CB72A2CB75BB9A0ABA45B447); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralA1E290BAB556CC85CB72A2CB75BB9A0ABA45B447); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = L_26; NullCheck(L_27); ArrayElementTypeCheck (L_27, _stringLiteral00F33FC530D3E011EE6AB56F206622E221888971); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral00F33FC530D3E011EE6AB56F206622E221888971); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_28 = L_27; NullCheck(L_28); ArrayElementTypeCheck (L_28, _stringLiteralFCB3CCC25D66B2BCEB3459994F52E74675D4A7D4); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralFCB3CCC25D66B2BCEB3459994F52E74675D4A7D4); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_29 = L_28; NullCheck(L_29); ArrayElementTypeCheck (L_29, _stringLiteralA173E725607D0F98C78EBAC0B31138D8D136AA84); (L_29)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralA173E725607D0F98C78EBAC0B31138D8D136AA84); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = L_29; NullCheck(L_30); ArrayElementTypeCheck (L_30, _stringLiteralE0A94664599D16AD9C195801B466CE3D0756C40B); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralE0A94664599D16AD9C195801B466CE3D0756C40B); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_31 = L_30; NullCheck(L_31); ArrayElementTypeCheck (L_31, _stringLiteralCEAFB51E2B0783D53DD620019DFF3AA66708A26F); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralCEAFB51E2B0783D53DD620019DFF3AA66708A26F); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = L_31; NullCheck(L_32); ArrayElementTypeCheck (L_32, _stringLiteral37497AA5A2272C49714AEE1B07E8EDF973A95F59); (L_32)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral37497AA5A2272C49714AEE1B07E8EDF973A95F59); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_33 = L_32; NullCheck(L_33); ArrayElementTypeCheck (L_33, _stringLiteralCD6A7B8768528485A0DBCD459185091E80DC28AD); (L_33)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteralCD6A7B8768528485A0DBCD459185091E80DC28AD); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_34 = L_33; NullCheck(L_34); ArrayElementTypeCheck (L_34, _stringLiteral349507E41DD8C71C10C9DF6D2444B5E64A285691); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral349507E41DD8C71C10C9DF6D2444B5E64A285691); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_35 = L_34; NullCheck(L_35); ArrayElementTypeCheck (L_35, _stringLiteral576347EC826F38428D8C8A6F8EC4ACB2BCEAB911); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral576347EC826F38428D8C8A6F8EC4ACB2BCEAB911); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_36 = L_35; NullCheck(L_36); ArrayElementTypeCheck (L_36, _stringLiteralA151302157444AA3F3EF5AC23116EA226D29C972); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteralA151302157444AA3F3EF5AC23116EA226D29C972); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_37 = L_36; NullCheck(L_37); ArrayElementTypeCheck (L_37, _stringLiteral41937B20FBE8C71D9C6C3346AFF43C001AA25E33); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteral41937B20FBE8C71D9C6C3346AFF43C001AA25E33); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_38 = L_37; NullCheck(L_38); ArrayElementTypeCheck (L_38, _stringLiteralB6488C506558D7B3542A1D40D4A9AFD557DCC4FD); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)_stringLiteralB6488C506558D7B3542A1D40D4A9AFD557DCC4FD); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_39 = L_38; NullCheck(L_39); ArrayElementTypeCheck (L_39, _stringLiteralAC167A22531E815F8207EF03791DE1EBF88780DE); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (String_t*)_stringLiteralAC167A22531E815F8207EF03791DE1EBF88780DE); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_40 = L_39; NullCheck(L_40); ArrayElementTypeCheck (L_40, _stringLiteralAA3093554472FD113135BED5B63E12F84C2E9FE8); (L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (String_t*)_stringLiteralAA3093554472FD113135BED5B63E12F84C2E9FE8); V_0 = L_40; V_1 = 0; goto IL_016c; } IL_0101: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_41 = V_0; int32_t L_42 = V_1; NullCheck(L_41); int32_t L_43 = L_42; String_t* L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43)); V_4 = L_44; } IL_0106: try { // begin try (depth: 1) { String_t* L_45 = TimeZoneInfo_get_TimeZoneDirectory_m364906451AD0C6AF1BE27A57739BB888AD144414(/*hidden argument*/NULL); String_t* L_46 = V_4; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_47 = Path_Combine_mA495A18104786EB450EC0E44EE0FB7F9040C4311(L_45, L_46, /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_48 = Directory_GetFiles_mFC09A86D660CAD8490DB44B25A8D8E981816048E(L_47, /*hidden argument*/NULL); V_5 = L_48; V_6 = 0; goto IL_015b; } IL_011e: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_49 = V_5; int32_t L_50 = V_6; NullCheck(L_49); int32_t L_51 = L_50; String_t* L_52 = (L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_51)); V_7 = L_52; } IL_0125: try { // begin try (depth: 2) String_t* L_53 = V_4; String_t* L_54 = V_7; IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var); String_t* L_55 = Path_GetFileName_m2307E8E0B250632002840D9EC27DBABE9C4EB85E(L_54, /*hidden argument*/NULL); String_t* L_56 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteralEAEF99A09E561A86004BAEB87A80BB4CFCE8CE67, L_53, L_55, /*hidden argument*/NULL); V_8 = L_56; List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_57 = ___systemTimeZones0; String_t* L_58 = V_8; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_59 = TimeZoneInfo_FindSystemTimeZoneById_m1213ADAB49255703C816325E6F215AE0E7E9F8DD(L_58, /*hidden argument*/NULL); NullCheck(L_57); List_1_Add_m3C00FE8E3C5994C50C32F29BEE73E95FC93432F5(L_57, L_59, /*hidden argument*/List_1_Add_m3C00FE8E3C5994C50C32F29BEE73E95FC93432F5_RuntimeMethod_var); goto IL_0155; } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0149; if(il2cpp_codegen_class_is_assignable_from (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_014c; if(il2cpp_codegen_class_is_assignable_from (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_014f; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0152; throw e; } CATCH_0149: { // begin catch(System.ArgumentNullException) goto IL_0155; } // end catch (depth: 2) CATCH_014c: { // begin catch(System.TimeZoneNotFoundException) goto IL_0155; } // end catch (depth: 2) CATCH_014f: { // begin catch(System.InvalidTimeZoneException) goto IL_0155; } // end catch (depth: 2) CATCH_0152: { // begin catch(System.Exception) IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, TimeZoneInfo_GetSystemTimeZonesCore_m9D3D231ABFB243A5720D61CA7FF524E6E6D77808_RuntimeMethod_var); } // end catch (depth: 2) IL_0155: { int32_t L_60 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_60, (int32_t)1)); } IL_015b: { int32_t L_61 = V_6; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_62 = V_5; NullCheck(L_62); if ((((int32_t)L_61) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_62)->max_length))))))) { goto IL_011e; } } IL_0163: { goto IL_0168; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0165; throw e; } CATCH_0165: { // begin catch(System.Object) goto IL_0168; } // end catch (depth: 1) IL_0168: { int32_t L_63 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_63, (int32_t)1)); } IL_016c: { int32_t L_64 = V_1; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_65 = V_0; NullCheck(L_65); if ((((int32_t)L_64) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_65)->max_length))))))) { goto IL_0101; } } { return; } } // System.Boolean System.TimeZoneInfo::get_SupportsDaylightSavingTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_get_SupportsDaylightSavingTime_m101C22CB276BB45E9C38F54BF6F944C8C5578C9E (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_supportsDaylightSavingTime_8(); return L_0; } } // System.TimeZoneInfo System.TimeZoneInfo::get_Utc() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_0 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_utc_9(); if (L_0) { goto IL_0027; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1; memset((&L_1), 0, sizeof(L_1)); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((&L_1), (((int64_t)((int64_t)0))), /*hidden argument*/NULL); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_2 = TimeZoneInfo_CreateCustomTimeZone_mDFF720C53476F656C276D9E4067367669ED433D5(_stringLiteralBDFD4D8D6952777C39403B2D2E2F8A2A52BF255F, L_1, _stringLiteralBDFD4D8D6952777C39403B2D2E2F8A2A52BF255F, _stringLiteralBDFD4D8D6952777C39403B2D2E2F8A2A52BF255F, /*hidden argument*/NULL); ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->set_utc_9(L_2); } IL_0027: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_3 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_utc_9(); return L_3; } } // System.String System.TimeZoneInfo::get_TimeZoneDirectory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_TimeZoneDirectory_m364906451AD0C6AF1BE27A57739BB888AD144414 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_get_TimeZoneDirectory_m364906451AD0C6AF1BE27A57739BB888AD144414_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_timeZoneDirectory_10(); if (L_0) { goto IL_0011; } } { ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->set_timeZoneDirectory_10(_stringLiteralF20EDA68133DFCF8EA3FB9069F3237610643A8F0); } IL_0011: { String_t* L_1 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_timeZoneDirectory_10(); return L_1; } } // System.Boolean System.TimeZoneInfo::get_IsWindows() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_get_IsWindows_mD360DB90A5AFD0D6CE4E89EBAB7F40D5CEF25706 (const RuntimeMethod* method) { int32_t V_0 = 0; { OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * L_0 = Environment_get_OSVersion_mD6E99E279170E00D17F7D29F242EF65434812233(/*hidden argument*/NULL); NullCheck(L_0); int32_t L_1 = OperatingSystem_get_Platform_m36635DD0A3D5442E515AB8D2EA3C7092348A5181_inline(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)4))) { goto IL_001f; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)6))) { goto IL_001f; } } { int32_t L_4 = V_0; return (bool)((((int32_t)((((int32_t)L_4) == ((int32_t)((int32_t)128)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001f: { return (bool)0; } } // System.String System.TimeZoneInfo::TrimSpecial(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TrimSpecial_m8904FED0584050DFA61E0BD573BDDF2D2E24DD64 (String_t* ___str0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_TrimSpecial_m8904FED0584050DFA61E0BD573BDDF2D2E24DD64_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { String_t* L_0 = ___str0; if (L_0) { goto IL_0005; } } { String_t* L_1 = ___str0; return L_1; } IL_0005: { V_0 = 0; goto IL_000d; } IL_0009: { int32_t L_2 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)); } IL_000d: { int32_t L_3 = V_0; String_t* L_4 = ___str0; NullCheck(L_4); int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL); if ((((int32_t)L_3) >= ((int32_t)L_5))) { goto IL_0024; } } { String_t* L_6 = ___str0; int32_t L_7 = V_0; NullCheck(L_6); Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_9 = Char_IsLetterOrDigit_mD7307B3157DFA4EC20D58F68ACB6A9793D3A8292(L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0009; } } IL_0024: { String_t* L_10 = ___str0; NullCheck(L_10); int32_t L_11 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_10, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)); goto IL_0033; } IL_002f: { int32_t L_12 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)); } IL_0033: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) <= ((int32_t)L_14))) { goto IL_0050; } } { String_t* L_15 = ___str0; int32_t L_16 = V_1; NullCheck(L_15); Il2CppChar L_17 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_15, L_16, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_18 = Char_IsLetterOrDigit_mD7307B3157DFA4EC20D58F68ACB6A9793D3A8292(L_17, /*hidden argument*/NULL); if (L_18) { goto IL_0050; } } { String_t* L_19 = ___str0; int32_t L_20 = V_1; NullCheck(L_19); Il2CppChar L_21 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_19, L_20, /*hidden argument*/NULL); if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)41))))) { goto IL_002f; } } IL_0050: { String_t* L_22 = ___str0; int32_t L_23 = V_0; int32_t L_24 = V_1; int32_t L_25 = V_0; NullCheck(L_22); String_t* L_26 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_22, L_23, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)L_25)), (int32_t)1)), /*hidden argument*/NULL); return L_26; } } // Microsoft.Win32.RegistryKey System.TimeZoneInfo::get_TimeZoneKey() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * TimeZoneInfo_get_TimeZoneKey_m82B63E987CBDF47D6637B89F5A09F5509F5C7529 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_get_TimeZoneKey_m82B63E987CBDF47D6637B89F5A09F5509F5C7529_MetadataUsageId); s_Il2CppMethodInitialized = true; } RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_0 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_timeZoneKey_12(); if (!L_0) { goto IL_000d; } } { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_1 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_timeZoneKey_12(); return L_1; } IL_000d: { bool L_2 = TimeZoneInfo_get_IsWindows_mD360DB90A5AFD0D6CE4E89EBAB7F40D5CEF25706(/*hidden argument*/NULL); if (L_2) { goto IL_0016; } } { return (RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 *)NULL; } IL_0016: { } IL_0017: try { // begin try (depth: 1) IL2CPP_RUNTIME_CLASS_INIT(Registry_t241E9489A52A385888DBC941B714B48401DBB28E_il2cpp_TypeInfo_var); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_3 = ((Registry_t241E9489A52A385888DBC941B714B48401DBB28E_StaticFields*)il2cpp_codegen_static_fields_for(Registry_t241E9489A52A385888DBC941B714B48401DBB28E_il2cpp_TypeInfo_var))->get_LocalMachine_4(); NullCheck(L_3); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_4 = RegistryKey_OpenSubKey_mFB72687C9F3CB562E0DD9DC07331211E964C6F9E(L_3, _stringLiteral1896FE3101E00E003E0A21778DA6F57A86DEA7BC, (bool)0, /*hidden argument*/NULL); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_5 = L_4; ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->set_timeZoneKey_12(L_5); V_0 = L_5; goto IL_0035; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0030; throw e; } CATCH_0030: { // begin catch(System.Object) V_0 = (RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 *)NULL; goto IL_0035; } // end catch (depth: 1) IL_0035: { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_6 = V_0; return L_6; } } // Microsoft.Win32.RegistryKey System.TimeZoneInfo::get_LocalZoneKey() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * TimeZoneInfo_get_LocalZoneKey_mB5065905D83948EB70306D6BCABA0857FE0BF65C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_get_LocalZoneKey_mB5065905D83948EB70306D6BCABA0857FE0BF65C_MetadataUsageId); s_Il2CppMethodInitialized = true; } RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_0 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_localZoneKey_13(); if (!L_0) { goto IL_000d; } } { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_1 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_localZoneKey_13(); return L_1; } IL_000d: { bool L_2 = TimeZoneInfo_get_IsWindows_mD360DB90A5AFD0D6CE4E89EBAB7F40D5CEF25706(/*hidden argument*/NULL); if (L_2) { goto IL_0016; } } { return (RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 *)NULL; } IL_0016: { } IL_0017: try { // begin try (depth: 1) IL2CPP_RUNTIME_CLASS_INIT(Registry_t241E9489A52A385888DBC941B714B48401DBB28E_il2cpp_TypeInfo_var); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_3 = ((Registry_t241E9489A52A385888DBC941B714B48401DBB28E_StaticFields*)il2cpp_codegen_static_fields_for(Registry_t241E9489A52A385888DBC941B714B48401DBB28E_il2cpp_TypeInfo_var))->get_LocalMachine_4(); NullCheck(L_3); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_4 = RegistryKey_OpenSubKey_mFB72687C9F3CB562E0DD9DC07331211E964C6F9E(L_3, _stringLiteralDCBF19BC29354184B31ADAB7FE37B301685FF550, (bool)0, /*hidden argument*/NULL); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_5 = L_4; ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->set_localZoneKey_13(L_5); V_0 = L_5; goto IL_0035; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0030; throw e; } CATCH_0030: { // begin catch(System.Object) V_0 = (RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 *)NULL; goto IL_0035; } // end catch (depth: 1) IL_0035: { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_6 = V_0; return L_6; } } // System.Boolean System.TimeZoneInfo::TryAddTicks(System.DateTime,System.Int64,System.DateTime&,System.DateTimeKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___date0, int64_t ___ticks1, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * ___result2, int32_t ___kind3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49_MetadataUsageId); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_1; memset((&V_1), 0, sizeof(V_1)); { int64_t L_0 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___date0), /*hidden argument*/NULL); int64_t L_1 = ___ticks1; V_0 = ((int64_t)il2cpp_codegen_add((int64_t)L_0, (int64_t)L_1)); int64_t L_2 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); V_1 = L_3; int64_t L_4 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_1), /*hidden argument*/NULL); if ((((int64_t)L_2) >= ((int64_t)L_4))) { goto IL_002d; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_5 = ___result2; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); int32_t L_7 = ___kind3; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_8 = DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316(L_6, L_7, /*hidden argument*/NULL); *(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_5 = L_8; return (bool)0; } IL_002d: { int64_t L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_10 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MaxValue_32(); V_1 = L_10; int64_t L_11 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_1), /*hidden argument*/NULL); if ((((int64_t)L_9) <= ((int64_t)L_11))) { goto IL_0050; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_12 = ___result2; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MaxValue_32(); int32_t L_14 = ___kind3; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_15 = DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316(L_13, L_14, /*hidden argument*/NULL); *(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_12 = L_15; return (bool)0; } IL_0050: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_16 = ___result2; int64_t L_17 = V_0; int32_t L_18 = ___kind3; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_19; memset((&L_19), 0, sizeof(L_19)); DateTime__ctor_m184FABF75B3C703A70200D760A7E43C60524630F((&L_19), L_17, L_18, /*hidden argument*/NULL); *(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_16 = L_19; return (bool)1; } } // System.DateTime System.TimeZoneInfo::ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTime_mC953F67CC3D9457C7595DBB652418754C2B58FDE (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___sourceTimeZone1, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___destinationTimeZone2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ConvertTime_mC953F67CC3D9457C7595DBB652418754C2B58FDE_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0; memset((&V_0), 0, sizeof(V_0)); { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_0 = ___sourceTimeZone1; 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, _stringLiteral914839398AEE2A272ECAF21A6C5522C0D1378DFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TimeZoneInfo_ConvertTime_mC953F67CC3D9457C7595DBB652418754C2B58FDE_RuntimeMethod_var); } IL_000e: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_2 = ___destinationTimeZone2; 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, _stringLiteral8AAFD7F540EB518494415D8EE7E0F78305B294C7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TimeZoneInfo_ConvertTime_mC953F67CC3D9457C7595DBB652418754C2B58FDE_RuntimeMethod_var); } IL_001c: { int32_t L_4 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_4) == ((uint32_t)2)))) { goto IL_0039; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_5 = ___sourceTimeZone1; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_6 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_5) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_6))) { goto IL_0039; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, _stringLiteral6BA2E7E7FF3BE0A9B4029B8A6169677870AE9E21, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, TimeZoneInfo_ConvertTime_mC953F67CC3D9457C7595DBB652418754C2B58FDE_RuntimeMethod_var); } IL_0039: { int32_t L_8 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_8) == ((uint32_t)1)))) { goto IL_0056; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_9 = ___sourceTimeZone1; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_10 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_9) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_10))) { goto IL_0056; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_11, _stringLiteral521CE61A24760AEEB4B2129999AC818B48FC7D14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, TimeZoneInfo_ConvertTime_mC953F67CC3D9457C7595DBB652418754C2B58FDE_RuntimeMethod_var); } IL_0056: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_12 = ___sourceTimeZone1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13 = ___dateTime0; NullCheck(L_12); bool L_14 = TimeZoneInfo_IsInvalidTime_m986910976B42BA4BA0687D048ADABAA997B6C235(L_12, L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_006a; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, _stringLiteralE073E7170308FE19487AF6EF1807C8056BC91116, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, TimeZoneInfo_ConvertTime_mC953F67CC3D9457C7595DBB652418754C2B58FDE_RuntimeMethod_var); } IL_006a: { int32_t L_16 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_16) == ((uint32_t)2)))) { goto IL_0086; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_17 = ___sourceTimeZone1; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_18 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); if ((!(((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_17) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_18)))) { goto IL_0086; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_19 = ___destinationTimeZone2; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_20 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); if ((!(((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_19) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_20)))) { goto IL_0086; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_21 = ___dateTime0; return L_21; } IL_0086: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_22 = ___dateTime0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_23 = ___sourceTimeZone1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_24 = TimeZoneInfo_ConvertTimeToUtc_m84C132EC36ADACD6B6598F4F98219060D047C003(L_22, L_23, /*hidden argument*/NULL); V_0 = L_24; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_25 = ___destinationTimeZone2; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_26 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_25) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_26))) { goto IL_00af; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_27 = V_0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_28 = ___destinationTimeZone2; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_29 = TimeZoneInfo_ConvertTimeFromUtc_m471600E7A17C69471FAB60868046709A90FEC03D(L_27, L_28, /*hidden argument*/NULL); V_0 = L_29; int32_t L_30 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if (L_30) { goto IL_00af; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_31 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_32 = DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316(L_31, 0, /*hidden argument*/NULL); return L_32; } IL_00af: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_33 = V_0; return L_33; } } // System.DateTime System.TimeZoneInfo::ConvertTimeFromUtc(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTimeFromUtc_m59079E8F2663E2A1A96089CCB397E2FC9A00C422 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ConvertTimeFromUtc_m59079E8F2663E2A1A96089CCB397E2FC9A00C422_MetadataUsageId); s_Il2CppMethodInitialized = true; } TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_2; memset((&V_2), 0, sizeof(V_2)); int32_t G_B7_0 = 0; { int32_t L_0 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_0015; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, _stringLiteral34530CDFC92A51FCD4964DF30BAE93C4C3CFACF8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TimeZoneInfo_ConvertTimeFromUtc_m59079E8F2663E2A1A96089CCB397E2FC9A00C422_RuntimeMethod_var); } IL_0015: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_2 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); if ((!(((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)__this) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_2)))) { goto IL_0025; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = ___dateTime0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316(L_3, 1, /*hidden argument*/NULL); return L_4; } IL_0025: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = ___dateTime0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_6 = TimeZoneInfo_GetUtcOffset_mB87444CE19A766D8190FCA7508AE192E66E9436D(__this, L_5, /*hidden argument*/NULL); V_0 = L_6; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_7 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)__this) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_7))) { goto IL_0038; } } { G_B7_0 = 0; goto IL_0039; } IL_0038: { G_B7_0 = 2; } IL_0039: { V_1 = G_B7_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_8 = ___dateTime0; int64_t L_9 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_0), /*hidden argument*/NULL); int32_t L_10 = V_1; bool L_11 = TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49(L_8, L_9, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), L_10, /*hidden argument*/NULL); if (L_11) { goto IL_0058; } } { IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_12 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MaxValue_32(); int32_t L_13 = V_1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_14 = DateTime_SpecifyKind_m2E9B2B28CB3255EA842EBCBA42AF0565144D2316(L_12, L_13, /*hidden argument*/NULL); return L_14; } IL_0058: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_15 = V_2; return L_15; } } // System.DateTime System.TimeZoneInfo::ConvertTimeFromUtc(System.DateTime,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTimeFromUtc_m471600E7A17C69471FAB60868046709A90FEC03D (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___destinationTimeZone1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ConvertTimeFromUtc_m471600E7A17C69471FAB60868046709A90FEC03D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_0 = ___destinationTimeZone1; 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, _stringLiteral8AAFD7F540EB518494415D8EE7E0F78305B294C7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TimeZoneInfo_ConvertTimeFromUtc_m471600E7A17C69471FAB60868046709A90FEC03D_RuntimeMethod_var); } IL_000e: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_2 = ___destinationTimeZone1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = ___dateTime0; NullCheck(L_2); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = TimeZoneInfo_ConvertTimeFromUtc_m59079E8F2663E2A1A96089CCB397E2FC9A00C422(L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.DateTime System.TimeZoneInfo::ConvertTimeToUtc(System.DateTime,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTimeToUtc_m296EB8284D179E8F42849A9F02306B55CA009952 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, int32_t ___flags1, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___dateTime0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_1 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); int32_t L_2 = ___flags1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = TimeZoneInfo_ConvertTimeToUtc_m6A0B236FDC04E0431DDCB946218961E6218269F4(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.DateTime System.TimeZoneInfo::ConvertTimeToUtc(System.DateTime,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTimeToUtc_m84C132EC36ADACD6B6598F4F98219060D047C003 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___sourceTimeZone1, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___dateTime0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_1 = ___sourceTimeZone1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_2 = TimeZoneInfo_ConvertTimeToUtc_m6A0B236FDC04E0431DDCB946218961E6218269F4(L_0, L_1, 1, /*hidden argument*/NULL); return L_2; } } // System.DateTime System.TimeZoneInfo::ConvertTimeToUtc(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_ConvertTimeToUtc_m6A0B236FDC04E0431DDCB946218961E6218269F4 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___sourceTimeZone1, int32_t ___flags2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ConvertTimeToUtc_m6A0B236FDC04E0431DDCB946218961E6218269F4_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_1; memset((&V_1), 0, sizeof(V_1)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_2; memset((&V_2), 0, sizeof(V_2)); { int32_t L_0 = ___flags2; if (((int32_t)((int32_t)L_0&(int32_t)2))) { goto IL_0061; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_1 = ___sourceTimeZone1; if (L_1) { goto IL_0013; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteral914839398AEE2A272ECAF21A6C5522C0D1378DFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TimeZoneInfo_ConvertTimeToUtc_m6A0B236FDC04E0431DDCB946218961E6218269F4_RuntimeMethod_var); } IL_0013: { int32_t L_3 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0030; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_4 = ___sourceTimeZone1; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_5 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_4) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_5))) { goto IL_0030; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, _stringLiteral521CE61A24760AEEB4B2129999AC818B48FC7D14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, TimeZoneInfo_ConvertTimeToUtc_m6A0B236FDC04E0431DDCB946218961E6218269F4_RuntimeMethod_var); } IL_0030: { int32_t L_7 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_7) == ((uint32_t)2)))) { goto IL_004d; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_8 = ___sourceTimeZone1; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_9 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_8) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_9))) { goto IL_004d; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, _stringLiteral6BA2E7E7FF3BE0A9B4029B8A6169677870AE9E21, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, TimeZoneInfo_ConvertTimeToUtc_m6A0B236FDC04E0431DDCB946218961E6218269F4_RuntimeMethod_var); } IL_004d: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_11 = ___sourceTimeZone1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_12 = ___dateTime0; NullCheck(L_11); bool L_13 = TimeZoneInfo_IsInvalidTime_m986910976B42BA4BA0687D048ADABAA997B6C235(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0061; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_14, _stringLiteralE073E7170308FE19487AF6EF1807C8056BC91116, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, TimeZoneInfo_ConvertTimeToUtc_m6A0B236FDC04E0431DDCB946218961E6218269F4_RuntimeMethod_var); } IL_0061: { int32_t L_15 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_15) == ((uint32_t)1)))) { goto IL_006d; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_16 = ___dateTime0; return L_16; } IL_006d: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_17 = ___sourceTimeZone1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_18 = ___dateTime0; NullCheck(L_17); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_19 = TimeZoneInfo_GetUtcOffset_m3472449E929542E987D335203A81C84E148674AB(L_17, L_18, (bool*)(&V_0), /*hidden argument*/NULL); V_1 = L_19; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_20 = ___dateTime0; int64_t L_21 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_1), /*hidden argument*/NULL); TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49(L_20, ((-L_21)), (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), 1, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_22 = V_2; return L_22; } } // System.TimeSpan System.TimeZoneInfo::GetDateTimeNowUtcOffsetFromUtc(System.DateTime,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetDateTimeNowUtcOffsetFromUtc_m57199B9E169E531B6653648D8520F42F4DC70B7A (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___time0, bool* ___isAmbiguousLocalDst1, const RuntimeMethod* method) { bool V_0 = false; { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___time0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_1 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); bool* L_2 = ___isAmbiguousLocalDst1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_3 = TimeZoneInfo_GetUtcOffsetFromUtc_mAA79026F581A893DD65B95D5660E146520B471FA(L_0, L_1, (bool*)(&V_0), (bool*)L_2, /*hidden argument*/NULL); return L_3; } } // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_CreateCustomTimeZone_mDFF720C53476F656C276D9E4067367669ED433D5 (String_t* ___id0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, const RuntimeMethod* method) { { String_t* L_0 = ___id0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___baseUtcOffset1; String_t* L_2 = ___displayName2; String_t* L_3 = ___standardDisplayName3; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_4 = TimeZoneInfo_CreateCustomTimeZone_m11D4C4650268C21964BDAEBE2DF66EF03FA0D44A(L_0, L_1, L_2, L_3, (String_t*)NULL, (AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)(AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)NULL, (bool)1, /*hidden argument*/NULL); return L_4; } } // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo_AdjustmentRule[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_CreateCustomTimeZone_m5927EE8D4214E3F8317098CFB563D431E93C3E48 (String_t* ___id0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, String_t* ___daylightDisplayName4, AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ___adjustmentRules5, const RuntimeMethod* method) { { String_t* L_0 = ___id0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___baseUtcOffset1; String_t* L_2 = ___displayName2; String_t* L_3 = ___standardDisplayName3; String_t* L_4 = ___daylightDisplayName4; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_5 = ___adjustmentRules5; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_6 = TimeZoneInfo_CreateCustomTimeZone_m11D4C4650268C21964BDAEBE2DF66EF03FA0D44A(L_0, L_1, L_2, L_3, L_4, L_5, (bool)0, /*hidden argument*/NULL); return L_6; } } // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo_AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_CreateCustomTimeZone_m11D4C4650268C21964BDAEBE2DF66EF03FA0D44A (String_t* ___id0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, String_t* ___daylightDisplayName4, AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ___adjustmentRules5, bool ___disableDaylightSavingTime6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_CreateCustomTimeZone_m11D4C4650268C21964BDAEBE2DF66EF03FA0D44A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___id0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___baseUtcOffset1; String_t* L_2 = ___displayName2; String_t* L_3 = ___standardDisplayName3; String_t* L_4 = ___daylightDisplayName4; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_5 = ___adjustmentRules5; bool L_6 = ___disableDaylightSavingTime6; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_7 = (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)il2cpp_codegen_object_new(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var); TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5(L_7, L_0, L_1, L_2, L_3, L_4, L_5, L_6, /*hidden argument*/NULL); return L_7; } } // System.Boolean System.TimeZoneInfo::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_Equals_m550F10113123069F27625140666EE2C67A901AE6 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_Equals_m550F10113123069F27625140666EE2C67A901AE6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; bool L_1 = TimeZoneInfo_Equals_mDEDC356830CD3F65D13E71768B2701CB13EA0741(__this, ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)IsInstSealed((RuntimeObject*)L_0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_1; } } // System.Boolean System.TimeZoneInfo::Equals(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_Equals_mDEDC356830CD3F65D13E71768B2701CB13EA0741 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___other0, const RuntimeMethod* method) { { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_1 = ___other0; NullCheck(L_1); String_t* L_2 = TimeZoneInfo_get_Id_mE52B846A9B3701B6BFFC99AD5F486584044304C6_inline(L_1, /*hidden argument*/NULL); String_t* L_3 = TimeZoneInfo_get_Id_mE52B846A9B3701B6BFFC99AD5F486584044304C6_inline(__this, /*hidden argument*/NULL); bool L_4 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0020; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_5 = ___other0; bool L_6 = TimeZoneInfo_HasSameRules_m1C002CA4B76F10229AD7C5B30F53F66C7C53720A(__this, L_5, /*hidden argument*/NULL); return L_6; } IL_0020: { return (bool)0; } } // System.TimeZoneInfo System.TimeZoneInfo::FindSystemTimeZoneById(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_FindSystemTimeZoneById_m1213ADAB49255703C816325E6F215AE0E7E9F8DD (String_t* ___id0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_FindSystemTimeZoneById_m1213ADAB49255703C816325E6F215AE0E7E9F8DD_MetadataUsageId); s_Il2CppMethodInitialized = true; } RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * V_0 = NULL; { String_t* L_0 = ___id0; 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, _stringLiteral87EA5DFC8B8E384D848979496E706390B497E547, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TimeZoneInfo_FindSystemTimeZoneById_m1213ADAB49255703C816325E6F215AE0E7E9F8DD_RuntimeMethod_var); } IL_000e: { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_2 = TimeZoneInfo_get_TimeZoneKey_m82B63E987CBDF47D6637B89F5A09F5509F5C7529(/*hidden argument*/NULL); if (!L_2) { goto IL_0047; } } { String_t* L_3 = ___id0; bool L_4 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_3, _stringLiteralD7304202578FF38AEE73020102C7456D4FA76D3C, /*hidden argument*/NULL); if (!L_4) { goto IL_0029; } } { ___id0 = _stringLiteralBDFD4D8D6952777C39403B2D2E2F8A2A52BF255F; } IL_0029: { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_5 = TimeZoneInfo_get_TimeZoneKey_m82B63E987CBDF47D6637B89F5A09F5509F5C7529(/*hidden argument*/NULL); String_t* L_6 = ___id0; NullCheck(L_5); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_7 = RegistryKey_OpenSubKey_mFB72687C9F3CB562E0DD9DC07331211E964C6F9E(L_5, L_6, (bool)0, /*hidden argument*/NULL); V_0 = L_7; RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_8 = V_0; if (L_8) { goto IL_003f; } } { TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 * L_9 = (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 *)il2cpp_codegen_object_new(TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388_il2cpp_TypeInfo_var); TimeZoneNotFoundException__ctor_m13C5CB453D2842823AA85B9B4E422C42D659FA19(L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, TimeZoneInfo_FindSystemTimeZoneById_m1213ADAB49255703C816325E6F215AE0E7E9F8DD_RuntimeMethod_var); } IL_003f: { String_t* L_10 = ___id0; RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_11 = V_0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_12 = TimeZoneInfo_FromRegistryKey_mE18CC429EF151EDD5D9B1AAF8C9A28DD048114FA(L_10, L_11, /*hidden argument*/NULL); return L_12; } IL_0047: { bool L_13 = TimeZoneInfo_get_IsWindows_mD360DB90A5AFD0D6CE4E89EBAB7F40D5CEF25706(/*hidden argument*/NULL); if (!L_13) { goto IL_0055; } } { String_t* L_14 = ___id0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_15 = TimeZoneInfo_FindSystemTimeZoneByIdWinRTFallback_m97E8D7110492D9A43A425DA0A06FCCCE3F8ED483(L_14, /*hidden argument*/NULL); return L_15; } IL_0055: { String_t* L_16 = ___id0; bool L_17 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_16, _stringLiteralDC99D54D9990E3C134420BE3918E88F28531E630, /*hidden argument*/NULL); if (!L_17) { goto IL_0068; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_18 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); return L_18; } IL_0068: { String_t* L_19 = ___id0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_20 = TimeZoneInfo_FindSystemTimeZoneByIdCore_m62ECDFA5D89CE3B68C56D1B72B2CF5FB709DF322(L_19, /*hidden argument*/NULL); return L_20; } } // System.TimeZoneInfo System.TimeZoneInfo::FindSystemTimeZoneByFileName(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_FindSystemTimeZoneByFileName_m8AA63273DF4EAB14398DCD1E7B84FCADF6F84E7D (String_t* ___id0, String_t* ___filepath1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_FindSystemTimeZoneByFileName_m8AA63273DF4EAB14398DCD1E7B84FCADF6F84E7D_MetadataUsageId); s_Il2CppMethodInitialized = true; } FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * V_0 = NULL; Exception_t * V_1 = NULL; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { V_0 = (FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 *)NULL; } IL_0002: try { // begin try (depth: 1) String_t* L_0 = ___filepath1; FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_1 = File_OpenRead_m3B2974AB5AA8011E587AC834BE71862BF77C2129(L_0, /*hidden argument*/NULL); V_0 = L_1; goto IL_001e; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_000b; throw e; } CATCH_000b: { // begin catch(System.Exception) V_1 = ((Exception_t *)__exception_local); String_t* L_2 = ___filepath1; String_t* L_3 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral00E0E5FB4D410F50F71DEFD00084F261F9921ED2, L_2, /*hidden argument*/NULL); Exception_t * L_4 = V_1; TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 * L_5 = (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 *)il2cpp_codegen_object_new(TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388_il2cpp_TypeInfo_var); TimeZoneNotFoundException__ctor_m38A84B100985F5907DE77F71A3B98CD3BF1D9CD3(L_5, L_3, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, TimeZoneInfo_FindSystemTimeZoneByFileName_m8AA63273DF4EAB14398DCD1E7B84FCADF6F84E7D_RuntimeMethod_var); } // end catch (depth: 1) IL_001e: { } IL_001f: try { // begin try (depth: 1) String_t* L_6 = ___id0; FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_7 = V_0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_8 = TimeZoneInfo_BuildFromStream_m03149B20E6AA12F61EFA3B7745D3DC05DBC65418(L_6, L_7, /*hidden argument*/NULL); V_2 = L_8; IL2CPP_LEAVE(0x33, FINALLY_0029); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0029; } FINALLY_0029: { // begin finally (depth: 1) { FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_9 = V_0; if (!L_9) { goto IL_0032; } } IL_002c: { FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_10 = V_0; NullCheck(L_10); Stream_Dispose_m186A8E680F2528DEDFF8F0069CC33BD813FFB1C7(L_10, /*hidden argument*/NULL); } IL_0032: { IL2CPP_END_FINALLY(41) } } // end finally (depth: 1) IL2CPP_CLEANUP(41) { IL2CPP_JUMP_TBL(0x33, IL_0033) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0033: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_11 = V_2; return L_11; } } // System.TimeZoneInfo System.TimeZoneInfo::FromRegistryKey(System.String,Microsoft.Win32.RegistryKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_FromRegistryKey_mE18CC429EF151EDD5D9B1AAF8C9A28DD048114FA (String_t* ___id0, RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * ___key1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_FromRegistryKey_mE18CC429EF151EDD5D9B1AAF8C9A28DD048114FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; int32_t V_1 = 0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_2; memset((&V_2), 0, sizeof(V_2)); String_t* V_3 = NULL; String_t* V_4 = NULL; String_t* V_5 = NULL; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * V_6 = NULL; RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * V_7 = NULL; int32_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_11 = NULL; int32_t V_12 = 0; int32_t V_13 = 0; int32_t G_B8_0 = 0; int32_t G_B11_0 = 0; { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_0 = ___key1; NullCheck(L_0); RuntimeObject * L_1 = RegistryKey_GetValue_mC95227C5F159D15D0A59EE72A31840CE3C6DB381(L_0, _stringLiteral91B84E8687F2D082DB7BCB05E1B3B2123A1D8366, /*hidden argument*/NULL); V_0 = ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_0; if (L_2) { goto IL_001a; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_3 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m565DFEFCEFD9DB3E307E643A059B9AC57B2B57DD(L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TimeZoneInfo_FromRegistryKey_mE18CC429EF151EDD5D9B1AAF8C9A28DD048114FA_RuntimeMethod_var); } IL_001a: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); int32_t L_5 = BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391(L_4, 0, /*hidden argument*/NULL); V_1 = L_5; int32_t L_6 = V_1; TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_2), 0, ((-L_6)), 0, /*hidden argument*/NULL); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_7 = ___key1; NullCheck(L_7); RuntimeObject * L_8 = RegistryKey_GetValue_mC95227C5F159D15D0A59EE72A31840CE3C6DB381(L_7, _stringLiteral574FF9B0C49CDEB5F5508548AE0CAB44FECEE038, /*hidden argument*/NULL); V_3 = ((String_t*)CastclassSealed((RuntimeObject*)L_8, String_t_il2cpp_TypeInfo_var)); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_9 = ___key1; NullCheck(L_9); RuntimeObject * L_10 = RegistryKey_GetValue_mC95227C5F159D15D0A59EE72A31840CE3C6DB381(L_9, _stringLiteralC45B18C0F0F4B3CF24DA66312054A56CCF27D9C5, /*hidden argument*/NULL); V_4 = ((String_t*)CastclassSealed((RuntimeObject*)L_10, String_t_il2cpp_TypeInfo_var)); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_11 = ___key1; NullCheck(L_11); RuntimeObject * L_12 = RegistryKey_GetValue_mC95227C5F159D15D0A59EE72A31840CE3C6DB381(L_11, _stringLiteralBB80988865A7C2136B3ADE9C2EB5EAE119955268, /*hidden argument*/NULL); V_5 = ((String_t*)CastclassSealed((RuntimeObject*)L_12, String_t_il2cpp_TypeInfo_var)); List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_13 = (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *)il2cpp_codegen_object_new(List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E_il2cpp_TypeInfo_var); List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708(L_13, /*hidden argument*/List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708_RuntimeMethod_var); V_6 = L_13; RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_14 = ___key1; NullCheck(L_14); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_15 = RegistryKey_OpenSubKey_mFB72687C9F3CB562E0DD9DC07331211E964C6F9E(L_14, _stringLiteral04C41D8EF73FED844DA0ECFAA6DFF090063F2B1D, (bool)0, /*hidden argument*/NULL); V_7 = L_15; RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_16 = V_7; if (!L_16) { goto IL_00f9; } } { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_17 = V_7; NullCheck(L_17); RuntimeObject * L_18 = RegistryKey_GetValue_mC95227C5F159D15D0A59EE72A31840CE3C6DB381(L_17, _stringLiteral8F6474296A2391DE11EB639CEE391F6735046792, /*hidden argument*/NULL); V_8 = ((*(int32_t*)((int32_t*)UnBox(L_18, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))); RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_19 = V_7; NullCheck(L_19); RuntimeObject * L_20 = RegistryKey_GetValue_mC95227C5F159D15D0A59EE72A31840CE3C6DB381(L_19, _stringLiteral3ABDF740E9FD3F66165C9843BF151FCB36E52262, /*hidden argument*/NULL); V_9 = ((*(int32_t*)((int32_t*)UnBox(L_20, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))); int32_t L_21 = V_8; V_10 = L_21; goto IL_00f1; } IL_00a7: { RegistryKey_t29D81BFF6D6710C7AF7557F80446D514B0AB7574 * L_22 = V_7; String_t* L_23 = Int32_ToString_m1863896DE712BF97C031D55B12E1583F1982DC02((int32_t*)(&V_10), /*hidden argument*/NULL); NullCheck(L_22); RuntimeObject * L_24 = RegistryKey_GetValue_mC95227C5F159D15D0A59EE72A31840CE3C6DB381(L_22, L_23, /*hidden argument*/NULL); V_11 = ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_24, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = V_11; if (!L_25) { goto IL_00eb; } } { int32_t L_26 = V_10; int32_t L_27 = V_8; if ((((int32_t)L_26) == ((int32_t)L_27))) { goto IL_00ca; } } { int32_t L_28 = V_10; G_B8_0 = L_28; goto IL_00cb; } IL_00ca: { G_B8_0 = 1; } IL_00cb: { V_12 = G_B8_0; int32_t L_29 = V_10; int32_t L_30 = V_9; if ((((int32_t)L_29) == ((int32_t)L_30))) { goto IL_00d7; } } { int32_t L_31 = V_10; G_B11_0 = L_31; goto IL_00dc; } IL_00d7: { G_B11_0 = ((int32_t)9999); } IL_00dc: { V_13 = G_B11_0; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_32 = V_6; int32_t L_33 = V_12; int32_t L_34 = V_13; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = V_11; TimeZoneInfo_ParseRegTzi_m55C1F9CA43A650277423AE74BF2787446C1D906F(L_32, L_33, L_34, L_35, /*hidden argument*/NULL); } IL_00eb: { int32_t L_36 = V_10; V_10 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_00f1: { int32_t L_37 = V_10; int32_t L_38 = V_9; if ((((int32_t)L_37) <= ((int32_t)L_38))) { goto IL_00a7; } } { goto IL_0107; } IL_00f9: { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_39 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = V_0; TimeZoneInfo_ParseRegTzi_m55C1F9CA43A650277423AE74BF2787446C1D906F(L_39, 1, ((int32_t)9999), L_40, /*hidden argument*/NULL); } IL_0107: { String_t* L_41 = ___id0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_42 = V_2; String_t* L_43 = V_3; String_t* L_44 = V_4; String_t* L_45 = V_5; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_46 = V_6; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_47 = TimeZoneInfo_ValidateRules_mB2C193EB81FF713EED1541D27D08BAD59B29E311(L_46, /*hidden argument*/NULL); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_48 = TimeZoneInfo_CreateCustomTimeZone_m5927EE8D4214E3F8317098CFB563D431E93C3E48(L_41, L_42, L_43, L_44, L_45, L_47, /*hidden argument*/NULL); return L_48; } } // System.Void System.TimeZoneInfo::ParseRegTzi(System.Collections.Generic.List`1<System.TimeZoneInfo_AdjustmentRule>,System.Int32,System.Int32,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_ParseRegTzi_m55C1F9CA43A650277423AE74BF2787446C1D906F (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * ___adjustmentRules0, int32_t ___start_year1, int32_t ___end_year2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ParseRegTzi_m55C1F9CA43A650277423AE74BF2787446C1D906F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; int32_t V_11 = 0; int32_t V_12 = 0; int32_t V_13 = 0; int32_t V_14 = 0; int32_t V_15 = 0; int32_t V_16 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_17; memset((&V_17), 0, sizeof(V_17)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_18; memset((&V_18), 0, sizeof(V_18)); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_19; memset((&V_19), 0, sizeof(V_19)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_20; memset((&V_20), 0, sizeof(V_20)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_21; memset((&V_21), 0, sizeof(V_21)); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_22; memset((&V_22), 0, sizeof(V_22)); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_23; memset((&V_23), 0, sizeof(V_23)); { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer3; IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); int32_t L_1 = BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391(L_0, 8, /*hidden argument*/NULL); V_0 = L_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer3; int16_t L_3 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_2, ((int32_t)12), /*hidden argument*/NULL); V_1 = L_3; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___buffer3; int16_t L_5 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_4, ((int32_t)14), /*hidden argument*/NULL); V_2 = L_5; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___buffer3; int16_t L_7 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_6, ((int32_t)16), /*hidden argument*/NULL); V_3 = L_7; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___buffer3; int16_t L_9 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_8, ((int32_t)18), /*hidden argument*/NULL); V_4 = L_9; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___buffer3; int16_t L_11 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_10, ((int32_t)20), /*hidden argument*/NULL); V_5 = L_11; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___buffer3; int16_t L_13 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_12, ((int32_t)22), /*hidden argument*/NULL); V_6 = L_13; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ___buffer3; int16_t L_15 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_14, ((int32_t)24), /*hidden argument*/NULL); V_7 = L_15; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = ___buffer3; int16_t L_17 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_16, ((int32_t)26), /*hidden argument*/NULL); V_8 = L_17; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ___buffer3; int16_t L_19 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_18, ((int32_t)28), /*hidden argument*/NULL); V_9 = L_19; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = ___buffer3; int16_t L_21 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_20, ((int32_t)30), /*hidden argument*/NULL); V_10 = L_21; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = ___buffer3; int16_t L_23 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_22, ((int32_t)32), /*hidden argument*/NULL); V_11 = L_23; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = ___buffer3; int16_t L_25 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_24, ((int32_t)34), /*hidden argument*/NULL); V_12 = L_25; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = ___buffer3; int16_t L_27 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_26, ((int32_t)36), /*hidden argument*/NULL); V_13 = L_27; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = ___buffer3; int16_t L_29 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_28, ((int32_t)38), /*hidden argument*/NULL); V_14 = L_29; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = ___buffer3; int16_t L_31 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_30, ((int32_t)40), /*hidden argument*/NULL); V_15 = L_31; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = ___buffer3; int16_t L_33 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_32, ((int32_t)42), /*hidden argument*/NULL); V_16 = L_33; int32_t L_34 = V_2; if (!L_34) { goto IL_00ac; } } { int32_t L_35 = V_10; if (L_35) { goto IL_00ad; } } IL_00ac: { return; } IL_00ad: { int32_t L_36 = V_13; int32_t L_37 = V_14; int32_t L_38 = V_15; int32_t L_39 = V_16; DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_18), 1, 1, 1, L_36, L_37, L_38, L_39, /*hidden argument*/NULL); int32_t L_40 = ___start_year1; DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_17), L_40, 1, 1, /*hidden argument*/NULL); int32_t L_41 = V_9; if (L_41) { goto IL_00de; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_42 = V_18; int32_t L_43 = V_10; int32_t L_44 = V_12; int32_t L_45 = V_11; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_46 = TransitionTime_CreateFloatingDateRule_mF22316F8D071F0D8AAE9981156D6CD87637A327E(L_42, L_43, L_44, L_45, /*hidden argument*/NULL); V_19 = L_46; goto IL_00eb; } IL_00de: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_47 = V_18; int32_t L_48 = V_10; int32_t L_49 = V_12; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_50 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_47, L_48, L_49, /*hidden argument*/NULL); V_19 = L_50; } IL_00eb: { int32_t L_51 = V_5; int32_t L_52 = V_6; int32_t L_53 = V_7; int32_t L_54 = V_8; DateTime__ctor_m6567CDEB97E6541CE4AF8ADDC617CFF419D5A58E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_21), 1, 1, 1, L_51, L_52, L_53, L_54, /*hidden argument*/NULL); int32_t L_55 = ___end_year2; DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_20), L_55, ((int32_t)12), ((int32_t)31), /*hidden argument*/NULL); int32_t L_56 = V_1; if (L_56) { goto IL_011b; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_57 = V_21; int32_t L_58 = V_2; int32_t L_59 = V_4; int32_t L_60 = V_3; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_61 = TransitionTime_CreateFloatingDateRule_mF22316F8D071F0D8AAE9981156D6CD87637A327E(L_57, L_58, L_59, L_60, /*hidden argument*/NULL); V_22 = L_61; goto IL_0127; } IL_011b: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_62 = V_21; int32_t L_63 = V_2; int32_t L_64 = V_4; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_65 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_62, L_63, L_64, /*hidden argument*/NULL); V_22 = L_65; } IL_0127: { int32_t L_66 = V_0; TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_23), 0, ((-L_66)), 0, /*hidden argument*/NULL); List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_67 = ___adjustmentRules0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_68 = V_17; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_69 = V_20; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_70 = V_23; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_71 = V_19; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_72 = V_22; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_73 = AdjustmentRule_CreateAdjustmentRule_m02250B76565B1F45DA0F87EA2630579828049935(L_68, L_69, L_70, L_71, L_72, /*hidden argument*/NULL); NullCheck(L_67); List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608(L_67, L_73, /*hidden argument*/List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608_RuntimeMethod_var); return; } } // System.TimeZoneInfo_AdjustmentRule[] System.TimeZoneInfo::GetAdjustmentRules() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* TimeZoneInfo_GetAdjustmentRules_m5ECAA03E2351067B577D5E4EAE036014FCE291DE (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_GetAdjustmentRules_m5ECAA03E2351067B577D5E4EAE036014FCE291DE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_supportsDaylightSavingTime_8(); if (!L_0) { goto IL_0010; } } { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_1 = __this->get_adjustmentRules_11(); if (L_1) { goto IL_0017; } } IL_0010: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_2 = (AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)(AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)SZArrayNew(AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD_il2cpp_TypeInfo_var, (uint32_t)0); return L_2; } IL_0017: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_3 = __this->get_adjustmentRules_11(); NullCheck((RuntimeArray *)(RuntimeArray *)L_3); RuntimeObject * L_4 = Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176((RuntimeArray *)(RuntimeArray *)L_3, /*hidden argument*/NULL); return ((AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)Castclass((RuntimeObject*)L_4, AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD_il2cpp_TypeInfo_var)); } } // System.Int32 System.TimeZoneInfo::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_GetHashCode_m2F0186467A29324D42554C640C84BAF79DEEE2E9 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* V_1 = NULL; int32_t V_2 = 0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_3 = NULL; { String_t* L_0 = TimeZoneInfo_get_Id_mE52B846A9B3701B6BFFC99AD5F486584044304C6_inline(__this, /*hidden argument*/NULL); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); V_0 = L_1; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_2 = TimeZoneInfo_GetAdjustmentRules_m5ECAA03E2351067B577D5E4EAE036014FCE291DE(__this, /*hidden argument*/NULL); V_1 = L_2; V_2 = 0; goto IL_0028; } IL_0017: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_3 = V_1; int32_t L_4 = V_2; NullCheck(L_3); int32_t L_5 = L_4; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_3 = L_6; int32_t L_7 = V_0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_8 = V_3; NullCheck(L_8); int32_t L_9 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_8); V_0 = ((int32_t)((int32_t)L_7^(int32_t)L_9)); int32_t L_10 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0028: { int32_t L_11 = V_2; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_12 = V_1; NullCheck(L_12); if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))) { goto IL_0017; } } { int32_t L_13 = V_0; return L_13; } } // System.Void System.TimeZoneInfo::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData_mAE47C204DEBA80A40CE6BB6D8645CBE68E07E843 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData_mAE47C204DEBA80A40CE6BB6D8645CBE68E07E843_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; 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, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData_mAE47C204DEBA80A40CE6BB6D8645CBE68E07E843_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; String_t* L_3 = __this->get_id_3(); NullCheck(L_2); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_2, _stringLiteral474AE52625B87D7628AE7B20A499329A99E07119, L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; String_t* L_5 = __this->get_displayName_2(); NullCheck(L_4); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_4, _stringLiteral0A5D3E6700373C9EF26EC5782D72D97AE5D7CF3C, L_5, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0; String_t* L_7 = __this->get_standardDisplayName_7(); NullCheck(L_6); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_6, _stringLiteral0F6182802153D24EEA849ECD8B3CDAA0F9B47E59, L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; String_t* L_9 = __this->get_daylightDisplayName_1(); NullCheck(L_8); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_8, _stringLiteral986D5F863A276DE3CA7FDCEEC5606C2C44E03800, L_9, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_11 = __this->get_baseUtcOffset_0(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_12 = L_11; RuntimeObject * L_13 = Box(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_10, _stringLiteral02DD17A342AB600AEB759AEBC9C5D0DBAAFD8FDE, L_13, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_14 = ___info0; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_15 = __this->get_adjustmentRules_11(); NullCheck(L_14); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_14, _stringLiteral607A669D68C57749AE1E59F1737A7C47B41E00A6, (RuntimeObject *)(RuntimeObject *)L_15, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_16 = ___info0; bool L_17 = TimeZoneInfo_get_SupportsDaylightSavingTime_m101C22CB276BB45E9C38F54BF6F944C8C5578C9E_inline(__this, /*hidden argument*/NULL); NullCheck(L_16); SerializationInfo_AddValue_m1229CE68F507974EBA0DA9C7C728A09E611D18B1(L_16, _stringLiteral1350F100109D4CF9E61BDE17537ED0553C4C674D, L_17, /*hidden argument*/NULL); return; } } // System.Collections.ObjectModel.ReadOnlyCollection`1<System.TimeZoneInfo> System.TimeZoneInfo::GetSystemTimeZones() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * TimeZoneInfo_GetSystemTimeZones_mEA58988461DB651BAAEFE60B72EBCC2403FCDC3A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_GetSystemTimeZones_mEA58988461DB651BAAEFE60B72EBCC2403FCDC3A_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * V_0 = NULL; { ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * L_0 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_systemTimeZones_14(); if (L_0) { goto IL_0025; } } { List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_1 = (List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD *)il2cpp_codegen_object_new(List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD_il2cpp_TypeInfo_var); List_1__ctor_m8EA0E94A31BE27A0D2CF4FA7BDDC767E5D2ADC23(L_1, /*hidden argument*/List_1__ctor_m8EA0E94A31BE27A0D2CF4FA7BDDC767E5D2ADC23_RuntimeMethod_var); V_0 = L_1; List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_2 = V_0; TimeZoneInfo_GetSystemTimeZonesCore_m9D3D231ABFB243A5720D61CA7FF524E6E6D77808(L_2, /*hidden argument*/NULL); List_1_tAEAAD63BC89129982F4AF4D8326A9C32BEFBECAD * L_3 = V_0; ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * L_4 = (ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 *)il2cpp_codegen_object_new(ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0_il2cpp_TypeInfo_var); ReadOnlyCollection_1__ctor_m2669B26D5BD4E1D7DA650B32D5C8C5D4C6F82FE4(L_4, L_3, /*hidden argument*/ReadOnlyCollection_1__ctor_m2669B26D5BD4E1D7DA650B32D5C8C5D4C6F82FE4_RuntimeMethod_var); InterlockedCompareExchangeImpl<ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 *>((ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 **)(((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_address_of_systemTimeZones_14()), L_4, (ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 *)NULL); } IL_0025: { ReadOnlyCollection_1_tD63B9891087CF571DD4322388BDDBAEEB7606FE0 * L_5 = ((TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777_il2cpp_TypeInfo_var))->get_systemTimeZones_14(); return L_5; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetUtcOffset_mB87444CE19A766D8190FCA7508AE192E66E9436D (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, const RuntimeMethod* method) { bool V_0 = false; { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___dateTime0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = TimeZoneInfo_GetUtcOffset_m3472449E929542E987D335203A81C84E148674AB(__this, L_0, (bool*)(&V_0), /*hidden argument*/NULL); return L_1; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetUtcOffset_m3472449E929542E987D335203A81C84E148674AB (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, bool* ___isDST1, const RuntimeMethod* method) { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_0 = NULL; bool V_1 = false; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_3; memset((&V_3), 0, sizeof(V_3)); { bool* L_0 = ___isDST1; *((int8_t*)L_0) = (int8_t)0; V_0 = __this; int32_t L_1 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0015; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_2 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); V_0 = L_2; } IL_0015: { int32_t L_3 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)2)))) { goto IL_0025; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_4 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); V_0 = L_4; } IL_0025: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = ___dateTime0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_6 = V_0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_7 = TimeZoneInfo_GetUtcOffsetHelper_mEF2AA10E4E24DF9A330DA6BBE230783050E9BA1A(L_5, L_6, (bool*)(&V_1), /*hidden argument*/NULL); V_2 = L_7; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_8 = V_0; if ((!(((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_8) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)__this)))) { goto IL_0038; } } { bool* L_9 = ___isDST1; bool L_10 = V_1; *((int8_t*)L_9) = (int8_t)L_10; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_11 = V_2; return L_11; } IL_0038: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_12 = ___dateTime0; int64_t L_13 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_2), /*hidden argument*/NULL); bool L_14 = TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49(L_12, ((-L_13)), (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_3), 1, /*hidden argument*/NULL); if (L_14) { goto IL_0052; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_15 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(__this, /*hidden argument*/NULL); return L_15; } IL_0052: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_16 = V_3; bool* L_17 = ___isDST1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_18 = TimeZoneInfo_GetUtcOffsetHelper_mEF2AA10E4E24DF9A330DA6BBE230783050E9BA1A(L_16, __this, (bool*)L_17, /*hidden argument*/NULL); return L_18; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetHelper(System.DateTime,System.TimeZoneInfo,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetUtcOffsetHelper_mEF2AA10E4E24DF9A330DA6BBE230783050E9BA1A (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___tz1, bool* ___isDST2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_GetUtcOffsetHelper_mEF2AA10E4E24DF9A330DA6BBE230783050E9BA1A_MetadataUsageId); s_Il2CppMethodInitialized = true; } TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_1; memset((&V_1), 0, sizeof(V_1)); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_2 = NULL; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_3; memset((&V_3), 0, sizeof(V_3)); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_4 = NULL; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_5; memset((&V_5), 0, sizeof(V_5)); { int32_t L_0 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_0018; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_1 = ___tz1; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_2 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_1) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_2))) { goto IL_0018; } } { Exception_t * L_3 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1(L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TimeZoneInfo_GetUtcOffsetHelper_mEF2AA10E4E24DF9A330DA6BBE230783050E9BA1A_RuntimeMethod_var); } IL_0018: { bool* L_4 = ___isDST2; *((int8_t*)L_4) = (int8_t)0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_5 = ___tz1; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_6 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); if ((!(((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_5) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_6)))) { goto IL_0029; } } { IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_7 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); return L_7; } IL_0029: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_8 = ___tz1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9 = ___dateTime0; bool* L_10 = ___isDST2; NullCheck(L_8); bool L_11 = TimeZoneInfo_TryGetTransitionOffset_mE81815E31B2FD48D83635AE3FAADF622DDE6B5D6(L_8, L_9, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_0), (bool*)L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0037; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_12 = V_0; return L_12; } IL_0037: { int32_t L_13 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_13) == ((uint32_t)1)))) { goto IL_0076; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_14 = ___tz1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_15 = ___dateTime0; NullCheck(L_14); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_16 = TimeZoneInfo_GetApplicableRule_m960A90264F1FBB60734074D71036FCA304B5F73A(L_14, L_15, /*hidden argument*/NULL); V_4 = L_16; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_17 = V_4; if (!L_17) { goto IL_006f; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_18 = ___tz1; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_19 = V_4; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_20 = ___dateTime0; NullCheck(L_18); bool L_21 = TimeZoneInfo_IsInDST_m353072CFE30139C66F490E254314847B1C55A61C(L_18, L_19, L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_006f; } } { bool* L_22 = ___isDST2; *((int8_t*)L_22) = (int8_t)1; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_23 = ___tz1; NullCheck(L_23); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_24 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(L_23, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_25 = V_4; NullCheck(L_25); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_26 = AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline(L_25, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_27 = TimeSpan_op_Addition_m2C916EE6F60BA72329886F1568FE9DD0D8DF0DB7(L_24, L_26, /*hidden argument*/NULL); return L_27; } IL_006f: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_28 = ___tz1; NullCheck(L_28); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_29 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(L_28, /*hidden argument*/NULL); return L_29; } IL_0076: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_30 = ___dateTime0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_31 = ___tz1; NullCheck(L_31); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_32 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(L_31, /*hidden argument*/NULL); V_5 = L_32; int64_t L_33 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_5), /*hidden argument*/NULL); bool L_34 = TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49(L_30, ((-L_33)), (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_1), 1, /*hidden argument*/NULL); if (L_34) { goto IL_0098; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_35 = ___tz1; NullCheck(L_35); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_36 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(L_35, /*hidden argument*/NULL); return L_36; } IL_0098: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_37 = ___tz1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_38 = V_1; NullCheck(L_37); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_39 = TimeZoneInfo_GetApplicableRule_m960A90264F1FBB60734074D71036FCA304B5F73A(L_37, L_38, /*hidden argument*/NULL); V_2 = L_39; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_40 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); V_3 = L_40; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_41 = V_2; if (!L_41) { goto IL_00cb; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_42 = V_1; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_43 = V_2; NullCheck(L_43); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_44 = AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline(L_43, /*hidden argument*/NULL); V_5 = L_44; int64_t L_45 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_5), /*hidden argument*/NULL); bool L_46 = TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49(L_42, ((-L_45)), (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_3), 1, /*hidden argument*/NULL); if (L_46) { goto IL_00cb; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_47 = ___tz1; NullCheck(L_47); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_48 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(L_47, /*hidden argument*/NULL); return L_48; } IL_00cb: { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_49 = V_2; if (!L_49) { goto IL_00fe; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_50 = ___tz1; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_51 = V_2; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_52 = ___dateTime0; NullCheck(L_50); bool L_53 = TimeZoneInfo_IsInDST_m353072CFE30139C66F490E254314847B1C55A61C(L_50, L_51, L_52, /*hidden argument*/NULL); if (!L_53) { goto IL_00fe; } } { bool* L_54 = ___isDST2; *((int8_t*)L_54) = (int8_t)1; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_55 = ___tz1; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_56 = V_2; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_57 = V_3; NullCheck(L_55); bool L_58 = TimeZoneInfo_IsInDST_m353072CFE30139C66F490E254314847B1C55A61C(L_55, L_56, L_57, /*hidden argument*/NULL); if (!L_58) { goto IL_00f7; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_59 = ___tz1; NullCheck(L_59); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_60 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(L_59, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_61 = V_2; NullCheck(L_61); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_62 = AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline(L_61, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_63 = TimeSpan_op_Addition_m2C916EE6F60BA72329886F1568FE9DD0D8DF0DB7(L_60, L_62, /*hidden argument*/NULL); return L_63; } IL_00f7: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_64 = ___tz1; NullCheck(L_64); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_65 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(L_64, /*hidden argument*/NULL); return L_65; } IL_00fe: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_66 = ___tz1; NullCheck(L_66); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_67 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(L_66, /*hidden argument*/NULL); return L_67; } } // System.Boolean System.TimeZoneInfo::HasSameRules(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_HasSameRules_m1C002CA4B76F10229AD7C5B30F53F66C7C53720A (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_HasSameRules_m1C002CA4B76F10229AD7C5B30F53F66C7C53720A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_0 = ___other0; 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, _stringLiteralD0941E68DA8F38151FF86A61FC59F7C5CF9FCAA2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TimeZoneInfo_HasSameRules_m1C002CA4B76F10229AD7C5B30F53F66C7C53720A_RuntimeMethod_var); } IL_000e: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_2 = __this->get_adjustmentRules_11(); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_3 = ___other0; NullCheck(L_3); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_4 = L_3->get_adjustmentRules_11(); if ((((int32_t)((((RuntimeObject*)(AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)L_2) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)) == ((int32_t)((((RuntimeObject*)(AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)))) { goto IL_0024; } } { return (bool)0; } IL_0024: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_5 = __this->get_adjustmentRules_11(); if (L_5) { goto IL_002e; } } { return (bool)1; } IL_002e: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_6 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(__this, /*hidden argument*/NULL); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_7 = ___other0; NullCheck(L_7); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_8 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_9 = TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC(L_6, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0043; } } { return (bool)0; } IL_0043: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_10 = __this->get_adjustmentRules_11(); NullCheck(L_10); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_11 = ___other0; NullCheck(L_11); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_12 = L_11->get_adjustmentRules_11(); NullCheck(L_12); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))) { goto IL_0057; } } { return (bool)0; } IL_0057: { V_0 = 0; goto IL_0078; } IL_005b: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_13 = __this->get_adjustmentRules_11(); int32_t L_14 = V_0; NullCheck(L_13); int32_t L_15 = L_14; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_17 = ___other0; NullCheck(L_17); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_18 = L_17->get_adjustmentRules_11(); int32_t L_19 = V_0; NullCheck(L_18); int32_t L_20 = L_19; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20)); NullCheck(L_16); bool L_22 = AdjustmentRule_Equals_mE58526212854504DB5575E2396F3C97F4F0EEA95(L_16, L_21, /*hidden argument*/NULL); if (L_22) { goto IL_0074; } } { return (bool)0; } IL_0074: { int32_t L_23 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0078: { int32_t L_24 = V_0; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_25 = __this->get_adjustmentRules_11(); NullCheck(L_25); if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))))))) { goto IL_005b; } } { return (bool)1; } } // System.Boolean System.TimeZoneInfo::IsAmbiguousTime(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsAmbiguousTime_m1C47E17D025683A2FAFB4BBB8F22E8143E5462EC (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_IsAmbiguousTime_m1C47E17D025683A2FAFB4BBB8F22E8143E5462EC_MetadataUsageId); s_Il2CppMethodInitialized = true; } AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_0 = NULL; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_1; memset((&V_1), 0, sizeof(V_1)); { int32_t L_0 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_001e; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___dateTime0; bool L_2 = TimeZoneInfo_IsInvalidTime_m986910976B42BA4BA0687D048ADABAA997B6C235(__this, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, _stringLiteral0AF70E9C0D57B35CCD56C4069FC8D171CB59AF5E, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, TimeZoneInfo_IsAmbiguousTime_m1C47E17D025683A2FAFB4BBB8F22E8143E5462EC_RuntimeMethod_var); } IL_001e: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_4 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); if ((!(((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)__this) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_4)))) { goto IL_0028; } } { return (bool)0; } IL_0028: { int32_t L_5 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_003b; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = ___dateTime0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7 = TimeZoneInfo_ConvertTimeFromUtc_m59079E8F2663E2A1A96089CCB397E2FC9A00C422(__this, L_6, /*hidden argument*/NULL); ___dateTime0 = L_7; } IL_003b: { int32_t L_8 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_8) == ((uint32_t)2)))) { goto IL_005b; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_9 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)__this) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_9))) { goto IL_005b; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_10 = ___dateTime0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_11 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_12 = TimeZoneInfo_ConvertTime_mC953F67CC3D9457C7595DBB652418754C2B58FDE(L_10, L_11, __this, /*hidden argument*/NULL); ___dateTime0 = L_12; } IL_005b: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13 = ___dateTime0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_14 = TimeZoneInfo_GetApplicableRule_m960A90264F1FBB60734074D71036FCA304B5F73A(__this, L_13, /*hidden argument*/NULL); V_0 = L_14; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_15 = V_0; if (!L_15) { goto IL_0098; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_16 = V_0; NullCheck(L_16); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_17 = AdjustmentRule_get_DaylightTransitionEnd_m8EE35970D90C7857BEAE165190F5B9ADC8C57860_inline(L_16, /*hidden argument*/NULL); int32_t L_18 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_19 = TimeZoneInfo_TransitionPoint_m5FA051A8EC41B739B1A36720800679E69BF2CFF2(L_17, L_18, /*hidden argument*/NULL); V_1 = L_19; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_20 = ___dateTime0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_21 = V_1; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_22 = V_0; NullCheck(L_22); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_23 = AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline(L_22, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_24 = DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B(L_21, L_23, /*hidden argument*/NULL); bool L_25 = DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E(L_20, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_0098; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_26 = ___dateTime0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_27 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_28 = DateTime_op_LessThanOrEqual_m7131235B927010BD9DB3C93FEB51640286D1107B(L_26, L_27, /*hidden argument*/NULL); if (!L_28) { goto IL_0098; } } { return (bool)1; } IL_0098: { return (bool)0; } } // System.Boolean System.TimeZoneInfo::IsInDST(System.TimeZoneInfo_AdjustmentRule,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsInDST_m353072CFE30139C66F490E254314847B1C55A61C (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * ___rule0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime1, const RuntimeMethod* method) { { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_0 = ___rule0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___dateTime1; int32_t L_2 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime1), /*hidden argument*/NULL); bool L_3 = TimeZoneInfo_IsInDSTForYear_m5F2B6A89397E4CBE9071FB2982CDA45E6230276E(__this, L_0, L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0013; } } { return (bool)1; } IL_0013: { int32_t L_4 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime1), /*hidden argument*/NULL); if ((((int32_t)L_4) <= ((int32_t)1))) { goto IL_002f; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_5 = ___rule0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = ___dateTime1; int32_t L_7 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime1), /*hidden argument*/NULL); bool L_8 = TimeZoneInfo_IsInDSTForYear_m5F2B6A89397E4CBE9071FB2982CDA45E6230276E(__this, L_5, L_6, ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)), /*hidden argument*/NULL); return L_8; } IL_002f: { return (bool)0; } } // System.Boolean System.TimeZoneInfo::IsInDSTForYear(System.TimeZoneInfo_AdjustmentRule,System.DateTime,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsInDSTForYear_m5F2B6A89397E4CBE9071FB2982CDA45E6230276E (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * ___rule0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime1, int32_t ___year2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_IsInDSTForYear_m5F2B6A89397E4CBE9071FB2982CDA45E6230276E_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_1; memset((&V_1), 0, sizeof(V_1)); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_2; memset((&V_2), 0, sizeof(V_2)); int32_t G_B2_0 = 0; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 G_B2_1; memset((&G_B2_1), 0, sizeof(G_B2_1)); int32_t G_B1_0 = 0; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 G_B1_1; memset((&G_B1_1), 0, sizeof(G_B1_1)); int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 G_B3_2; memset((&G_B3_2), 0, sizeof(G_B3_2)); { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_0 = ___rule0; NullCheck(L_0); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_1 = AdjustmentRule_get_DaylightTransitionStart_mC89A599FADA4747E5686154DCBD067EEFBB919F6_inline(L_0, /*hidden argument*/NULL); int32_t L_2 = ___year2; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = TimeZoneInfo_TransitionPoint_m5FA051A8EC41B739B1A36720800679E69BF2CFF2(L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_4 = ___rule0; NullCheck(L_4); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_5 = AdjustmentRule_get_DaylightTransitionEnd_m8EE35970D90C7857BEAE165190F5B9ADC8C57860_inline(L_4, /*hidden argument*/NULL); int32_t L_6 = ___year2; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_7 = ___rule0; NullCheck(L_7); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_8 = AdjustmentRule_get_DaylightTransitionStart_mC89A599FADA4747E5686154DCBD067EEFBB919F6_inline(L_7, /*hidden argument*/NULL); V_2 = L_8; int32_t L_9 = TransitionTime_get_Month_m06FE288B24621979C4FE9E34D350EBA208CEA267_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&V_2), /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_10 = ___rule0; NullCheck(L_10); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_11 = AdjustmentRule_get_DaylightTransitionEnd_m8EE35970D90C7857BEAE165190F5B9ADC8C57860_inline(L_10, /*hidden argument*/NULL); V_2 = L_11; int32_t L_12 = TransitionTime_get_Month_m06FE288B24621979C4FE9E34D350EBA208CEA267_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&V_2), /*hidden argument*/NULL); G_B1_0 = L_6; G_B1_1 = L_5; if ((((int32_t)L_9) < ((int32_t)L_12))) { G_B2_0 = L_6; G_B2_1 = L_5; goto IL_0035; } } { G_B3_0 = 1; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_0036; } IL_0035: { G_B3_0 = 0; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_0036: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13 = TimeZoneInfo_TransitionPoint_m5FA051A8EC41B739B1A36720800679E69BF2CFF2(G_B3_2, ((int32_t)il2cpp_codegen_add((int32_t)G_B3_1, (int32_t)G_B3_0)), /*hidden argument*/NULL); V_1 = L_13; int32_t L_14 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime1), /*hidden argument*/NULL); if ((!(((uint32_t)L_14) == ((uint32_t)1)))) { goto IL_006c; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_15 = V_0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_16 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_17 = DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B(L_15, L_16, /*hidden argument*/NULL); V_0 = L_17; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_18 = V_1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_19 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(__this, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_20 = ___rule0; NullCheck(L_20); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_21 = AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline(L_20, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_22 = TimeSpan_op_Addition_m2C916EE6F60BA72329886F1568FE9DD0D8DF0DB7(L_19, L_21, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_23 = DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B(L_18, L_22, /*hidden argument*/NULL); V_1 = L_23; } IL_006c: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_24 = ___dateTime1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_25 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_26 = DateTime_op_GreaterThanOrEqual_mEDD57FC8B24FAF4D6AA94CFE6AE190CF359B66B4(L_24, L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_007d; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_27 = ___dateTime1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_28 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_29 = DateTime_op_LessThan_m75DE4F8CC5F5EE392829A9B37C5C98B7FC97061A(L_27, L_28, /*hidden argument*/NULL); return L_29; } IL_007d: { return (bool)0; } } // System.Boolean System.TimeZoneInfo::IsInvalidTime(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsInvalidTime_m986910976B42BA4BA0687D048ADABAA997B6C235 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_IsInvalidTime_m986910976B42BA4BA0687D048ADABAA997B6C235_MetadataUsageId); s_Il2CppMethodInitialized = true; } AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_0 = NULL; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_1; memset((&V_1), 0, sizeof(V_1)); { int32_t L_0 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_000c; } } { return (bool)0; } IL_000c: { int32_t L_1 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_0020; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_2 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)__this) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_2))) { goto IL_0020; } } { return (bool)0; } IL_0020: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = ___dateTime0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_4 = TimeZoneInfo_GetApplicableRule_m960A90264F1FBB60734074D71036FCA304B5F73A(__this, L_3, /*hidden argument*/NULL); V_0 = L_4; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_5 = V_0; if (!L_5) { goto IL_005d; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_6 = V_0; NullCheck(L_6); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_7 = AdjustmentRule_get_DaylightTransitionStart_mC89A599FADA4747E5686154DCBD067EEFBB919F6_inline(L_6, /*hidden argument*/NULL); int32_t L_8 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9 = TimeZoneInfo_TransitionPoint_m5FA051A8EC41B739B1A36720800679E69BF2CFF2(L_7, L_8, /*hidden argument*/NULL); V_1 = L_9; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_10 = ___dateTime0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_12 = DateTime_op_GreaterThanOrEqual_mEDD57FC8B24FAF4D6AA94CFE6AE190CF359B66B4(L_10, L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_005d; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13 = ___dateTime0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_14 = V_1; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_15 = V_0; NullCheck(L_15); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_16 = AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline(L_15, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_17 = DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282(L_14, L_16, /*hidden argument*/NULL); bool L_18 = DateTime_op_LessThan_m75DE4F8CC5F5EE392829A9B37C5C98B7FC97061A(L_13, L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_005d; } } { return (bool)1; } IL_005d: { return (bool)0; } } // System.Void System.TimeZoneInfo::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m5091B256A2E8EDD09B7350EA38038D51A2D8FE89 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m5091B256A2E8EDD09B7350EA38038D51A2D8FE89_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) String_t* L_0 = __this->get_id_3(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = __this->get_baseUtcOffset_0(); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_2 = __this->get_adjustmentRules_11(); TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702(L_0, L_1, L_2, /*hidden argument*/NULL); goto IL_0026; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0019; throw e; } CATCH_0019: { // begin catch(System.ArgumentException) V_0 = ((ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)__exception_local); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = V_0; SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_4 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_mCCC70F63CC8A3BC77B50CFA582D9DB1256846921(L_4, _stringLiteralA82BB634B61B228343B0708E674AB898AC53AC23, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m5091B256A2E8EDD09B7350EA38038D51A2D8FE89_RuntimeMethod_var); } // end catch (depth: 1) IL_0026: { return; } } // System.Void System.TimeZoneInfo::Validate(System.String,System.TimeSpan,System.TimeZoneInfo_AdjustmentRule[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702 (String_t* ___id0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset1, AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ___adjustmentRules2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_MetadataUsageId); s_Il2CppMethodInitialized = true; } AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_0 = NULL; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* V_1 = NULL; int32_t V_2 = 0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_3 = NULL; { String_t* L_0 = ___id0; 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, _stringLiteral87EA5DFC8B8E384D848979496E706390B497E547, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___id0; String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_4 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0026; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, _stringLiteral796C6F906CD9AFED4B6DCF5573E528AD627CA46C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_RuntimeMethod_var); } IL_0026: { int64_t L_6 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___baseUtcOffset1), /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_6%(int64_t)(((int64_t)((int64_t)((int32_t)600000000))))))) { goto IL_0041; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, _stringLiteral708136672D3E2B5A654FB9C34A7F207747885825, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_RuntimeMethod_var); } IL_0041: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_8 = ___baseUtcOffset1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_9; memset((&L_9), 0, sizeof(L_9)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_9), ((int32_t)14), 0, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_10 = TimeSpan_op_GreaterThan_mC4CE0AD3057035058479B695ACDC089F3A6EA486(L_8, L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0063; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_11 = ___baseUtcOffset1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_12; memset((&L_12), 0, sizeof(L_12)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_12), ((int32_t)-14), 0, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_13 = TimeSpan_op_LessThan_mF92FF63DD1E52540977D3B1753D43895F7B0A117(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_006e; } } IL_0063: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_14, _stringLiteral1F96F0958DF8CB4296C7EFE494DF309346DE6CBA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_RuntimeMethod_var); } IL_006e: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_15 = ___adjustmentRules2; if (!L_15) { goto IL_014d; } } { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_16 = ___adjustmentRules2; NullCheck(L_16); if (!(((RuntimeArray*)L_16)->max_length)) { goto IL_014d; } } { V_0 = (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)NULL; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_17 = ___adjustmentRules2; V_1 = L_17; V_2 = 0; goto IL_0144; } IL_0086: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_18 = V_1; int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = L_19; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20)); V_3 = L_21; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_22 = V_3; if (L_22) { goto IL_0098; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_23 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14(L_23, _stringLiteral061A02C15C4ADACD1235EC1D4913C179A22A3751, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_RuntimeMethod_var); } IL_0098: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_24 = ___baseUtcOffset1; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_25 = V_3; NullCheck(L_25); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_26 = AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline(L_25, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_27 = TimeSpan_op_Addition_m2C916EE6F60BA72329886F1568FE9DD0D8DF0DB7(L_24, L_26, /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_28; memset((&L_28), 0, sizeof(L_28)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_28), ((int32_t)-14), 0, 0, /*hidden argument*/NULL); bool L_29 = TimeSpan_op_LessThan_mF92FF63DD1E52540977D3B1753D43895F7B0A117(L_27, L_28, /*hidden argument*/NULL); if (L_29) { goto IL_00d0; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_30 = ___baseUtcOffset1; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_31 = V_3; NullCheck(L_31); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_32 = AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline(L_31, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_33 = TimeSpan_op_Addition_m2C916EE6F60BA72329886F1568FE9DD0D8DF0DB7(L_30, L_32, /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_34; memset((&L_34), 0, sizeof(L_34)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_34), ((int32_t)14), 0, 0, /*hidden argument*/NULL); bool L_35 = TimeSpan_op_GreaterThan_mC4CE0AD3057035058479B695ACDC089F3A6EA486(L_33, L_34, /*hidden argument*/NULL); if (!L_35) { goto IL_00db; } } IL_00d0: { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_36 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14(L_36, _stringLiteral21F20DF4A4C08E5DABA82DB1839C69CA515E1B33, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_RuntimeMethod_var); } IL_00db: { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_37 = V_0; if (!L_37) { goto IL_00fc; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_38 = V_0; NullCheck(L_38); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_39 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_38, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_40 = V_3; NullCheck(L_40); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_41 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_40, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_42 = DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E(L_39, L_41, /*hidden argument*/NULL); if (!L_42) { goto IL_00fc; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_43 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14(L_43, _stringLiteral15E66556F3FB947D9C6C37859A45CC4C92C6CAA7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_RuntimeMethod_var); } IL_00fc: { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_44 = V_0; if (!L_44) { goto IL_011d; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_45 = V_0; NullCheck(L_45); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_46 = AdjustmentRule_get_DateEnd_m9ECD9D96BFB535E8818CC79B0B261F8E334A722E_inline(L_45, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_47 = V_3; NullCheck(L_47); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_48 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_47, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_49 = DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E(L_46, L_48, /*hidden argument*/NULL); if (!L_49) { goto IL_011d; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_50 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14(L_50, _stringLiteralC2761A6512E7A91307A0DE721A3CA321DC4704D8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_50, TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_RuntimeMethod_var); } IL_011d: { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_51 = V_0; if (!L_51) { goto IL_013e; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_52 = V_0; NullCheck(L_52); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_53 = AdjustmentRule_get_DateEnd_m9ECD9D96BFB535E8818CC79B0B261F8E334A722E_inline(L_52, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_54 = V_3; NullCheck(L_54); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_55 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_54, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_56 = DateTime_op_Equality_m5715465D90806F5305BBA5F690377819C55AF084(L_53, L_55, /*hidden argument*/NULL); if (!L_56) { goto IL_013e; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_57 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14(L_57, _stringLiteral7B40CAEE6DF9BFEF9B5A66F65F70C99ADC496807, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_57, TimeZoneInfo_Validate_m2C720033788975438481F523D5AE5F3A9E5D3702_RuntimeMethod_var); } IL_013e: { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_58 = V_3; V_0 = L_58; int32_t L_59 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)1)); } IL_0144: { int32_t L_60 = V_2; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_61 = V_1; NullCheck(L_61); if ((((int32_t)L_60) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_61)->max_length))))))) { goto IL_0086; } } IL_014d: { return; } } // System.String System.TimeZoneInfo::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_ToString_m71BD0563C9D19EB2CBB8585D151C62D73D789126 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { { String_t* L_0 = TimeZoneInfo_get_DisplayName_m583E6E48EAA12F6D87191F71AAE821481F8B006A_inline(__this, /*hidden argument*/NULL); return L_0; } } // System.Void System.TimeZoneInfo::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_m208C00B56C7C1002819A1B940AD02AFD1848886D (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo__ctor_m208C00B56C7C1002819A1B940AD02AFD1848886D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TimeZoneInfo__ctor_m208C00B56C7C1002819A1B940AD02AFD1848886D_RuntimeMethod_var); } IL_0014: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL); NullCheck(L_2); RuntimeObject * L_5 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_2, _stringLiteral474AE52625B87D7628AE7B20A499329A99E07119, L_4, /*hidden argument*/NULL); __this->set_id_3(((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); NullCheck(L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_6, _stringLiteral0A5D3E6700373C9EF26EC5782D72D97AE5D7CF3C, L_8, /*hidden argument*/NULL); __this->set_displayName_2(((String_t*)CastclassSealed((RuntimeObject*)L_9, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); NullCheck(L_10); RuntimeObject * L_13 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_10, _stringLiteral0F6182802153D24EEA849ECD8B3CDAA0F9B47E59, L_12, /*hidden argument*/NULL); __this->set_standardDisplayName_7(((String_t*)CastclassSealed((RuntimeObject*)L_13, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_14 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL); NullCheck(L_14); RuntimeObject * L_17 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_14, _stringLiteral986D5F863A276DE3CA7FDCEEC5606C2C44E03800, L_16, /*hidden argument*/NULL); __this->set_daylightDisplayName_1(((String_t*)CastclassSealed((RuntimeObject*)L_17, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_18 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var) }; Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL); NullCheck(L_18); RuntimeObject * L_21 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_18, _stringLiteral02DD17A342AB600AEB759AEBC9C5D0DBAAFD8FDE, L_20, /*hidden argument*/NULL); __this->set_baseUtcOffset_0(((*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)UnBox(L_21, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_22 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD_0_0_0_var) }; Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_23, /*hidden argument*/NULL); NullCheck(L_22); RuntimeObject * L_25 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_22, _stringLiteral607A669D68C57749AE1E59F1737A7C47B41E00A6, L_24, /*hidden argument*/NULL); __this->set_adjustmentRules_11(((AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)Castclass((RuntimeObject*)L_25, AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD_il2cpp_TypeInfo_var))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_26 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); NullCheck(L_26); RuntimeObject * L_29 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_26, _stringLiteral1350F100109D4CF9E61BDE17537ED0553C4C674D, L_28, /*hidden argument*/NULL); __this->set_supportsDaylightSavingTime_8(((*(bool*)((bool*)UnBox(L_29, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))))); return; } } // System.Void System.TimeZoneInfo::.ctor(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo_AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, String_t* ___id0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, String_t* ___daylightDisplayName4, AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* ___adjustmentRules5, bool ___disableDaylightSavingTime6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_1 = NULL; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* V_2 = NULL; int32_t V_3 = 0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_4 = NULL; String_t* G_B32_0 = NULL; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * G_B32_1 = NULL; String_t* G_B31_0 = NULL; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * G_B31_1 = NULL; String_t* G_B34_0 = NULL; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * G_B34_1 = NULL; String_t* G_B33_0 = NULL; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * G_B33_1 = NULL; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); String_t* L_0 = ___id0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral87EA5DFC8B8E384D848979496E706390B497E547, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_RuntimeMethod_var); } IL_0014: { String_t* L_2 = ___id0; String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_4 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_002c; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, _stringLiteral796C6F906CD9AFED4B6DCF5573E528AD627CA46C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_RuntimeMethod_var); } IL_002c: { int64_t L_6 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___baseUtcOffset1), /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_6%(int64_t)(((int64_t)((int64_t)((int32_t)600000000))))))) { goto IL_0047; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_7, _stringLiteral708136672D3E2B5A654FB9C34A7F207747885825, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_RuntimeMethod_var); } IL_0047: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_8 = ___baseUtcOffset1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_9; memset((&L_9), 0, sizeof(L_9)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_9), ((int32_t)14), 0, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_10 = TimeSpan_op_GreaterThan_mC4CE0AD3057035058479B695ACDC089F3A6EA486(L_8, L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0069; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_11 = ___baseUtcOffset1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_12; memset((&L_12), 0, sizeof(L_12)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_12), ((int32_t)-14), 0, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_13 = TimeSpan_op_LessThan_mF92FF63DD1E52540977D3B1753D43895F7B0A117(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0074; } } IL_0069: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_14, _stringLiteral1F96F0958DF8CB4296C7EFE494DF309346DE6CBA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_RuntimeMethod_var); } IL_0074: { bool L_15 = ___disableDaylightSavingTime6; V_0 = (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_16 = ___adjustmentRules5; if (!L_16) { goto IL_0166; } } { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_17 = ___adjustmentRules5; NullCheck(L_17); if (!(((RuntimeArray*)L_17)->max_length)) { goto IL_0166; } } { V_1 = (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)NULL; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_18 = ___adjustmentRules5; V_2 = L_18; V_3 = 0; goto IL_015b; } IL_0095: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_19 = V_2; int32_t L_20 = V_3; NullCheck(L_19); int32_t L_21 = L_20; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); V_4 = L_22; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_23 = V_4; if (L_23) { goto IL_00a9; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_24 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14(L_24, _stringLiteral061A02C15C4ADACD1235EC1D4913C179A22A3751, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_RuntimeMethod_var); } IL_00a9: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_25 = ___baseUtcOffset1; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_26 = V_4; NullCheck(L_26); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_27 = AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline(L_26, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_28 = TimeSpan_op_Addition_m2C916EE6F60BA72329886F1568FE9DD0D8DF0DB7(L_25, L_27, /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_29; memset((&L_29), 0, sizeof(L_29)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_29), ((int32_t)-14), 0, 0, /*hidden argument*/NULL); bool L_30 = TimeSpan_op_LessThan_mF92FF63DD1E52540977D3B1753D43895F7B0A117(L_28, L_29, /*hidden argument*/NULL); if (L_30) { goto IL_00e3; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_31 = ___baseUtcOffset1; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_32 = V_4; NullCheck(L_32); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_33 = AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline(L_32, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_34 = TimeSpan_op_Addition_m2C916EE6F60BA72329886F1568FE9DD0D8DF0DB7(L_31, L_33, /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_35; memset((&L_35), 0, sizeof(L_35)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_35), ((int32_t)14), 0, 0, /*hidden argument*/NULL); bool L_36 = TimeSpan_op_GreaterThan_mC4CE0AD3057035058479B695ACDC089F3A6EA486(L_34, L_35, /*hidden argument*/NULL); if (!L_36) { goto IL_00ee; } } IL_00e3: { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_37 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14(L_37, _stringLiteral21F20DF4A4C08E5DABA82DB1839C69CA515E1B33, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_RuntimeMethod_var); } IL_00ee: { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_38 = V_1; if (!L_38) { goto IL_0110; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_39 = V_1; NullCheck(L_39); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_40 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_39, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_41 = V_4; NullCheck(L_41); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_42 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_41, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_43 = DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E(L_40, L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_0110; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_44 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14(L_44, _stringLiteral15E66556F3FB947D9C6C37859A45CC4C92C6CAA7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_RuntimeMethod_var); } IL_0110: { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_45 = V_1; if (!L_45) { goto IL_0132; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_46 = V_1; NullCheck(L_46); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_47 = AdjustmentRule_get_DateEnd_m9ECD9D96BFB535E8818CC79B0B261F8E334A722E_inline(L_46, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_48 = V_4; NullCheck(L_48); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_49 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_48, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_50 = DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E(L_47, L_49, /*hidden argument*/NULL); if (!L_50) { goto IL_0132; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_51 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14(L_51, _stringLiteralC2761A6512E7A91307A0DE721A3CA321DC4704D8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_51, TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_RuntimeMethod_var); } IL_0132: { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_52 = V_1; if (!L_52) { goto IL_0154; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_53 = V_1; NullCheck(L_53); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_54 = AdjustmentRule_get_DateEnd_m9ECD9D96BFB535E8818CC79B0B261F8E334A722E_inline(L_53, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_55 = V_4; NullCheck(L_55); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_56 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_55, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_57 = DateTime_op_Equality_m5715465D90806F5305BBA5F690377819C55AF084(L_54, L_56, /*hidden argument*/NULL); if (!L_57) { goto IL_0154; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_58 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14(L_58, _stringLiteral7B40CAEE6DF9BFEF9B5A66F65F70C99ADC496807, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, TimeZoneInfo__ctor_mB0BB74CD1FA6E4E93597A80447A6CE08B8E0E5D5_RuntimeMethod_var); } IL_0154: { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_59 = V_4; V_1 = L_59; int32_t L_60 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_60, (int32_t)1)); } IL_015b: { int32_t L_61 = V_3; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_62 = V_2; NullCheck(L_62); if ((((int32_t)L_61) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_62)->max_length))))))) { goto IL_0095; } } { goto IL_0168; } IL_0166: { V_0 = (bool)0; } IL_0168: { String_t* L_63 = ___id0; __this->set_id_3(L_63); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_64 = ___baseUtcOffset1; __this->set_baseUtcOffset_0(L_64); String_t* L_65 = ___displayName2; String_t* L_66 = L_65; G_B31_0 = L_66; G_B31_1 = __this; if (L_66) { G_B32_0 = L_66; G_B32_1 = __this; goto IL_017d; } } { String_t* L_67 = ___id0; G_B32_0 = L_67; G_B32_1 = G_B31_1; } IL_017d: { NullCheck(G_B32_1); G_B32_1->set_displayName_2(G_B32_0); String_t* L_68 = ___standardDisplayName3; String_t* L_69 = L_68; G_B33_0 = L_69; G_B33_1 = __this; if (L_69) { G_B34_0 = L_69; G_B34_1 = __this; goto IL_018a; } } { String_t* L_70 = ___id0; G_B34_0 = L_70; G_B34_1 = G_B33_1; } IL_018a: { NullCheck(G_B34_1); G_B34_1->set_standardDisplayName_7(G_B34_0); String_t* L_71 = ___daylightDisplayName4; __this->set_daylightDisplayName_1(L_71); bool L_72 = V_0; __this->set_supportsDaylightSavingTime_8(L_72); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_73 = ___adjustmentRules5; __this->set_adjustmentRules_11(L_73); return; } } // System.TimeZoneInfo_AdjustmentRule System.TimeZoneInfo::GetApplicableRule(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * TimeZoneInfo_GetApplicableRule_m960A90264F1FBB60734074D71036FCA304B5F73A (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_GetApplicableRule_m960A90264F1FBB60734074D71036FCA304B5F73A_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0; memset((&V_0), 0, sizeof(V_0)); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_1; memset((&V_1), 0, sizeof(V_1)); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* V_2 = NULL; int32_t V_3 = 0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_4 = NULL; { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___dateTime0; V_0 = L_0; int32_t L_1 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_0035; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_2 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)__this) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_2))) { goto IL_0035; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = DateTime_ToUniversalTime_mA8B74D947E186568C55D9C6F56D59F9A3C7775B1((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_4 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(__this, /*hidden argument*/NULL); V_1 = L_4; int64_t L_5 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_1), /*hidden argument*/NULL); bool L_6 = TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49(L_3, L_5, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), 0, /*hidden argument*/NULL); if (L_6) { goto IL_0062; } } { return (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)NULL; } IL_0035: { int32_t L_7 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_7) == ((uint32_t)1)))) { goto IL_0062; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_8 = TimeZoneInfo_get_Utc_mE10DC8C042D2CE7D3FA9A46ED7035FF93B6502EE(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)__this) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_8))) { goto IL_0062; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9 = V_0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_10 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(__this, /*hidden argument*/NULL); V_1 = L_10; int64_t L_11 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_1), /*hidden argument*/NULL); bool L_12 = TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49(L_9, L_11, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), 0, /*hidden argument*/NULL); if (L_12) { goto IL_0062; } } { return (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)NULL; } IL_0062: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13 = DateTime_get_Date_m9466964BC55564ED7EEC022AB9E50D875707B774((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), /*hidden argument*/NULL); V_0 = L_13; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_14 = __this->get_adjustmentRules_11(); if (!L_14) { goto IL_00af; } } { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_15 = __this->get_adjustmentRules_11(); V_2 = L_15; V_3 = 0; goto IL_00a9; } IL_007d: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_16 = V_2; int32_t L_17 = V_3; NullCheck(L_16); int32_t L_18 = L_17; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); V_4 = L_19; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_20 = V_4; NullCheck(L_20); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_21 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_20, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_22 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_23 = DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E(L_21, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_0093; } } { return (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)NULL; } IL_0093: { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_24 = V_4; NullCheck(L_24); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_25 = AdjustmentRule_get_DateEnd_m9ECD9D96BFB535E8818CC79B0B261F8E334A722E_inline(L_24, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_26 = V_0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_27 = DateTime_op_LessThan_m75DE4F8CC5F5EE392829A9B37C5C98B7FC97061A(L_25, L_26, /*hidden argument*/NULL); if (L_27) { goto IL_00a5; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_28 = V_4; return L_28; } IL_00a5: { int32_t L_29 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); } IL_00a9: { int32_t L_30 = V_3; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_31 = V_2; NullCheck(L_31); if ((((int32_t)L_30) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length))))))) { goto IL_007d; } } IL_00af: { return (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)NULL; } } // System.Boolean System.TimeZoneInfo::TryGetTransitionOffset(System.DateTime,System.TimeSpan&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryGetTransitionOffset_mE81815E31B2FD48D83635AE3FAADF622DDE6B5D6 (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * ___offset1, bool* ___isDst2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_TryGetTransitionOffset_mE81815E31B2FD48D83635AE3FAADF622DDE6B5D6_MetadataUsageId); s_Il2CppMethodInitialized = true; } DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0; memset((&V_0), 0, sizeof(V_0)); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_1 = NULL; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_3; memset((&V_3), 0, sizeof(V_3)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_4; memset((&V_4), 0, sizeof(V_4)); { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_0 = ___offset1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(__this, /*hidden argument*/NULL); *(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_0 = L_1; bool* L_2 = ___isDst2; *((int8_t*)L_2) = (int8_t)0; List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * L_3 = __this->get_transitions_5(); if (L_3) { goto IL_0019; } } { return (bool)0; } IL_0019: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = ___dateTime0; V_0 = L_4; int32_t L_5 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((!(((uint32_t)L_5) == ((uint32_t)2)))) { goto IL_004e; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_6 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); if ((((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)__this) == ((RuntimeObject*)(TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 *)L_6))) { goto IL_004e; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7 = DateTime_ToUniversalTime_mA8B74D947E186568C55D9C6F56D59F9A3C7775B1((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_8 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(__this, /*hidden argument*/NULL); V_2 = L_8; int64_t L_9 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_2), /*hidden argument*/NULL); bool L_10 = TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49(L_7, L_9, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), 1, /*hidden argument*/NULL); if (L_10) { goto IL_004e; } } { return (bool)0; } IL_004e: { int32_t L_11 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateTime0), /*hidden argument*/NULL); if ((((int32_t)L_11) == ((int32_t)1))) { goto IL_0074; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_12 = V_0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_13 = TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(__this, /*hidden argument*/NULL); V_2 = L_13; int64_t L_14 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_2), /*hidden argument*/NULL); bool L_15 = TimeZoneInfo_TryAddTicks_m5A6E29CD177D544C3529D3609AD2AC5C5542CC49(L_12, ((-L_14)), (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), 1, /*hidden argument*/NULL); if (L_15) { goto IL_0074; } } { return (bool)0; } IL_0074: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_16 = V_0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_17 = TimeZoneInfo_GetApplicableRule_m960A90264F1FBB60734074D71036FCA304B5F73A(__this, L_16, /*hidden argument*/NULL); V_1 = L_17; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_18 = V_1; if (!L_18) { goto IL_00d5; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_19 = V_1; NullCheck(L_19); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_20 = AdjustmentRule_get_DaylightTransitionStart_mC89A599FADA4747E5686154DCBD067EEFBB919F6_inline(L_19, /*hidden argument*/NULL); int32_t L_21 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_22 = TimeZoneInfo_TransitionPoint_m5FA051A8EC41B739B1A36720800679E69BF2CFF2(L_20, L_21, /*hidden argument*/NULL); V_3 = L_22; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_23 = V_1; NullCheck(L_23); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_24 = AdjustmentRule_get_DaylightTransitionEnd_m8EE35970D90C7857BEAE165190F5B9ADC8C57860_inline(L_23, /*hidden argument*/NULL); int32_t L_25 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_26 = TimeZoneInfo_TransitionPoint_m5FA051A8EC41B739B1A36720800679E69BF2CFF2(L_24, L_25, /*hidden argument*/NULL); V_4 = L_26; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_27 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_29 = DateTime_op_GreaterThanOrEqual_mEDD57FC8B24FAF4D6AA94CFE6AE190CF359B66B4(L_27, L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_00d5; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_30 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_31 = V_4; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_32 = DateTime_op_LessThanOrEqual_m7131235B927010BD9DB3C93FEB51640286D1107B(L_30, L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_00d5; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * L_33 = ___offset1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_34 = __this->get_baseUtcOffset_0(); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_35 = V_1; NullCheck(L_35); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_36 = AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline(L_35, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_37 = TimeSpan_op_Addition_m2C916EE6F60BA72329886F1568FE9DD0D8DF0DB7(L_34, L_36, /*hidden argument*/NULL); *(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)L_33 = L_37; bool* L_38 = ___isDst2; *((int8_t*)L_38) = (int8_t)1; return (bool)1; } IL_00d5: { return (bool)0; } } // System.DateTime System.TimeZoneInfo::TransitionPoint(System.TimeZoneInfo_TransitionTime,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_TransitionPoint_m5FA051A8EC41B739B1A36720800679E69BF2CFF2 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___transition0, int32_t ___year1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_TransitionPoint_m5FA051A8EC41B739B1A36720800679E69BF2CFF2_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)); { bool L_0 = TransitionTime_get_IsFixedDateRule_mC55143797D34E320F86E4B58A265654C634EB38C_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___transition0), /*hidden argument*/NULL); if (!L_0) { goto IL_0032; } } { int32_t L_1 = ___year1; int32_t L_2 = TransitionTime_get_Month_m06FE288B24621979C4FE9E34D350EBA208CEA267_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___transition0), /*hidden argument*/NULL); int32_t L_3 = TransitionTime_get_Day_m82E3998C57838AB654EEB696600CF6C0F9EB52B0_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___transition0), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4; memset((&L_4), 0, sizeof(L_4)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_4), L_1, L_2, L_3, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = TransitionTime_get_TimeOfDay_mC4F5083CF75296341B498E873B2C026A95C4ADDE_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___transition0), /*hidden argument*/NULL); V_2 = L_5; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_6 = DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7 = DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282(L_4, L_6, /*hidden argument*/NULL); return L_7; } IL_0032: { int32_t L_8 = ___year1; int32_t L_9 = TransitionTime_get_Month_m06FE288B24621979C4FE9E34D350EBA208CEA267_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___transition0), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_10; memset((&L_10), 0, sizeof(L_10)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_10), L_8, L_9, 1, /*hidden argument*/NULL); V_2 = L_10; int32_t L_11 = DateTime_get_DayOfWeek_m556E45050ECDB336B3559BC395081B0C5CBE4891((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); V_0 = L_11; int32_t L_12 = TransitionTime_get_Week_m7708A01103CEADEA75626953931221A1E5CA2F82_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___transition0), /*hidden argument*/NULL); int32_t L_13 = TransitionTime_get_DayOfWeek_m349EE703AD506935676F78DE8438D8C3D5E8C472_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___transition0), /*hidden argument*/NULL); int32_t L_14 = V_0; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)1, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)), (int32_t)7)))), (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)), (int32_t)7))%(int32_t)7)))); int32_t L_15 = V_1; int32_t L_16 = ___year1; int32_t L_17 = TransitionTime_get_Month_m06FE288B24621979C4FE9E34D350EBA208CEA267_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___transition0), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); int32_t L_18 = DateTime_DaysInMonth_mE979D12858E0D6CC14576D283B5AB66AA53B9F90(L_16, L_17, /*hidden argument*/NULL); if ((((int32_t)L_15) <= ((int32_t)L_18))) { goto IL_0079; } } { int32_t L_19 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)7)); } IL_0079: { int32_t L_20 = V_1; if ((((int32_t)L_20) >= ((int32_t)1))) { goto IL_0081; } } { int32_t L_21 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)7)); } IL_0081: { int32_t L_22 = ___year1; int32_t L_23 = TransitionTime_get_Month_m06FE288B24621979C4FE9E34D350EBA208CEA267_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___transition0), /*hidden argument*/NULL); int32_t L_24 = V_1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_25; memset((&L_25), 0, sizeof(L_25)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_25), L_22, L_23, L_24, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_26 = TransitionTime_get_TimeOfDay_mC4F5083CF75296341B498E873B2C026A95C4ADDE_inline((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___transition0), /*hidden argument*/NULL); V_2 = L_26; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_27 = DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_28 = DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282(L_25, L_27, /*hidden argument*/NULL); return L_28; } } // System.TimeZoneInfo_AdjustmentRule[] System.TimeZoneInfo::ValidateRules(System.Collections.Generic.List`1<System.TimeZoneInfo_AdjustmentRule>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* TimeZoneInfo_ValidateRules_mB2C193EB81FF713EED1541D27D08BAD59B29E311 (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * ___adjustmentRules0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ValidateRules_mB2C193EB81FF713EED1541D27D08BAD59B29E311_MetadataUsageId); s_Il2CppMethodInitialized = true; } AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_0 = NULL; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* V_1 = NULL; int32_t V_2 = 0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * V_3 = NULL; { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_0 = ___adjustmentRules0; if (!L_0) { goto IL_000b; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_1 = ___adjustmentRules0; NullCheck(L_1); int32_t L_2 = List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_inline(L_1, /*hidden argument*/List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_RuntimeMethod_var); if (L_2) { goto IL_000d; } } IL_000b: { return (AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD*)NULL; } IL_000d: { V_0 = (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)NULL; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_3 = ___adjustmentRules0; NullCheck(L_3); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_4 = List_1_ToArray_m803235EC510CCE1CF53E7D6FB952A83E01154DE1(L_3, /*hidden argument*/List_1_ToArray_m803235EC510CCE1CF53E7D6FB952A83E01154DE1_RuntimeMethod_var); V_1 = L_4; V_2 = 0; goto IL_0042; } IL_001a: { AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_5 = V_1; int32_t L_6 = V_2; NullCheck(L_5); int32_t L_7 = L_6; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_3 = L_8; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_9 = V_0; if (!L_9) { goto IL_003c; } } { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_10 = V_0; NullCheck(L_10); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_11 = AdjustmentRule_get_DateEnd_m9ECD9D96BFB535E8818CC79B0B261F8E334A722E_inline(L_10, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_12 = V_3; NullCheck(L_12); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_13 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_12, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_14 = DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E(L_11, L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_003c; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_15 = ___adjustmentRules0; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_16 = V_3; NullCheck(L_15); List_1_Remove_mF3B9CA9E20C7542FAAD6C966B548492F2C7CD5DD(L_15, L_16, /*hidden argument*/List_1_Remove_mF3B9CA9E20C7542FAAD6C966B548492F2C7CD5DD_RuntimeMethod_var); } IL_003c: { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_17 = V_3; V_0 = L_17; int32_t L_18 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_0042: { int32_t L_19 = V_2; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_20 = V_1; NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))))))) { goto IL_001a; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_21 = ___adjustmentRules0; NullCheck(L_21); AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_22 = List_1_ToArray_m803235EC510CCE1CF53E7D6FB952A83E01154DE1(L_21, /*hidden argument*/List_1_ToArray_m803235EC510CCE1CF53E7D6FB952A83E01154DE1_RuntimeMethod_var); return L_22; } } // System.TimeZoneInfo System.TimeZoneInfo::BuildFromStream(System.String,System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_BuildFromStream_m03149B20E6AA12F61EFA3B7745D3DC05DBC65418 (String_t* ___id0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_BuildFromStream_m03149B20E6AA12F61EFA3B7745D3DC05DBC65418_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; int32_t V_1 = 0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_2 = NULL; Exception_t * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16384)); V_0 = L_0; Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_1 = ___stream1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_0; NullCheck(L_1); int32_t L_3 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(21 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_1, L_2, 0, ((int32_t)16384)); V_1 = L_3; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0; int32_t L_5 = V_1; bool L_6 = TimeZoneInfo_ValidTZFile_mDBAA295AA83624116C0BA67C78FDD8521866A8ED(L_4, L_5, /*hidden argument*/NULL); if (L_6) { goto IL_002d; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_7 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m8FFF6B288E617CAA9269D849618C289FC589BE14(L_7, _stringLiteral5BBAA9B8E272D7D609370B56FB4A1DC199FB1DA5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, TimeZoneInfo_BuildFromStream_m03149B20E6AA12F61EFA3B7745D3DC05DBC65418_RuntimeMethod_var); } IL_002d: { } IL_002e: try { // begin try (depth: 1) String_t* L_8 = ___id0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0; int32_t L_10 = V_1; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_11 = TimeZoneInfo_ParseTZBuffer_mB31B17720432692878EC43379CCF629C51F0AC96(L_8, L_9, L_10, /*hidden argument*/NULL); V_2 = L_11; goto IL_0049; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0039; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_003c; throw e; } CATCH_0039: { // begin catch(System.InvalidTimeZoneException) IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, TimeZoneInfo_BuildFromStream_m03149B20E6AA12F61EFA3B7745D3DC05DBC65418_RuntimeMethod_var); } // end catch (depth: 1) CATCH_003c: { // begin catch(System.Exception) V_3 = ((Exception_t *)__exception_local); Exception_t * L_12 = V_3; InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_13 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m45B9443C467C8D8353DBB6F6E7A6E4E7F96CF591(L_13, _stringLiteral88EE3CEA20D96E9852D213E90BDCE53DB921ADBB, L_12, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, TimeZoneInfo_BuildFromStream_m03149B20E6AA12F61EFA3B7745D3DC05DBC65418_RuntimeMethod_var); } // end catch (depth: 1) IL_0049: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_14 = V_2; return L_14; } } // System.Boolean System.TimeZoneInfo::ValidTZFile(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_ValidTZFile_mDBAA295AA83624116C0BA67C78FDD8521866A8ED (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___length1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ValidTZFile_mDBAA295AA83624116C0BA67C78FDD8521866A8ED_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; int32_t V_1 = 0; { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL); V_0 = L_0; V_1 = 0; goto IL_0018; } IL_000a: { StringBuilder_t * L_1 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer0; int32_t L_3 = V_1; NullCheck(L_2); int32_t L_4 = L_3; uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); NullCheck(L_1); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_1, L_5, /*hidden argument*/NULL); int32_t L_6 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0018: { int32_t L_7 = V_1; if ((((int32_t)L_7) < ((int32_t)4))) { goto IL_000a; } } { StringBuilder_t * L_8 = V_0; NullCheck(L_8); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_8); bool L_10 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_9, _stringLiteralC24595E6A7BC6D5DB68BC6759DD5BBA5D834B6DB, /*hidden argument*/NULL); if (!L_10) { goto IL_0030; } } { return (bool)0; } IL_0030: { int32_t L_11 = ___length1; if ((((int32_t)L_11) < ((int32_t)((int32_t)16384)))) { goto IL_003a; } } { return (bool)0; } IL_003a: { return (bool)1; } } // System.Int32 System.TimeZoneInfo::SwapInt32(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_SwapInt32_mA8FE2D4B2E2BF9CD763D600F8CE449DA34AE0BFE (int32_t ___i0, const RuntimeMethod* method) { { int32_t L_0 = ___i0; int32_t L_1 = ___i0; int32_t L_2 = ___i0; int32_t L_3 = ___i0; return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_0>>(int32_t)((int32_t)24)))&(int32_t)((int32_t)255)))|(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_1>>(int32_t)8))&(int32_t)((int32_t)65280)))))|(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_2<<(int32_t)8))&(int32_t)((int32_t)16711680)))))|(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)255)))<<(int32_t)((int32_t)24))))); } } // System.Int32 System.TimeZoneInfo::ReadBigEndianInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___start1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0; int32_t L_1 = ___start1; IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); int32_t L_2 = BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391(L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; bool L_3 = ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->get_IsLittleEndian_0(); if (L_3) { goto IL_0011; } } { int32_t L_4 = V_0; return L_4; } IL_0011: { int32_t L_5 = V_0; int32_t L_6 = TimeZoneInfo_SwapInt32_mA8FE2D4B2E2BF9CD763D600F8CE449DA34AE0BFE(L_5, /*hidden argument*/NULL); return L_6; } } // System.TimeZoneInfo System.TimeZoneInfo::ParseTZBuffer(System.String,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * TimeZoneInfo_ParseTZBuffer_mB31B17720432692878EC43379CCF629C51F0AC96 (String_t* ___id0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ParseTZBuffer_mB31B17720432692878EC43379CCF629C51F0AC96_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * V_6 = NULL; Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * V_7 = NULL; List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * V_8 = NULL; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_9; memset((&V_9), 0, sizeof(V_9)); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_10; memset((&V_10), 0, sizeof(V_10)); String_t* V_11 = NULL; String_t* V_12 = NULL; bool V_13 = false; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_14; memset((&V_14), 0, sizeof(V_14)); List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * V_15 = NULL; bool V_16 = false; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * V_17 = NULL; int32_t V_18 = 0; KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D V_19; memset((&V_19), 0, sizeof(V_19)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_20; memset((&V_20), 0, sizeof(V_20)); TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * V_21 = NULL; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_22; memset((&V_22), 0, sizeof(V_22)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_23; memset((&V_23), 0, sizeof(V_23)); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_24; memset((&V_24), 0, sizeof(V_24)); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_25; memset((&V_25), 0, sizeof(V_25)); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_26; memset((&V_26), 0, sizeof(V_26)); TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * V_27 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer1; int32_t L_1 = TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA(L_0, ((int32_t)20), /*hidden argument*/NULL); V_0 = L_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer1; int32_t L_3 = TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA(L_2, ((int32_t)24), /*hidden argument*/NULL); V_1 = L_3; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___buffer1; int32_t L_5 = TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA(L_4, ((int32_t)28), /*hidden argument*/NULL); V_2 = L_5; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___buffer1; int32_t L_7 = TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA(L_6, ((int32_t)32), /*hidden argument*/NULL); V_3 = L_7; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___buffer1; int32_t L_9 = TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA(L_8, ((int32_t)36), /*hidden argument*/NULL); V_4 = L_9; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___buffer1; int32_t L_11 = TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA(L_10, ((int32_t)40), /*hidden argument*/NULL); V_5 = L_11; int32_t L_12 = ___length2; int32_t L_13 = V_3; int32_t L_14 = V_4; int32_t L_15 = V_5; int32_t L_16 = V_2; int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_12) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)44), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_13, (int32_t)5)))), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_14, (int32_t)6)))), (int32_t)L_15)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_16, (int32_t)8)))), (int32_t)L_17)), (int32_t)L_18))))) { goto IL_0057; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_19 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m565DFEFCEFD9DB3E307E643A059B9AC57B2B57DD(L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, TimeZoneInfo_ParseTZBuffer_mB31B17720432692878EC43379CCF629C51F0AC96_RuntimeMethod_var); } IL_0057: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = ___buffer1; int32_t L_21 = V_3; int32_t L_22 = V_3; int32_t L_23 = V_4; int32_t L_24 = V_5; Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_25 = TimeZoneInfo_ParseAbbreviations_mF9E2B864DA8DDDA370DD9D43D5A7E3D8B7FBA76A(L_20, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)44), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)4, (int32_t)L_21)))), (int32_t)L_22)), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)6, (int32_t)L_23)))), L_24, /*hidden argument*/NULL); V_6 = L_25; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = ___buffer1; int32_t L_27 = V_3; int32_t L_28 = V_3; int32_t L_29 = V_4; Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_30 = V_6; Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * L_31 = TimeZoneInfo_ParseTimesTypes_mDE8026755AF2207FFD76312DB22A472EE850BBA6(L_26, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)44), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)4, (int32_t)L_27)))), (int32_t)L_28)), L_29, L_30, /*hidden argument*/NULL); V_7 = L_31; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = ___buffer1; int32_t L_33 = V_3; Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * L_34 = V_7; List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * L_35 = TimeZoneInfo_ParseTransitions_mDF9E7750AF2BFA9992708A02AE9429EFC4CF00FE(L_32, ((int32_t)44), L_33, L_34, /*hidden argument*/NULL); V_8 = L_35; Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * L_36 = V_7; NullCheck(L_36); int32_t L_37 = Dictionary_2_get_Count_mE31B0BF70F2E5AA680638E8565B00286E26C5548(L_36, /*hidden argument*/Dictionary_2_get_Count_mE31B0BF70F2E5AA680638E8565B00286E26C5548_RuntimeMethod_var); if (L_37) { goto IL_009e; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_38 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m565DFEFCEFD9DB3E307E643A059B9AC57B2B57DD(L_38, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, TimeZoneInfo_ParseTZBuffer_mB31B17720432692878EC43379CCF629C51F0AC96_RuntimeMethod_var); } IL_009e: { Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * L_39 = V_7; NullCheck(L_39); int32_t L_40 = Dictionary_2_get_Count_mE31B0BF70F2E5AA680638E8565B00286E26C5548(L_39, /*hidden argument*/Dictionary_2_get_Count_mE31B0BF70F2E5AA680638E8565B00286E26C5548_RuntimeMethod_var); if ((!(((uint32_t)L_40) == ((uint32_t)1)))) { goto IL_00bd; } } { Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * L_41 = V_7; NullCheck(L_41); TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_42 = Dictionary_2_get_Item_m0F0789D0F81BD4D8EAFB77487B94A9CEBD730F83(L_41, 0, /*hidden argument*/Dictionary_2_get_Item_m0F0789D0F81BD4D8EAFB77487B94A9CEBD730F83_RuntimeMethod_var); NullCheck(L_42); bool L_43 = L_42->get_IsDst_1(); if (!L_43) { goto IL_00bd; } } { InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 * L_44 = (InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25 *)il2cpp_codegen_object_new(InvalidTimeZoneException_tA035F4C48B9BE56165F6FD6526A3F7384CC78C25_il2cpp_TypeInfo_var); InvalidTimeZoneException__ctor_m565DFEFCEFD9DB3E307E643A059B9AC57B2B57DD(L_44, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, TimeZoneInfo_ParseTZBuffer_mB31B17720432692878EC43379CCF629C51F0AC96_RuntimeMethod_var); } IL_00bd: { TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_9), (((int64_t)((int64_t)0))), /*hidden argument*/NULL); TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_10), (((int64_t)((int64_t)0))), /*hidden argument*/NULL); V_11 = (String_t*)NULL; V_12 = (String_t*)NULL; V_13 = (bool)0; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_45 = ((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))->get_MinValue_31(); V_14 = L_45; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_46 = (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *)il2cpp_codegen_object_new(List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E_il2cpp_TypeInfo_var); List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708(L_46, /*hidden argument*/List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708_RuntimeMethod_var); V_15 = L_46; V_16 = (bool)0; V_18 = 0; goto IL_0334; } IL_00f1: { List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * L_47 = V_8; int32_t L_48 = V_18; NullCheck(L_47); KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D L_49 = List_1_get_Item_m8A44B7C37BB53CF3C22046AE0A17B58B0925A7A1_inline(L_47, L_48, /*hidden argument*/List_1_get_Item_m8A44B7C37BB53CF3C22046AE0A17B58B0925A7A1_RuntimeMethod_var); V_19 = L_49; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_50 = KeyValuePair_2_get_Key_m86B2C62B2D71E058541AD44447FFE99B23E906AE_inline((KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D *)(&V_19), /*hidden argument*/KeyValuePair_2_get_Key_m86B2C62B2D71E058541AD44447FFE99B23E906AE_RuntimeMethod_var); V_20 = L_50; TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_51 = KeyValuePair_2_get_Value_m53E2812960EF279EE483985E7F647EA7958B61C5_inline((KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D *)(&V_19), /*hidden argument*/KeyValuePair_2_get_Value_m53E2812960EF279EE483985E7F647EA7958B61C5_RuntimeMethod_var); V_21 = L_51; TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_52 = V_21; NullCheck(L_52); bool L_53 = L_52->get_IsDst_1(); if (L_53) { goto IL_02b4; } } { String_t* L_54 = V_11; TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_55 = V_21; NullCheck(L_55); String_t* L_56 = L_55->get_Name_2(); bool L_57 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_54, L_56, /*hidden argument*/NULL); if (!L_57) { goto IL_0133; } } { TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_58 = V_21; NullCheck(L_58); String_t* L_59 = L_58->get_Name_2(); V_11 = L_59; } IL_0133: { double L_60 = TimeSpan_get_TotalSeconds_m0F8F314166E6D1F9D36F32EB1272451EDE56B4EA((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_9), /*hidden argument*/NULL); TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_61 = V_21; NullCheck(L_61); int32_t L_62 = L_61->get_Offset_0(); if ((((double)L_60) == ((double)(((double)((double)L_62)))))) { goto IL_016b; } } { TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_63 = V_21; NullCheck(L_63); int32_t L_64 = L_63->get_Offset_0(); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_9), 0, 0, L_64, /*hidden argument*/NULL); List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_65 = V_15; NullCheck(L_65); int32_t L_66 = List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_inline(L_65, /*hidden argument*/List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_RuntimeMethod_var); if ((((int32_t)L_66) <= ((int32_t)0))) { goto IL_0161; } } { V_16 = (bool)1; } IL_0161: { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_67 = (List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E *)il2cpp_codegen_object_new(List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E_il2cpp_TypeInfo_var); List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708(L_67, /*hidden argument*/List_1__ctor_m26B5CF8B504B7BD2ACF6D10E2212EB312DEAD708_RuntimeMethod_var); V_15 = L_67; V_13 = (bool)0; } IL_016b: { bool L_68 = V_13; if (!L_68) { goto IL_02af; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_69 = V_14; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_70 = V_9; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_71 = DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282(L_69, L_70, /*hidden argument*/NULL); V_14 = L_71; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_72 = V_20; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_73 = V_9; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_74 = DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282(L_72, L_73, /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_75 = V_10; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_76 = DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282(L_74, L_75, /*hidden argument*/NULL); V_22 = L_76; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_77 = DateTime_get_Date_m9466964BC55564ED7EEC022AB9E50D875707B774((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_22), /*hidden argument*/NULL); int32_t L_78 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_22), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_79; memset((&L_79), 0, sizeof(L_79)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_79), L_78, 1, 1, /*hidden argument*/NULL); bool L_80 = DateTime_op_Equality_m5715465D90806F5305BBA5F690377819C55AF084(L_77, L_79, /*hidden argument*/NULL); if (!L_80) { goto IL_01cd; } } { int32_t L_81 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_22), /*hidden argument*/NULL); int32_t L_82 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_14), /*hidden argument*/NULL); if ((((int32_t)L_81) <= ((int32_t)L_82))) { goto IL_01cd; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_83 = V_22; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_84; memset((&L_84), 0, sizeof(L_84)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_84), ((int32_t)24), 0, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_85 = DateTime_op_Subtraction_m679BBE02927C8538BBDD10A514E655568246830B(L_83, L_84, /*hidden argument*/NULL); V_22 = L_85; } IL_01cd: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_86 = DateTime_AddYears_m4D66AFB61758D852CEEFE29D103C88106C6847A2((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_14), 1, /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_87 = V_22; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_88 = DateTime_op_LessThan_m75DE4F8CC5F5EE392829A9B37C5C98B7FC97061A(L_86, L_87, /*hidden argument*/NULL); if (!L_88) { goto IL_01e1; } } { V_16 = (bool)1; } IL_01e1: { int32_t L_89 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_14), /*hidden argument*/NULL); if ((((int32_t)L_89) >= ((int32_t)7))) { goto IL_01fd; } } { int32_t L_90 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_14), /*hidden argument*/NULL); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_23), L_90, 1, 1, /*hidden argument*/NULL); goto IL_020d; } IL_01fd: { int32_t L_91 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_14), /*hidden argument*/NULL); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_23), L_91, 7, 1, /*hidden argument*/NULL); } IL_020d: { int32_t L_92 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_22), /*hidden argument*/NULL); if ((((int32_t)L_92) < ((int32_t)7))) { goto IL_022b; } } { int32_t L_93 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_22), /*hidden argument*/NULL); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_24), L_93, ((int32_t)12), ((int32_t)31), /*hidden argument*/NULL); goto IL_023c; } IL_022b: { int32_t L_94 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_22), /*hidden argument*/NULL); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_24), L_94, 6, ((int32_t)30), /*hidden argument*/NULL); } IL_023c: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_95; memset((&L_95), 0, sizeof(L_95)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_95), 1, 1, 1, /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_96 = DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_14), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_97 = DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282(L_95, L_96, /*hidden argument*/NULL); int32_t L_98 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_14), /*hidden argument*/NULL); int32_t L_99 = DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_14), /*hidden argument*/NULL); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_100 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_97, L_98, L_99, /*hidden argument*/NULL); V_25 = L_100; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_101; memset((&L_101), 0, sizeof(L_101)); DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((&L_101), 1, 1, 1, /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_102 = DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_22), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_103 = DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282(L_101, L_102, /*hidden argument*/NULL); int32_t L_104 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_22), /*hidden argument*/NULL); int32_t L_105 = DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_22), /*hidden argument*/NULL); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_106 = TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26(L_103, L_104, L_105, /*hidden argument*/NULL); V_26 = L_106; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_107 = V_25; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_108 = V_26; bool L_109 = TransitionTime_op_Inequality_m8E95819760E1035F55168B42B474A0F401BDEA58(L_107, L_108, /*hidden argument*/NULL); if (!L_109) { goto IL_02af; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_110 = V_15; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_111 = V_23; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_112 = V_24; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_113 = V_10; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_114 = V_25; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_115 = V_26; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_116 = AdjustmentRule_CreateAdjustmentRule_m02250B76565B1F45DA0F87EA2630579828049935(L_111, L_112, L_113, L_114, L_115, /*hidden argument*/NULL); NullCheck(L_110); List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608(L_110, L_116, /*hidden argument*/List_1_Add_m69410B80C654B698D46CAF64A1B602D371ECB608_RuntimeMethod_var); } IL_02af: { V_13 = (bool)0; goto IL_032e; } IL_02b4: { String_t* L_117 = V_12; TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_118 = V_21; NullCheck(L_118); String_t* L_119 = L_118->get_Name_2(); bool L_120 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_117, L_119, /*hidden argument*/NULL); if (!L_120) { goto IL_02cd; } } { TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_121 = V_21; NullCheck(L_121); String_t* L_122 = L_121->get_Name_2(); V_12 = L_122; } IL_02cd: { double L_123 = TimeSpan_get_TotalSeconds_m0F8F314166E6D1F9D36F32EB1272451EDE56B4EA((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_10), /*hidden argument*/NULL); TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_124 = V_21; NullCheck(L_124); int32_t L_125 = L_124->get_Offset_0(); double L_126 = TimeSpan_get_TotalSeconds_m0F8F314166E6D1F9D36F32EB1272451EDE56B4EA((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_9), /*hidden argument*/NULL); if ((((double)L_123) == ((double)((double)il2cpp_codegen_subtract((double)(((double)((double)L_125))), (double)L_126))))) { goto IL_0327; } } { TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_127 = V_21; NullCheck(L_127); int32_t L_128 = L_127->get_Offset_0(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_129; memset((&L_129), 0, sizeof(L_129)); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((&L_129), 0, 0, L_128, /*hidden argument*/NULL); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_130 = V_9; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_131 = TimeSpan_op_Subtraction_m5978CE5FCEB3D59AF0BC52AF838BFE3237AE8B23(L_129, L_130, /*hidden argument*/NULL); V_10 = L_131; int64_t L_132 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_10), /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_132%(int64_t)(((int64_t)((int64_t)((int32_t)600000000))))))) { goto IL_0327; } } { double L_133 = TimeSpan_get_TotalMinutes_m41B6248DF2E4E6CAFC4A1B3C7ECCD9A10CC16C22((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_10), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_134 = TimeSpan_FromMinutes_m3038BAC5BAB62262567D7BB3AE6DD845FC985BC2((((double)((double)(((int64_t)((int64_t)((double)il2cpp_codegen_add((double)L_133, (double)(0.5))))))))), /*hidden argument*/NULL); V_10 = L_134; } IL_0327: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_135 = V_20; V_14 = L_135; V_13 = (bool)1; } IL_032e: { int32_t L_136 = V_18; V_18 = ((int32_t)il2cpp_codegen_add((int32_t)L_136, (int32_t)1)); } IL_0334: { int32_t L_137 = V_18; List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * L_138 = V_8; NullCheck(L_138); int32_t L_139 = List_1_get_Count_m8D9BFB4AA79DACCB93AA6EF7021A01BA086F8B0F_inline(L_138, /*hidden argument*/List_1_get_Count_m8D9BFB4AA79DACCB93AA6EF7021A01BA086F8B0F_RuntimeMethod_var); if ((((int32_t)L_137) < ((int32_t)L_139))) { goto IL_00f1; } } { List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_140 = V_15; NullCheck(L_140); int32_t L_141 = List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_inline(L_140, /*hidden argument*/List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_RuntimeMethod_var); if (L_141) { goto IL_0385; } } { bool L_142 = V_16; if (L_142) { goto IL_0385; } } { String_t* L_143 = V_11; if (L_143) { goto IL_0376; } } { Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * L_144 = V_7; NullCheck(L_144); TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_145 = Dictionary_2_get_Item_m0F0789D0F81BD4D8EAFB77487B94A9CEBD730F83(L_144, 0, /*hidden argument*/Dictionary_2_get_Item_m0F0789D0F81BD4D8EAFB77487B94A9CEBD730F83_RuntimeMethod_var); V_27 = L_145; TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_146 = V_27; NullCheck(L_146); String_t* L_147 = L_146->get_Name_2(); V_11 = L_147; TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_148 = V_27; NullCheck(L_148); int32_t L_149 = L_148->get_Offset_0(); TimeSpan__ctor_m44268277AFF84DEF6CA3442907CE8116A982FB87((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_9), 0, 0, L_149, /*hidden argument*/NULL); } IL_0376: { String_t* L_150 = ___id0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_151 = V_9; String_t* L_152 = ___id0; String_t* L_153 = V_11; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_154 = TimeZoneInfo_CreateCustomTimeZone_mDFF720C53476F656C276D9E4067367669ED433D5(L_150, L_151, L_152, L_153, /*hidden argument*/NULL); V_17 = L_154; goto IL_039b; } IL_0385: { String_t* L_155 = ___id0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_156 = V_9; String_t* L_157 = ___id0; String_t* L_158 = V_11; String_t* L_159 = V_12; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_160 = V_15; AdjustmentRuleU5BU5D_t1106C3E56412DC2C8D9B745150D35E342A85D8AD* L_161 = TimeZoneInfo_ValidateRules_mB2C193EB81FF713EED1541D27D08BAD59B29E311(L_160, /*hidden argument*/NULL); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_162 = TimeZoneInfo_CreateCustomTimeZone_m5927EE8D4214E3F8317098CFB563D431E93C3E48(L_155, L_156, L_157, L_158, L_159, L_161, /*hidden argument*/NULL); V_17 = L_162; } IL_039b: { bool L_163 = V_16; if (!L_163) { goto IL_03b2; } } { List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * L_164 = V_8; NullCheck(L_164); int32_t L_165 = List_1_get_Count_m8D9BFB4AA79DACCB93AA6EF7021A01BA086F8B0F_inline(L_164, /*hidden argument*/List_1_get_Count_m8D9BFB4AA79DACCB93AA6EF7021A01BA086F8B0F_RuntimeMethod_var); if ((((int32_t)L_165) <= ((int32_t)0))) { goto IL_03b2; } } { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_166 = V_17; List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * L_167 = V_8; NullCheck(L_166); L_166->set_transitions_5(L_167); } IL_03b2: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_168 = V_17; List_1_tD80A7DE15931C50562C52145C2DDFA2CA00BEC9E * L_169 = V_15; NullCheck(L_169); int32_t L_170 = List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_inline(L_169, /*hidden argument*/List_1_get_Count_m63875C2DAD7BE984D4CC6B0603AA8DFE827C5461_RuntimeMethod_var); NullCheck(L_168); L_168->set_supportsDaylightSavingTime_8((bool)((((int32_t)L_170) > ((int32_t)0))? 1 : 0)); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_171 = V_17; return L_171; } } // System.Collections.Generic.Dictionary`2<System.Int32,System.String> System.TimeZoneInfo::ParseAbbreviations(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * TimeZoneInfo_ParseAbbreviations_mF9E2B864DA8DDDA370DD9D43D5A7E3D8B7FBA76A (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ParseAbbreviations_mF9E2B864DA8DDDA370DD9D43D5A7E3D8B7FBA76A_MetadataUsageId); s_Il2CppMethodInitialized = true; } Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * V_0 = NULL; int32_t V_1 = 0; StringBuilder_t * V_2 = NULL; int32_t V_3 = 0; Il2CppChar V_4 = 0x0; int32_t V_5 = 0; { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_0 = (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *)il2cpp_codegen_object_new(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var); Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C(L_0, /*hidden argument*/Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var); V_0 = L_0; V_1 = 0; StringBuilder_t * L_1 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_1, /*hidden argument*/NULL); V_2 = L_1; V_3 = 0; goto IL_0073; } IL_0012: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer0; int32_t L_3 = ___index1; int32_t L_4 = V_3; NullCheck(L_2); int32_t L_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)); uint8_t L_6 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_4 = L_6; Il2CppChar L_7 = V_4; if (!L_7) { goto IL_0028; } } { StringBuilder_t * L_8 = V_2; Il2CppChar L_9 = V_4; NullCheck(L_8); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_8, L_9, /*hidden argument*/NULL); goto IL_006f; } IL_0028: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_10 = V_0; int32_t L_11 = V_1; StringBuilder_t * L_12 = V_2; NullCheck(L_12); String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_12); NullCheck(L_10); Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_10, L_11, L_13, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var); V_5 = 1; goto IL_005b; } IL_003a: { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_14 = V_0; int32_t L_15 = V_1; int32_t L_16 = V_5; StringBuilder_t * L_17 = V_2; int32_t L_18 = V_5; StringBuilder_t * L_19 = V_2; NullCheck(L_19); int32_t L_20 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_19, /*hidden argument*/NULL); int32_t L_21 = V_5; NullCheck(L_17); String_t* L_22 = StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6(L_17, L_18, ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21)), /*hidden argument*/NULL); NullCheck(L_14); Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_14, ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16)), L_22, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var); int32_t L_23 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_005b: { int32_t L_24 = V_5; StringBuilder_t * L_25 = V_2; NullCheck(L_25); int32_t L_26 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_25, /*hidden argument*/NULL); if ((((int32_t)L_24) <= ((int32_t)L_26))) { goto IL_003a; } } { int32_t L_27 = V_3; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); StringBuilder_t * L_28 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_28, /*hidden argument*/NULL); V_2 = L_28; } IL_006f: { int32_t L_29 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); } IL_0073: { int32_t L_30 = V_3; int32_t L_31 = ___count2; if ((((int32_t)L_30) < ((int32_t)L_31))) { goto IL_0012; } } { Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_32 = V_0; return L_32; } } // System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType> System.TimeZoneInfo::ParseTimesTypes(System.Byte[],System.Int32,System.Int32,System.Collections.Generic.Dictionary`2<System.Int32,System.String>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * TimeZoneInfo_ParseTimesTypes_mDE8026755AF2207FFD76312DB22A472EE850BBA6 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___index1, int32_t ___count2, Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * ___abbreviations3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ParseTimesTypes_mDE8026755AF2207FFD76312DB22A472EE850BBA6_MetadataUsageId); s_Il2CppMethodInitialized = true; } Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; uint8_t V_3 = 0x0; uint8_t V_4 = 0x0; { int32_t L_0 = ___count2; Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * L_1 = (Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 *)il2cpp_codegen_object_new(Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2D8C7B37F04BBE07E0D052A019C914E9AE6815D8(L_1, L_0, /*hidden argument*/Dictionary_2__ctor_m2D8C7B37F04BBE07E0D052A019C914E9AE6815D8_RuntimeMethod_var); V_0 = L_1; V_1 = 0; goto IL_0051; } IL_000b: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer0; int32_t L_3 = ___index1; int32_t L_4 = V_1; int32_t L_5 = TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA(L_2, ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)6, (int32_t)L_4)))), /*hidden argument*/NULL); V_2 = L_5; int32_t L_6 = V_2; V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)L_6/(int32_t)((int32_t)60))), (int32_t)((int32_t)60))); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___buffer0; int32_t L_8 = ___index1; int32_t L_9 = V_1; NullCheck(L_7); int32_t L_10 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)6, (int32_t)L_9)))), (int32_t)4)); uint8_t L_11 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_3 = L_11; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___buffer0; int32_t L_13 = ___index1; int32_t L_14 = V_1; NullCheck(L_12); int32_t L_15 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)6, (int32_t)L_14)))), (int32_t)5)); uint8_t L_16 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); V_4 = L_16; Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * L_17 = V_0; int32_t L_18 = V_1; int32_t L_19 = V_2; uint8_t L_20 = V_3; Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_21 = ___abbreviations3; uint8_t L_22 = V_4; NullCheck(L_21); String_t* L_23 = Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906(L_21, L_22, /*hidden argument*/Dictionary_2_get_Item_m832206501573309C2C9C1E4F96AAC39AACE24906_RuntimeMethod_var); TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_24 = (TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 *)il2cpp_codegen_object_new(TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9_il2cpp_TypeInfo_var); TimeType__ctor_m28FA06EC6A851C81414A6435BE25D1FD494FFE03(L_24, L_19, (bool)((!(((uint32_t)L_20) <= ((uint32_t)0)))? 1 : 0), L_23, /*hidden argument*/NULL); NullCheck(L_17); Dictionary_2_Add_m1CF588B67718D0CF03E628AEB7A822E58F1F5517(L_17, L_18, L_24, /*hidden argument*/Dictionary_2_Add_m1CF588B67718D0CF03E628AEB7A822E58F1F5517_RuntimeMethod_var); int32_t L_25 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_0051: { int32_t L_26 = V_1; int32_t L_27 = ___count2; if ((((int32_t)L_26) < ((int32_t)L_27))) { goto IL_000b; } } { Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * L_28 = V_0; return L_28; } } // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>> System.TimeZoneInfo::ParseTransitions(System.Byte[],System.Int32,System.Int32,System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * TimeZoneInfo_ParseTransitions_mDF9E7750AF2BFA9992708A02AE9429EFC4CF00FE (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___index1, int32_t ___count2, Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * ___time_types3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo_ParseTransitions_mDF9E7750AF2BFA9992708A02AE9429EFC4CF00FE_MetadataUsageId); s_Il2CppMethodInitialized = true; } List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * V_0 = NULL; int32_t V_1 = 0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_2; memset((&V_2), 0, sizeof(V_2)); uint8_t V_3 = 0x0; { int32_t L_0 = ___count2; List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * L_1 = (List_1_tD2FC74CFEE011F74F31183756A690154468817E9 *)il2cpp_codegen_object_new(List_1_tD2FC74CFEE011F74F31183756A690154468817E9_il2cpp_TypeInfo_var); List_1__ctor_mC454D22A181DBFE033123BA60EB7503279A2E624(L_1, L_0, /*hidden argument*/List_1__ctor_mC454D22A181DBFE033123BA60EB7503279A2E624_RuntimeMethod_var); V_0 = L_1; V_1 = 0; goto IL_003e; } IL_000b: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer0; int32_t L_3 = ___index1; int32_t L_4 = V_1; int32_t L_5 = TimeZoneInfo_ReadBigEndianInt32_m0AAB53B9311708F42ACA7E9270EE71D25B3CE9DA(L_2, ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)4, (int32_t)L_4)))), /*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = TimeZoneInfo_DateTimeFromUnixTime_m2EB7BE33769CB44A09ED1C1389AB3E8AF707A83D((((int64_t)((int64_t)L_5))), /*hidden argument*/NULL); V_2 = L_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___buffer0; int32_t L_8 = ___index1; int32_t L_9 = ___count2; int32_t L_10 = V_1; NullCheck(L_7); int32_t L_11 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)4, (int32_t)L_9)))), (int32_t)L_10)); uint8_t L_12 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); V_3 = L_12; List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * L_13 = V_0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_14 = V_2; Dictionary_2_tF49FE2F5FE86CCFDD59492E9D46254E0CCB5EEC2 * L_15 = ___time_types3; uint8_t L_16 = V_3; NullCheck(L_15); TimeType_t1E0366D2FDDE13B93F6DFD1A2FB8645B76E9DDA9 * L_17 = Dictionary_2_get_Item_m0F0789D0F81BD4D8EAFB77487B94A9CEBD730F83(L_15, L_16, /*hidden argument*/Dictionary_2_get_Item_m0F0789D0F81BD4D8EAFB77487B94A9CEBD730F83_RuntimeMethod_var); KeyValuePair_2_t86E21DDA124482935B8F0E8DCC380E2B8206105D L_18; memset((&L_18), 0, sizeof(L_18)); KeyValuePair_2__ctor_m69CD5926C1F3E83585430B234312999946C55C53((&L_18), L_14, L_17, /*hidden argument*/KeyValuePair_2__ctor_m69CD5926C1F3E83585430B234312999946C55C53_RuntimeMethod_var); NullCheck(L_13); List_1_Add_m76DF40E97717AE8F7F5CD0D1965BB34D12BE0C75(L_13, L_18, /*hidden argument*/List_1_Add_m76DF40E97717AE8F7F5CD0D1965BB34D12BE0C75_RuntimeMethod_var); int32_t L_19 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); } IL_003e: { int32_t L_20 = V_1; int32_t L_21 = ___count2; if ((((int32_t)L_20) < ((int32_t)L_21))) { goto IL_000b; } } { List_1_tD2FC74CFEE011F74F31183756A690154468817E9 * L_22 = V_0; return L_22; } } // System.DateTime System.TimeZoneInfo::DateTimeFromUnixTime(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TimeZoneInfo_DateTimeFromUnixTime_m2EB7BE33769CB44A09ED1C1389AB3E8AF707A83D (int64_t ___unix_time0, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0; memset((&V_0), 0, sizeof(V_0)); { DateTime__ctor_mF4506D7FF3B64F7EC739A36667DC8BC089A6539A((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), ((int32_t)1970), 1, 1, /*hidden argument*/NULL); int64_t L_0 = ___unix_time0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = DateTime_AddSeconds_m36DC8835432569A70AC5120359527350DD65D6B2((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), (((double)((double)L_0))), /*hidden argument*/NULL); return L_1; } } // System.TimeSpan System.TimeZoneInfo::GetLocalUtcOffset(System.DateTime,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetLocalUtcOffset_m1C5E0CC7CA725508F5180BDBF2D03C3E8DF0FBFC (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, int32_t ___flags1, const RuntimeMethod* method) { bool V_0 = false; { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_0 = TimeZoneInfo_get_Local_mD208D43B3366D6E489CA49A7F21164373CEC24FD(/*hidden argument*/NULL); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___dateTime0; NullCheck(L_0); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = TimeZoneInfo_GetUtcOffset_m3472449E929542E987D335203A81C84E148674AB(L_0, L_1, (bool*)(&V_0), /*hidden argument*/NULL); return L_2; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetUtcOffset_m543BC61BBFD48C648B812E442987E412E502F64A (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateTime0, int32_t ___flags1, const RuntimeMethod* method) { bool V_0 = false; { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___dateTime0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = TimeZoneInfo_GetUtcOffset_m3472449E929542E987D335203A81C84E148674AB(__this, L_0, (bool*)(&V_0), /*hidden argument*/NULL); return L_1; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_GetUtcOffsetFromUtc_mAA79026F581A893DD65B95D5660E146520B471FA (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___time0, TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * ___zone1, bool* ___isDaylightSavings2, bool* ___isAmbiguousLocalDst3, const RuntimeMethod* method) { { bool* L_0 = ___isDaylightSavings2; *((int8_t*)L_0) = (int8_t)0; bool* L_1 = ___isAmbiguousLocalDst3; *((int8_t*)L_1) = (int8_t)0; TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_2 = ___zone1; NullCheck(L_2); TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline(L_2, /*hidden argument*/NULL); TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_3 = ___zone1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = ___time0; NullCheck(L_3); bool L_5 = TimeZoneInfo_IsAmbiguousTime_m1C47E17D025683A2FAFB4BBB8F22E8143E5462EC(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0019; } } { bool* L_6 = ___isAmbiguousLocalDst3; *((int8_t*)L_6) = (int8_t)1; } IL_0019: { TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * L_7 = ___zone1; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_8 = ___time0; bool* L_9 = ___isDaylightSavings2; NullCheck(L_7); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_10 = TimeZoneInfo_GetUtcOffset_m3472449E929542E987D335203A81C84E148674AB(L_7, L_8, (bool*)L_9, /*hidden argument*/NULL); return L_10; } } // System.Void System.TimeZoneInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mC41FD818CE40C6CAAA58613C79F3F7063FD7AE8F (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneInfo__ctor_mC41FD818CE40C6CAAA58613C79F3F7063FD7AE8F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(TimeZoneInfo__ctor_mC41FD818CE40C6CAAA58613C79F3F7063FD7AE8F_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.TimeZoneInfo_<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m2D7750984A62617B14017CACA194D80006EAF1BE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (U3CU3Ec__cctor_m2D7750984A62617B14017CACA194D80006EAF1BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7 * L_0 = (U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7 *)il2cpp_codegen_object_new(U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_il2cpp_TypeInfo_var); U3CU3Ec__ctor_mF312CF80BF0926136E607941EB06550D35DD1BAA(L_0, /*hidden argument*/NULL); ((U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void System.TimeZoneInfo_<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mF312CF80BF0926136E607941EB06550D35DD1BAA (U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.TimeZoneInfo_<>c::<CreateLocalUnity>b__19_0(System.TimeZoneInfo_AdjustmentRule,System.TimeZoneInfo_AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CCreateLocalUnityU3Eb__19_0_m55743CD9DA788A9D4D21F215C405D7EF527EDF15 (U3CU3Ec_tBED9E1805554B1EFE14027A8400694336FCEE2F7 * __this, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * ___rule10, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * ___rule21, const RuntimeMethod* method) { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0; memset((&V_0), 0, sizeof(V_0)); { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_0 = ___rule10; NullCheck(L_0); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_0, /*hidden argument*/NULL); V_0 = L_1; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_2 = ___rule21; NullCheck(L_2); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline(L_2, /*hidden argument*/NULL); int32_t L_4 = DateTime_CompareTo_mB538B6524ED249F1A5ED43E00D61F7D9EB3DAD6E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_0), L_3, /*hidden argument*/NULL); return L_4; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTime System.TimeZoneInfo_AdjustmentRule::get_DateStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49 (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = __this->get_m_dateStart_0(); return L_0; } } // System.DateTime System.TimeZoneInfo_AdjustmentRule::get_DateEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 AdjustmentRule_get_DateEnd_m9ECD9D96BFB535E8818CC79B0B261F8E334A722E (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = __this->get_m_dateEnd_1(); return L_0; } } // System.TimeSpan System.TimeZoneInfo_AdjustmentRule::get_DaylightDelta() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15 (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = __this->get_m_daylightDelta_2(); return L_0; } } // System.TimeZoneInfo_TransitionTime System.TimeZoneInfo_AdjustmentRule::get_DaylightTransitionStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 AdjustmentRule_get_DaylightTransitionStart_mC89A599FADA4747E5686154DCBD067EEFBB919F6 (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_0 = __this->get_m_daylightTransitionStart_3(); return L_0; } } // System.TimeZoneInfo_TransitionTime System.TimeZoneInfo_AdjustmentRule::get_DaylightTransitionEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 AdjustmentRule_get_DaylightTransitionEnd_m8EE35970D90C7857BEAE165190F5B9ADC8C57860 (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_0 = __this->get_m_daylightTransitionEnd_4(); return L_0; } } // System.Boolean System.TimeZoneInfo_AdjustmentRule::Equals(System.TimeZoneInfo_AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_Equals_mE58526212854504DB5575E2396F3C97F4F0EEA95 (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AdjustmentRule_Equals_mE58526212854504DB5575E2396F3C97F4F0EEA95_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B6_0 = 0; { AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_0 = ___other0; if (!L_0) { goto IL_004f; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = __this->get_m_dateStart_0(); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_2 = ___other0; NullCheck(L_2); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = L_2->get_m_dateStart_0(); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_4 = DateTime_op_Equality_m5715465D90806F5305BBA5F690377819C55AF084(L_1, L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_004f; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = __this->get_m_dateEnd_1(); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_6 = ___other0; NullCheck(L_6); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7 = L_6->get_m_dateEnd_1(); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_8 = DateTime_op_Equality_m5715465D90806F5305BBA5F690377819C55AF084(L_5, L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_004f; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_9 = __this->get_m_daylightDelta_2(); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_10 = ___other0; NullCheck(L_10); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_11 = L_10->get_m_daylightDelta_2(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_12 = TimeSpan_op_Equality_mEA0A4B7FDCAFA54C636292F7EB76F9A16C44096D(L_9, L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_004f; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_13 = __this->get_m_baseUtcOffsetDelta_5(); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_14 = ___other0; NullCheck(L_14); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_15 = L_14->get_m_baseUtcOffsetDelta_5(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); bool L_16 = TimeSpan_op_Equality_mEA0A4B7FDCAFA54C636292F7EB76F9A16C44096D(L_13, L_15, /*hidden argument*/NULL); G_B6_0 = ((int32_t)(L_16)); goto IL_0050; } IL_004f: { G_B6_0 = 0; } IL_0050: { if (!G_B6_0) { goto IL_0077; } } { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * L_17 = __this->get_address_of_m_daylightTransitionEnd_4(); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_18 = ___other0; NullCheck(L_18); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_19 = L_18->get_m_daylightTransitionEnd_4(); bool L_20 = TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)L_17, L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_0077; } } { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * L_21 = __this->get_address_of_m_daylightTransitionStart_3(); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_22 = ___other0; NullCheck(L_22); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_23 = L_22->get_m_daylightTransitionStart_3(); bool L_24 = TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)L_21, L_23, /*hidden argument*/NULL); return L_24; } IL_0077: { return (bool)0; } } // System.Int32 System.TimeZoneInfo_AdjustmentRule::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AdjustmentRule_GetHashCode_mF3C731D3EA0F1CF095073FC83C921E5CCEB10F6A (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * L_0 = __this->get_address_of_m_dateStart_0(); int32_t L_1 = DateTime_GetHashCode_mCA2FDAC81B0779FA2E478E6C6D92D019CD4B50C0((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.TimeZoneInfo_AdjustmentRule::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule__ctor_m9183A1D0F247640FF9288818795D556B50583AE0 (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.TimeZoneInfo_AdjustmentRule System.TimeZoneInfo_AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo_TransitionTime,System.TimeZoneInfo_TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * AdjustmentRule_CreateAdjustmentRule_m02250B76565B1F45DA0F87EA2630579828049935 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateStart0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateEnd1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___daylightDelta2, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionStart3, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionEnd4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AdjustmentRule_CreateAdjustmentRule_m02250B76565B1F45DA0F87EA2630579828049935_MetadataUsageId); s_Il2CppMethodInitialized = true; } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___dateStart0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___dateEnd1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = ___daylightDelta2; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_3 = ___daylightTransitionStart3; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_4 = ___daylightTransitionEnd4; AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D(L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_5 = (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 *)il2cpp_codegen_object_new(AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204_il2cpp_TypeInfo_var); AdjustmentRule__ctor_m9183A1D0F247640FF9288818795D556B50583AE0(L_5, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_6 = L_5; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_7 = ___dateStart0; NullCheck(L_6); L_6->set_m_dateStart_0(L_7); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_8 = L_6; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9 = ___dateEnd1; NullCheck(L_8); L_8->set_m_dateEnd_1(L_9); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_10 = L_8; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_11 = ___daylightDelta2; NullCheck(L_10); L_10->set_m_daylightDelta_2(L_11); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_12 = L_10; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_13 = ___daylightTransitionStart3; NullCheck(L_12); L_12->set_m_daylightTransitionStart_3(L_13); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_14 = L_12; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_15 = ___daylightTransitionEnd4; NullCheck(L_14); L_14->set_m_daylightTransitionEnd_4(L_15); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_16 = L_14; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_17 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); NullCheck(L_16); L_16->set_m_baseUtcOffsetDelta_5(L_17); return L_16; } } // System.TimeZoneInfo_AdjustmentRule System.TimeZoneInfo_AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo_TransitionTime,System.TimeZoneInfo_TransitionTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * AdjustmentRule_CreateAdjustmentRule_mB15A8247120D71B44A45115C4ABD819A6DFCFD67 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateStart0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateEnd1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___daylightDelta2, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionStart3, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionEnd4, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___baseUtcOffsetDelta5, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___dateStart0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = ___dateEnd1; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = ___daylightDelta2; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_3 = ___daylightTransitionStart3; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_4 = ___daylightTransitionEnd4; AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_5 = AdjustmentRule_CreateAdjustmentRule_m02250B76565B1F45DA0F87EA2630579828049935(L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL); AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * L_6 = L_5; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_7 = ___baseUtcOffsetDelta5; NullCheck(L_6); L_6->set_m_baseUtcOffsetDelta_5(L_7); return L_6; } } // System.Void System.TimeZoneInfo_AdjustmentRule::ValidateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo_TransitionTime,System.TimeZoneInfo_TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateStart0, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___dateEnd1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___daylightDelta2, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionStart3, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___daylightTransitionEnd4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateStart0), /*hidden argument*/NULL); if (!L_0) { goto IL_001e; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0C7B83C3D4E146A49E8FBE995F263BC54886556F, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_2, L_1, _stringLiteralACFA2565C73A7485FF283298E64D16D5BDB0FF26, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D_RuntimeMethod_var); } IL_001e: { int32_t L_3 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateEnd1), /*hidden argument*/NULL); if (!L_3) { goto IL_003c; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0C7B83C3D4E146A49E8FBE995F263BC54886556F, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_5, L_4, _stringLiteral4774FB46C5FDD61405A65146DC8876A573F18682, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D_RuntimeMethod_var); } IL_003c: { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_6 = ___daylightTransitionEnd4; bool L_7 = TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___daylightTransitionStart3), L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_005c; } } { String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8925B5C504CFCC741E156A406B2072543F9DEB98, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_9 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_9, L_8, _stringLiteral756401410D3949E15F44BEBA2B1567379175B53E, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D_RuntimeMethod_var); } IL_005c: { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_10 = ___dateStart0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_11 = ___dateEnd1; IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_12 = DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E(L_10, L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_007a; } } { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD827C2D1D2DED210FE559F387B8698040E1AED3C, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_14, L_13, _stringLiteralACFA2565C73A7485FF283298E64D16D5BDB0FF26, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D_RuntimeMethod_var); } IL_007a: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_15 = ___daylightDelta2; bool L_16 = TimeZoneInfo_UtcOffsetOutOfRange_m90D343BE5ACC4FA2B82B2801550A1D44C72F3E6C(L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_009d; } } { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_17 = ___daylightDelta2; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_18 = L_17; RuntimeObject * L_19 = Box(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var, &L_18); String_t* L_20 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDF73794760F11D41CDB5105F8A2808C12AFAB0D7, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_21 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m755B01B4B4595B447596E3281F22FD7CE6DAE378(L_21, _stringLiteral9357CF22F6767C4E2A9D976F6733C938A25C67ED, L_19, L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D_RuntimeMethod_var); } IL_009d: { int64_t L_22 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&___daylightDelta2), /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_22%(int64_t)(((int64_t)((int64_t)((int32_t)600000000))))))) { goto IL_00c2; } } { String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFF441E842A6E6508BF0FBBE9FAC623D087A2F3CD, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_24 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_24, L_23, _stringLiteral9357CF22F6767C4E2A9D976F6733C938A25C67ED, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D_RuntimeMethod_var); } IL_00c2: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_25 = DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateStart0), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_26 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); bool L_27 = TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC(L_25, L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_00ea; } } { String_t* L_28 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1D5C2E629B06234A3AE2BA0E82B4FBB6F1A4D61B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_29 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_29, L_28, _stringLiteralACFA2565C73A7485FF283298E64D16D5BDB0FF26, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D_RuntimeMethod_var); } IL_00ea: { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_30 = DateTime_get_TimeOfDay_mAC191C0FF7DF8D1370DFFC1C47DE8DC5FA048543((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___dateEnd1), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_31 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0(); bool L_32 = TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC(L_30, L_31, /*hidden argument*/NULL); if (!L_32) { goto IL_0112; } } { String_t* L_33 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1D5C2E629B06234A3AE2BA0E82B4FBB6F1A4D61B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_34 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_34, L_33, _stringLiteral4774FB46C5FDD61405A65146DC8876A573F18682, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D_RuntimeMethod_var); } IL_0112: { return; } } // System.Void System.TimeZoneInfo_AdjustmentRule::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mD78FC681378C9DC1899BFF7E94A853EBAADD0C79 (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mD78FC681378C9DC1899BFF7E94A853EBAADD0C79_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = __this->get_m_dateStart_0(); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = __this->get_m_dateEnd_1(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = __this->get_m_daylightDelta_2(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_3 = __this->get_m_daylightTransitionStart_3(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_4 = __this->get_m_daylightTransitionEnd_4(); AdjustmentRule_ValidateAdjustmentRule_mC12ACCF31CAF71D78295B9DF642F1D22BC73CC8D(L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL); goto IL_0037; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0025; throw e; } CATCH_0025: { // begin catch(System.ArgumentException) V_0 = ((ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)__exception_local); String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB69220CE564D3318A9EEF1120FC119174ADBDEEA, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = V_0; SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_7 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_mCCC70F63CC8A3BC77B50CFA582D9DB1256846921(L_7, L_5, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mD78FC681378C9DC1899BFF7E94A853EBAADD0C79_RuntimeMethod_var); } // end catch (depth: 1) IL_0037: { return; } } // System.Void System.TimeZoneInfo_AdjustmentRule::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData_m6BFFBA5419D77A7EA07E52E8ED5908CCE916BB5C (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData_m6BFFBA5419D77A7EA07E52E8ED5908CCE916BB5C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; 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, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData_m6BFFBA5419D77A7EA07E52E8ED5908CCE916BB5C_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = __this->get_m_dateStart_0(); NullCheck(L_2); SerializationInfo_AddValue_mC9361E987D8E88A4151406B45438F112BB397770(L_2, _stringLiteralA83DE207DBCDC758076F939E022921B57205D1F9, L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = __this->get_m_dateEnd_1(); NullCheck(L_4); SerializationInfo_AddValue_mC9361E987D8E88A4151406B45438F112BB397770(L_4, _stringLiteral4D81E111D8982E67E6A24BCB02FB5CE2AFB71541, L_5, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_7 = __this->get_m_daylightDelta_2(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_8 = L_7; RuntimeObject * L_9 = Box(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_6, _stringLiteral39805F1D1CE82AE3D872AF3A7E7C59454D282DF4, L_9, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_11 = __this->get_m_daylightTransitionStart_3(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_12 = L_11; RuntimeObject * L_13 = Box(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_10, _stringLiteral0D76F47CE8A4D40ADB1EF9C1E46CC4182A4D532D, L_13, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_14 = ___info0; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_15 = __this->get_m_daylightTransitionEnd_4(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_16 = L_15; RuntimeObject * L_17 = Box(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_il2cpp_TypeInfo_var, &L_16); NullCheck(L_14); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_14, _stringLiteral242065D4B034786D24641F82C097B6DAA692822B, L_17, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_18 = ___info0; TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_19 = __this->get_m_baseUtcOffsetDelta_5(); TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_20 = L_19; RuntimeObject * L_21 = Box(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var, &L_20); NullCheck(L_18); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_18, _stringLiteral1E6707FD8D3EA9A2DF1515730D3A6E7BFEF41267, L_21, /*hidden argument*/NULL); return; } } // System.Void System.TimeZoneInfo_AdjustmentRule::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule__ctor_m6057D32A9410894E1C9DE7CEEC59A662E3FCA468 (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AdjustmentRule__ctor_m6057D32A9410894E1C9DE7CEEC59A662E3FCA468_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, AdjustmentRule__ctor_m6057D32A9410894E1C9DE7CEEC59A662E3FCA468_RuntimeMethod_var); } IL_0014: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL); NullCheck(L_2); RuntimeObject * L_5 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_2, _stringLiteralA83DE207DBCDC758076F939E022921B57205D1F9, L_4, /*hidden argument*/NULL); __this->set_m_dateStart_0(((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)UnBox(L_5, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var) }; Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); NullCheck(L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_6, _stringLiteral4D81E111D8982E67E6A24BCB02FB5CE2AFB71541, L_8, /*hidden argument*/NULL); __this->set_m_dateEnd_1(((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)UnBox(L_9, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var) }; Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); NullCheck(L_10); RuntimeObject * L_13 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_10, _stringLiteral39805F1D1CE82AE3D872AF3A7E7C59454D282DF4, L_12, /*hidden argument*/NULL); __this->set_m_daylightDelta_2(((*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)UnBox(L_13, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_14 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_0_0_0_var) }; Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL); NullCheck(L_14); RuntimeObject * L_17 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_14, _stringLiteral0D76F47CE8A4D40ADB1EF9C1E46CC4182A4D532D, L_16, /*hidden argument*/NULL); __this->set_m_daylightTransitionStart_3(((*(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)UnBox(L_17, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_il2cpp_TypeInfo_var))))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_18 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_0_0_0_var) }; Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL); NullCheck(L_18); RuntimeObject * L_21 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_18, _stringLiteral242065D4B034786D24641F82C097B6DAA692822B, L_20, /*hidden argument*/NULL); __this->set_m_daylightTransitionEnd_4(((*(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)UnBox(L_21, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_il2cpp_TypeInfo_var))))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_22 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_0_0_0_var) }; Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_23, /*hidden argument*/NULL); NullCheck(L_22); RuntimeObject * L_25 = SerializationInfo_GetValueNoThrow_m096541B70283B3F278C63DF8D6D1BE8C51C2C7DF(L_22, _stringLiteral1E6707FD8D3EA9A2DF1515730D3A6E7BFEF41267, L_24, /*hidden argument*/NULL); V_0 = L_25; RuntimeObject * L_26 = V_0; if (!L_26) { goto IL_00d9; } } { RuntimeObject * L_27 = V_0; __this->set_m_baseUtcOffsetDelta_5(((*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)UnBox(L_27, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))))); } IL_00d9: { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION IL2CPP_EXTERN_C void DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke(const DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F& unmarshaled, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke& marshaled) { TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_pinvoke(unmarshaled.get_TZI_0(), marshaled.___TZI_0); il2cpp_codegen_marshal_wstring_fixed(unmarshaled.get_TimeZoneKeyName_1(), (Il2CppChar*)&marshaled.___TimeZoneKeyName_1, 128); marshaled.___DynamicDaylightTimeDisabled_2 = unmarshaled.get_DynamicDaylightTimeDisabled_2(); } IL2CPP_EXTERN_C void DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_back(const DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke& marshaled, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F& unmarshaled) { TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 unmarshaled_TZI_temp_0; memset((&unmarshaled_TZI_temp_0), 0, sizeof(unmarshaled_TZI_temp_0)); TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_pinvoke_back(marshaled.___TZI_0, unmarshaled_TZI_temp_0); unmarshaled.set_TZI_0(unmarshaled_TZI_temp_0); unmarshaled.set_TimeZoneKeyName_1(il2cpp_codegen_marshal_wstring_result(marshaled.___TimeZoneKeyName_1)); uint8_t unmarshaled_DynamicDaylightTimeDisabled_temp_2 = 0x0; unmarshaled_DynamicDaylightTimeDisabled_temp_2 = marshaled.___DynamicDaylightTimeDisabled_2; unmarshaled.set_DynamicDaylightTimeDisabled_2(unmarshaled_DynamicDaylightTimeDisabled_temp_2); } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION IL2CPP_EXTERN_C void DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_pinvoke_cleanup(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_pinvoke& marshaled) { TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_pinvoke_cleanup(marshaled.___TZI_0); } // Conversion methods for marshalling of: System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION IL2CPP_EXTERN_C void DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_com(const DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F& unmarshaled, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_com& marshaled) { TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_com(unmarshaled.get_TZI_0(), marshaled.___TZI_0); il2cpp_codegen_marshal_wstring_fixed(unmarshaled.get_TimeZoneKeyName_1(), (Il2CppChar*)&marshaled.___TimeZoneKeyName_1, 128); marshaled.___DynamicDaylightTimeDisabled_2 = unmarshaled.get_DynamicDaylightTimeDisabled_2(); } IL2CPP_EXTERN_C void DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_com_back(const DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_com& marshaled, DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F& unmarshaled) { TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811 unmarshaled_TZI_temp_0; memset((&unmarshaled_TZI_temp_0), 0, sizeof(unmarshaled_TZI_temp_0)); TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_com_back(marshaled.___TZI_0, unmarshaled_TZI_temp_0); unmarshaled.set_TZI_0(unmarshaled_TZI_temp_0); unmarshaled.set_TimeZoneKeyName_1(il2cpp_codegen_marshal_wstring_result(marshaled.___TimeZoneKeyName_1)); uint8_t unmarshaled_DynamicDaylightTimeDisabled_temp_2 = 0x0; unmarshaled_DynamicDaylightTimeDisabled_temp_2 = marshaled.___DynamicDaylightTimeDisabled_2; unmarshaled.set_DynamicDaylightTimeDisabled_2(unmarshaled_DynamicDaylightTimeDisabled_temp_2); } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION IL2CPP_EXTERN_C void DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshal_com_cleanup(DYNAMIC_TIME_ZONE_INFORMATION_tE2A7A07ADC8726A5FC7954EA9CDE9168756C9B1F_marshaled_com& marshaled) { TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_com_cleanup(marshaled.___TZI_0); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.TimeZoneInfo/TIME_ZONE_INFORMATION IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_pinvoke(const TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811& unmarshaled, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke& marshaled) { marshaled.___Bias_0 = unmarshaled.get_Bias_0(); il2cpp_codegen_marshal_wstring_fixed(unmarshaled.get_StandardName_1(), (Il2CppChar*)&marshaled.___StandardName_1, 32); marshaled.___StandardDate_2 = unmarshaled.get_StandardDate_2(); marshaled.___StandardBias_3 = unmarshaled.get_StandardBias_3(); il2cpp_codegen_marshal_wstring_fixed(unmarshaled.get_DaylightName_4(), (Il2CppChar*)&marshaled.___DaylightName_4, 32); marshaled.___DaylightDate_5 = unmarshaled.get_DaylightDate_5(); marshaled.___DaylightBias_6 = unmarshaled.get_DaylightBias_6(); } IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_pinvoke_back(const TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke& marshaled, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811& unmarshaled) { int32_t unmarshaled_Bias_temp_0 = 0; unmarshaled_Bias_temp_0 = marshaled.___Bias_0; unmarshaled.set_Bias_0(unmarshaled_Bias_temp_0); unmarshaled.set_StandardName_1(il2cpp_codegen_marshal_wstring_result(marshaled.___StandardName_1)); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 unmarshaled_StandardDate_temp_2; memset((&unmarshaled_StandardDate_temp_2), 0, sizeof(unmarshaled_StandardDate_temp_2)); unmarshaled_StandardDate_temp_2 = marshaled.___StandardDate_2; unmarshaled.set_StandardDate_2(unmarshaled_StandardDate_temp_2); int32_t unmarshaled_StandardBias_temp_3 = 0; unmarshaled_StandardBias_temp_3 = marshaled.___StandardBias_3; unmarshaled.set_StandardBias_3(unmarshaled_StandardBias_temp_3); unmarshaled.set_DaylightName_4(il2cpp_codegen_marshal_wstring_result(marshaled.___DaylightName_4)); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 unmarshaled_DaylightDate_temp_5; memset((&unmarshaled_DaylightDate_temp_5), 0, sizeof(unmarshaled_DaylightDate_temp_5)); unmarshaled_DaylightDate_temp_5 = marshaled.___DaylightDate_5; unmarshaled.set_DaylightDate_5(unmarshaled_DaylightDate_temp_5); int32_t unmarshaled_DaylightBias_temp_6 = 0; unmarshaled_DaylightBias_temp_6 = marshaled.___DaylightBias_6; unmarshaled.set_DaylightBias_6(unmarshaled_DaylightBias_temp_6); } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TIME_ZONE_INFORMATION IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_pinvoke_cleanup(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.TimeZoneInfo/TIME_ZONE_INFORMATION IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_com(const TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811& unmarshaled, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com& marshaled) { marshaled.___Bias_0 = unmarshaled.get_Bias_0(); il2cpp_codegen_marshal_wstring_fixed(unmarshaled.get_StandardName_1(), (Il2CppChar*)&marshaled.___StandardName_1, 32); marshaled.___StandardDate_2 = unmarshaled.get_StandardDate_2(); marshaled.___StandardBias_3 = unmarshaled.get_StandardBias_3(); il2cpp_codegen_marshal_wstring_fixed(unmarshaled.get_DaylightName_4(), (Il2CppChar*)&marshaled.___DaylightName_4, 32); marshaled.___DaylightDate_5 = unmarshaled.get_DaylightDate_5(); marshaled.___DaylightBias_6 = unmarshaled.get_DaylightBias_6(); } IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_com_back(const TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com& marshaled, TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811& unmarshaled) { int32_t unmarshaled_Bias_temp_0 = 0; unmarshaled_Bias_temp_0 = marshaled.___Bias_0; unmarshaled.set_Bias_0(unmarshaled_Bias_temp_0); unmarshaled.set_StandardName_1(il2cpp_codegen_marshal_wstring_result(marshaled.___StandardName_1)); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 unmarshaled_StandardDate_temp_2; memset((&unmarshaled_StandardDate_temp_2), 0, sizeof(unmarshaled_StandardDate_temp_2)); unmarshaled_StandardDate_temp_2 = marshaled.___StandardDate_2; unmarshaled.set_StandardDate_2(unmarshaled_StandardDate_temp_2); int32_t unmarshaled_StandardBias_temp_3 = 0; unmarshaled_StandardBias_temp_3 = marshaled.___StandardBias_3; unmarshaled.set_StandardBias_3(unmarshaled_StandardBias_temp_3); unmarshaled.set_DaylightName_4(il2cpp_codegen_marshal_wstring_result(marshaled.___DaylightName_4)); SYSTEMTIME_tB7F532B6AEC26D9270A30C57600C31F2622DF7A2 unmarshaled_DaylightDate_temp_5; memset((&unmarshaled_DaylightDate_temp_5), 0, sizeof(unmarshaled_DaylightDate_temp_5)); unmarshaled_DaylightDate_temp_5 = marshaled.___DaylightDate_5; unmarshaled.set_DaylightDate_5(unmarshaled_DaylightDate_temp_5); int32_t unmarshaled_DaylightBias_temp_6 = 0; unmarshaled_DaylightBias_temp_6 = marshaled.___DaylightBias_6; unmarshaled.set_DaylightBias_6(unmarshaled_DaylightBias_temp_6); } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TIME_ZONE_INFORMATION IL2CPP_EXTERN_C void TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshal_com_cleanup(TIME_ZONE_INFORMATION_tE8C6F24D5D50D01E03E52B00DDF74849F3DE9811_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshal_pinvoke(const TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116& unmarshaled, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshaled_pinvoke& marshaled) { Exception_t* ___m_timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_timeOfDay_0Exception, NULL); } IL2CPP_EXTERN_C void TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshal_pinvoke_back(const TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshaled_pinvoke& marshaled, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116& unmarshaled) { Exception_t* ___m_timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_timeOfDay_0Exception, NULL); } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshal_pinvoke_cleanup(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshal_com(const TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116& unmarshaled, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshaled_com& marshaled) { Exception_t* ___m_timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_timeOfDay_0Exception, NULL); } IL2CPP_EXTERN_C void TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshal_com_back(const TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshaled_com& marshaled, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116& unmarshaled) { Exception_t* ___m_timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_timeOfDay_0Exception, NULL); } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshal_com_cleanup(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_marshaled_com& marshaled) { } // System.DateTime System.TimeZoneInfo_TransitionTime::get_TimeOfDay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TransitionTime_get_TimeOfDay_mC4F5083CF75296341B498E873B2C026A95C4ADDE (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = __this->get_m_timeOfDay_0(); return L_0; } } IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TransitionTime_get_TimeOfDay_mC4F5083CF75296341B498E873B2C026A95C4ADDE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); return TransitionTime_get_TimeOfDay_mC4F5083CF75296341B498E873B2C026A95C4ADDE_inline(_thisAdjusted, method); } // System.Int32 System.TimeZoneInfo_TransitionTime::get_Month() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Month_m06FE288B24621979C4FE9E34D350EBA208CEA267 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->get_m_month_1(); return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_Month_m06FE288B24621979C4FE9E34D350EBA208CEA267_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); return TransitionTime_get_Month_m06FE288B24621979C4FE9E34D350EBA208CEA267_inline(_thisAdjusted, method); } // System.Int32 System.TimeZoneInfo_TransitionTime::get_Week() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Week_m7708A01103CEADEA75626953931221A1E5CA2F82 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->get_m_week_2(); return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_Week_m7708A01103CEADEA75626953931221A1E5CA2F82_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); return TransitionTime_get_Week_m7708A01103CEADEA75626953931221A1E5CA2F82_inline(_thisAdjusted, method); } // System.Int32 System.TimeZoneInfo_TransitionTime::get_Day() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Day_m82E3998C57838AB654EEB696600CF6C0F9EB52B0 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->get_m_day_3(); return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_Day_m82E3998C57838AB654EEB696600CF6C0F9EB52B0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); return TransitionTime_get_Day_m82E3998C57838AB654EEB696600CF6C0F9EB52B0_inline(_thisAdjusted, method); } // System.DayOfWeek System.TimeZoneInfo_TransitionTime::get_DayOfWeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_DayOfWeek_m349EE703AD506935676F78DE8438D8C3D5E8C472 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_dayOfWeek_4(); return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_DayOfWeek_m349EE703AD506935676F78DE8438D8C3D5E8C472_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); return TransitionTime_get_DayOfWeek_m349EE703AD506935676F78DE8438D8C3D5E8C472_inline(_thisAdjusted, method); } // System.Boolean System.TimeZoneInfo_TransitionTime::get_IsFixedDateRule() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_get_IsFixedDateRule_mC55143797D34E320F86E4B58A265654C634EB38C (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_m_isFixedDateRule_5(); return L_0; } } IL2CPP_EXTERN_C bool TransitionTime_get_IsFixedDateRule_mC55143797D34E320F86E4B58A265654C634EB38C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); return TransitionTime_get_IsFixedDateRule_mC55143797D34E320F86E4B58A265654C634EB38C_inline(_thisAdjusted, method); } // System.Boolean System.TimeZoneInfo_TransitionTime::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_mB551A5FE7A3347F0090F98E80401CC9204C3D191 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TransitionTime_Equals_mB551A5FE7A3347F0090F98E80401CC9204C3D191_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_il2cpp_TypeInfo_var))) { goto IL_0015; } } { RuntimeObject * L_1 = ___obj0; bool L_2 = TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)__this, ((*(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)UnBox(L_1, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool TransitionTime_Equals_mB551A5FE7A3347F0090F98E80401CC9204C3D191_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); return TransitionTime_Equals_mB551A5FE7A3347F0090F98E80401CC9204C3D191(_thisAdjusted, ___obj0, method); } // System.Boolean System.TimeZoneInfo_TransitionTime::op_Inequality(System.TimeZoneInfo_TransitionTime,System.TimeZoneInfo_TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_op_Inequality_m8E95819760E1035F55168B42B474A0F401BDEA58 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___t10, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___t21, const RuntimeMethod* method) { { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_0 = ___t21; bool L_1 = TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010((TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *)(&___t10), L_0, /*hidden argument*/NULL); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.TimeZoneInfo_TransitionTime::Equals(System.TimeZoneInfo_TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t G_B4_0 = 0; int32_t G_B10_0 = 0; { bool L_0 = __this->get_m_isFixedDateRule_5(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_1 = ___other0; bool L_2 = L_1.get_m_isFixedDateRule_5(); if ((!(((uint32_t)L_0) == ((uint32_t)L_2)))) { goto IL_0031; } } { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = __this->get_m_timeOfDay_0(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_4 = ___other0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = L_4.get_m_timeOfDay_0(); IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var); bool L_6 = DateTime_op_Equality_m5715465D90806F5305BBA5F690377819C55AF084(L_3, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_0031; } } { uint8_t L_7 = __this->get_m_month_1(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_8 = ___other0; uint8_t L_9 = L_8.get_m_month_1(); G_B4_0 = ((((int32_t)L_7) == ((int32_t)L_9))? 1 : 0); goto IL_0032; } IL_0031: { G_B4_0 = 0; } IL_0032: { V_0 = (bool)G_B4_0; bool L_10 = V_0; if (!L_10) { goto IL_006f; } } { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_11 = ___other0; bool L_12 = L_11.get_m_isFixedDateRule_5(); if (!L_12) { goto IL_004f; } } { uint8_t L_13 = __this->get_m_day_3(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_14 = ___other0; uint8_t L_15 = L_14.get_m_day_3(); V_0 = (bool)((((int32_t)L_13) == ((int32_t)L_15))? 1 : 0); goto IL_006f; } IL_004f: { uint8_t L_16 = __this->get_m_week_2(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_17 = ___other0; uint8_t L_18 = L_17.get_m_week_2(); if ((!(((uint32_t)L_16) == ((uint32_t)L_18)))) { goto IL_006d; } } { int32_t L_19 = __this->get_m_dayOfWeek_4(); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_20 = ___other0; int32_t L_21 = L_20.get_m_dayOfWeek_4(); G_B10_0 = ((((int32_t)L_19) == ((int32_t)L_21))? 1 : 0); goto IL_006e; } IL_006d: { G_B10_0 = 0; } IL_006e: { V_0 = (bool)G_B10_0; } IL_006f: { bool L_22 = V_0; return L_22; } } IL2CPP_EXTERN_C bool TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010_AdjustorThunk (RuntimeObject * __this, TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); return TransitionTime_Equals_m8A0240236B27E6EE75B5FA2F96A1C992F835B010(_thisAdjusted, ___other0, method); } // System.Int32 System.TimeZoneInfo_TransitionTime::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_GetHashCode_m8B1F9BB867B601808A812B0AD557142FF5C1A72A (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->get_m_month_1(); uint8_t L_1 = __this->get_m_week_2(); return ((int32_t)((int32_t)L_0^(int32_t)((int32_t)((int32_t)L_1<<(int32_t)8)))); } } IL2CPP_EXTERN_C int32_t TransitionTime_GetHashCode_m8B1F9BB867B601808A812B0AD557142FF5C1A72A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); return TransitionTime_GetHashCode_m8B1F9BB867B601808A812B0AD557142FF5C1A72A(_thisAdjusted, method); } // System.TimeZoneInfo_TransitionTime System.TimeZoneInfo_TransitionTime::CreateFixedDateRule(System.DateTime,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 TransitionTime_CreateFixedDateRule_m7DC42C607D9949069FF955FCA8BC9DF667498F26 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___timeOfDay0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___timeOfDay0; int32_t L_1 = ___month1; int32_t L_2 = ___day2; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_3 = TransitionTime_CreateTransitionTime_m1D2ABFF0D3FC6E91E34535F6B4C72C9BCC8986FF(L_0, L_1, 1, L_2, 0, (bool)1, /*hidden argument*/NULL); return L_3; } } // System.TimeZoneInfo_TransitionTime System.TimeZoneInfo_TransitionTime::CreateFloatingDateRule(System.DateTime,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 TransitionTime_CreateFloatingDateRule_mF22316F8D071F0D8AAE9981156D6CD87637A327E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___dayOfWeek3, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___timeOfDay0; int32_t L_1 = ___month1; int32_t L_2 = ___week2; int32_t L_3 = ___dayOfWeek3; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_4 = TransitionTime_CreateTransitionTime_m1D2ABFF0D3FC6E91E34535F6B4C72C9BCC8986FF(L_0, L_1, L_2, 1, L_3, (bool)0, /*hidden argument*/NULL); return L_4; } } // System.TimeZoneInfo_TransitionTime System.TimeZoneInfo_TransitionTime::CreateTransitionTime(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 TransitionTime_CreateTransitionTime_m1D2ABFF0D3FC6E91E34535F6B4C72C9BCC8986FF (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___day3, int32_t ___dayOfWeek4, bool ___isFixedDateRule5, const RuntimeMethod* method) { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 V_0; memset((&V_0), 0, sizeof(V_0)); { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = ___timeOfDay0; int32_t L_1 = ___month1; int32_t L_2 = ___week2; int32_t L_3 = ___day3; int32_t L_4 = ___dayOfWeek4; TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4(L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL); il2cpp_codegen_initobj((&V_0), sizeof(TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 )); bool L_5 = ___isFixedDateRule5; (&V_0)->set_m_isFixedDateRule_5(L_5); DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = ___timeOfDay0; (&V_0)->set_m_timeOfDay_0(L_6); int32_t L_7 = ___dayOfWeek4; (&V_0)->set_m_dayOfWeek_4(L_7); int32_t L_8 = ___day3; (&V_0)->set_m_day_3((uint8_t)(((int32_t)((uint8_t)L_8)))); int32_t L_9 = ___week2; (&V_0)->set_m_week_2((uint8_t)(((int32_t)((uint8_t)L_9)))); int32_t L_10 = ___month1; (&V_0)->set_m_month_1((uint8_t)(((int32_t)((uint8_t)L_10)))); TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_11 = V_0; return L_11; } } // System.Void System.TimeZoneInfo_TransitionTime::ValidateTransitionTime(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___day3, int32_t ___dayOfWeek4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = DateTime_get_Kind_m44C21F0AB366194E0233E48B77B15EBB418892BE((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___timeOfDay0), /*hidden argument*/NULL); if (!L_0) { goto IL_001e; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0C7B83C3D4E146A49E8FBE995F263BC54886556F, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_2, L_1, _stringLiteralA19A8867C60DF26C22DDB69DD1B7B215AE522C44, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4_RuntimeMethod_var); } IL_001e: { int32_t L_3 = ___month1; if ((((int32_t)L_3) < ((int32_t)1))) { goto IL_0027; } } { int32_t L_4 = ___month1; if ((((int32_t)L_4) <= ((int32_t)((int32_t)12)))) { goto IL_003c; } } IL_0027: { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralE8306A5B8D2786F6900ABCC6514C61A5C91516D1, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, _stringLiteral021710FA7866431C1DACAA6CD31EEEB47DCE64B6, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4_RuntimeMethod_var); } IL_003c: { int32_t L_7 = ___day3; if ((((int32_t)L_7) < ((int32_t)1))) { goto IL_0045; } } { int32_t L_8 = ___day3; if ((((int32_t)L_8) <= ((int32_t)((int32_t)31)))) { goto IL_005a; } } IL_0045: { String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6669D645B20DE5AF96898FE51D2EE9DFB4111C90, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralA2620CBC10F5198DD03E3F5A1569EB5DCF9A6A87, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4_RuntimeMethod_var); } IL_005a: { int32_t L_11 = ___week2; if ((((int32_t)L_11) < ((int32_t)1))) { goto IL_0062; } } { int32_t L_12 = ___week2; if ((((int32_t)L_12) <= ((int32_t)5))) { goto IL_0077; } } IL_0062: { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0A214C87301D8B6D0B0BAF1ECF486BCA2DA0AE5B, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_14, _stringLiteralC0EE32D825D6DDB4025AB74AF0609969ECC419C8, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4_RuntimeMethod_var); } IL_0077: { int32_t L_15 = ___dayOfWeek4; if ((((int32_t)L_15) < ((int32_t)0))) { goto IL_0081; } } { int32_t L_16 = ___dayOfWeek4; if ((((int32_t)L_16) <= ((int32_t)6))) { goto IL_0096; } } IL_0081: { String_t* L_17 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1DE5D43D5B4B74C0BC8A89C7FD6D7FD3A9E7336A, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_18 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_18, _stringLiteralD096C011585D07EA34D552634CAB76998611ECD3, L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4_RuntimeMethod_var); } IL_0096: { int32_t L_19 = DateTime_get_Year_m019BED6042282D03E51CE82F590D2A9FE5EA859E((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___timeOfDay0), /*hidden argument*/NULL); if ((!(((uint32_t)L_19) == ((uint32_t)1)))) { goto IL_00c4; } } { int32_t L_20 = DateTime_get_Month_m9E31D84567E6D221F0E686EC6894A7AD07A5E43C((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___timeOfDay0), /*hidden argument*/NULL); if ((!(((uint32_t)L_20) == ((uint32_t)1)))) { goto IL_00c4; } } { int32_t L_21 = DateTime_get_Day_m3C888FF1DA5019583A4326FAB232F81D32B1478D((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___timeOfDay0), /*hidden argument*/NULL); if ((!(((uint32_t)L_21) == ((uint32_t)1)))) { goto IL_00c4; } } { int64_t L_22 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&___timeOfDay0), /*hidden argument*/NULL); if (!((int64_t)((int64_t)L_22%(int64_t)(((int64_t)((int64_t)((int32_t)10000))))))) { goto IL_00d9; } } IL_00c4: { String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral67CC4704CE79BBAF875E4B65F327FC804330682B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_24 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_24, L_23, _stringLiteralA19A8867C60DF26C22DDB69DD1B7B215AE522C44, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4_RuntimeMethod_var); } IL_00d9: { return; } } // System.Void System.TimeZoneInfo_TransitionTime::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m6FD2B88D2632C765F64AD7DA885D92B919264460 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m6FD2B88D2632C765F64AD7DA885D92B919264460_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * V_0 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); IL_0000: try { // begin try (depth: 1) DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = __this->get_m_timeOfDay_0(); uint8_t L_1 = __this->get_m_month_1(); uint8_t L_2 = __this->get_m_week_2(); uint8_t L_3 = __this->get_m_day_3(); int32_t L_4 = __this->get_m_dayOfWeek_4(); TransitionTime_ValidateTransitionTime_m50B62B32F5763489A90C02C27B0874B450E8EFC4(L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL); goto IL_0037; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0025; throw e; } CATCH_0025: { // begin catch(System.ArgumentException) V_0 = ((ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)__exception_local); String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB69220CE564D3318A9EEF1120FC119174ADBDEEA, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = V_0; SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_7 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_mCCC70F63CC8A3BC77B50CFA582D9DB1256846921(L_7, L_5, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m6FD2B88D2632C765F64AD7DA885D92B919264460_RuntimeMethod_var); } // end catch (depth: 1) IL_0037: { return; } } IL2CPP_EXTERN_C void TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m6FD2B88D2632C765F64AD7DA885D92B919264460_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m6FD2B88D2632C765F64AD7DA885D92B919264460(_thisAdjusted, ___sender0, method); } // System.Void System.TimeZoneInfo_TransitionTime::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m174E35C46E6E212DF7B09D81BD53CFE60BD0B693 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m174E35C46E6E212DF7B09D81BD53CFE60BD0B693_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; 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, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m174E35C46E6E212DF7B09D81BD53CFE60BD0B693_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = __this->get_m_timeOfDay_0(); NullCheck(L_2); SerializationInfo_AddValue_mC9361E987D8E88A4151406B45438F112BB397770(L_2, _stringLiteral3A383C209C07D7DDD4A20A832E5E3183C6735122, L_3, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; uint8_t L_5 = __this->get_m_month_1(); NullCheck(L_4); SerializationInfo_AddValue_m4877E7BAFE436B280EE47F9C67F62307908413FA(L_4, _stringLiteral082BC378CD60E17A38D99898B21955299C5B60C8, L_5, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0; uint8_t L_7 = __this->get_m_week_2(); NullCheck(L_6); SerializationInfo_AddValue_m4877E7BAFE436B280EE47F9C67F62307908413FA(L_6, _stringLiteralF82BE68A7FB4E7DEC88F27463DE94AD355242EE5, L_7, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0; uint8_t L_9 = __this->get_m_day_3(); NullCheck(L_8); SerializationInfo_AddValue_m4877E7BAFE436B280EE47F9C67F62307908413FA(L_8, _stringLiteral987B9CED08D4AC5D11D286CA4B54B99A4F69164B, L_9, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0; int32_t L_11 = __this->get_m_dayOfWeek_4(); int32_t L_12 = L_11; RuntimeObject * L_13 = Box(DayOfWeek_tE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_10, _stringLiteral53867761F2A54C550E24E76921E71BBD5607B5CE, L_13, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_14 = ___info0; bool L_15 = __this->get_m_isFixedDateRule_5(); NullCheck(L_14); SerializationInfo_AddValue_m1229CE68F507974EBA0DA9C7C728A09E611D18B1(L_14, _stringLiteral6B3F0FDD52FF1C41149DAF9C0970E2B2E1EBBE24, L_15, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m174E35C46E6E212DF7B09D81BD53CFE60BD0B693_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m174E35C46E6E212DF7B09D81BD53CFE60BD0B693(_thisAdjusted, ___info0, ___context1, method); } // System.Void System.TimeZoneInfo_TransitionTime::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime__ctor_mAA204123C15C0744095BE8681CA125E366AB1659 (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TransitionTime__ctor_mAA204123C15C0744095BE8681CA125E366AB1659_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; 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, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TransitionTime__ctor_mAA204123C15C0744095BE8681CA125E366AB1659_RuntimeMethod_var); } IL_000e: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL); NullCheck(L_2); RuntimeObject * L_5 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_2, _stringLiteral3A383C209C07D7DDD4A20A832E5E3183C6735122, L_4, /*hidden argument*/NULL); __this->set_m_timeOfDay_0(((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)UnBox(L_5, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); NullCheck(L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_6, _stringLiteral082BC378CD60E17A38D99898B21955299C5B60C8, L_8, /*hidden argument*/NULL); __this->set_m_month_1(((*(uint8_t*)((uint8_t*)UnBox(L_9, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); NullCheck(L_10); RuntimeObject * L_13 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_10, _stringLiteralF82BE68A7FB4E7DEC88F27463DE94AD355242EE5, L_12, /*hidden argument*/NULL); __this->set_m_week_2(((*(uint8_t*)((uint8_t*)UnBox(L_13, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_14 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL); NullCheck(L_14); RuntimeObject * L_17 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_14, _stringLiteral987B9CED08D4AC5D11D286CA4B54B99A4F69164B, L_16, /*hidden argument*/NULL); __this->set_m_day_3(((*(uint8_t*)((uint8_t*)UnBox(L_17, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_18 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (DayOfWeek_tE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8_0_0_0_var) }; Type_t * L_20 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_19, /*hidden argument*/NULL); NullCheck(L_18); RuntimeObject * L_21 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_18, _stringLiteral53867761F2A54C550E24E76921E71BBD5607B5CE, L_20, /*hidden argument*/NULL); __this->set_m_dayOfWeek_4(((*(int32_t*)((int32_t*)UnBox(L_21, DayOfWeek_tE7CD4C3124650FF8B2AD3E9DBD34B9896927DFF8_il2cpp_TypeInfo_var))))); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_22 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_23, /*hidden argument*/NULL); NullCheck(L_22); RuntimeObject * L_25 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_22, _stringLiteral6B3F0FDD52FF1C41149DAF9C0970E2B2E1EBBE24, L_24, /*hidden argument*/NULL); __this->set_m_isFixedDateRule_5(((*(bool*)((bool*)UnBox(L_25, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))))); return; } } IL2CPP_EXTERN_C void TransitionTime__ctor_mAA204123C15C0744095BE8681CA125E366AB1659_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { int32_t _offset = 1; TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * _thisAdjusted = reinterpret_cast<TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 *>(__this + _offset); TransitionTime__ctor_mAA204123C15C0744095BE8681CA125E366AB1659(_thisAdjusted, ___info0, ___context1, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.TimeZoneNotFoundException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneNotFoundException__ctor_m38A84B100985F5907DE77F71A3B98CD3BF1D9CD3 (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneNotFoundException__ctor_m38A84B100985F5907DE77F71A3B98CD3BF1D9CD3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___message0; Exception_t * L_1 = ___innerException1; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.TimeZoneNotFoundException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneNotFoundException__ctor_mA8D2277188E55C2B6EA52CEB57A8AD18243CECDE (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneNotFoundException__ctor_mA8D2277188E55C2B6EA52CEB57A8AD18243CECDE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.TimeZoneNotFoundException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneNotFoundException__ctor_m13C5CB453D2842823AA85B9B4E422C42D659FA19 (TimeZoneNotFoundException_t44EC55B0AAD26AD0E0B659D308CBF90E5C81B388 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeZoneNotFoundException__ctor_m13C5CB453D2842823AA85B9B4E422C42D659FA19_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m5FEC89FBFACEEDCEE29CCFD44A85D72FC28EB0D1(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.TimeoutException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeoutException__ctor_mB870CBFE33BA657A6C7FBFAB77984096ADCA62CF (TimeoutException_t15A6E9A2A5819966712B5CFAF756BAEA40E3B1B7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeoutException__ctor_mB870CBFE33BA657A6C7FBFAB77984096ADCA62CF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBE3F306A5E0BA5DC2F76020448FB66EB734EF545, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233083), /*hidden argument*/NULL); return; } } // System.Void System.TimeoutException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeoutException__ctor_mF1C60F8EDC528DD4115617C3A3ED34CB20175F1A (TimeoutException_t15A6E9A2A5819966712B5CFAF756BAEA40E3B1B7 * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233083), /*hidden argument*/NULL); return; } } // System.Void System.TimeoutException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeoutException__ctor_m18609AA35D5F9E6B53E125B2B00D37EBBAB1DB65 (TimeoutException_t15A6E9A2A5819966712B5CFAF756BAEA40E3B1B7 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_m45A9FAE45051A42186BE7E768E8482DFC17730E1 (int32_t ___h10, int32_t ___h21, const RuntimeMethod* method) { { int32_t L_0 = ___h10; int32_t L_1 = ___h10; int32_t L_2 = ___h21; return ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_0<<(int32_t)5)), (int32_t)L_1))^(int32_t)L_2)); } } // System.Int32 System.Tuple::CombineHashCodes(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tuple_CombineHashCodes_m96643FBF95312DDB35FAE7A6DF72514EBAA8CF12 (int32_t ___h10, int32_t ___h21, int32_t ___h32, const RuntimeMethod* method) { { int32_t L_0 = ___h10; int32_t L_1 = ___h21; int32_t L_2 = Tuple_CombineHashCodes_m45A9FAE45051A42186BE7E768E8482DFC17730E1(L_0, L_1, /*hidden argument*/NULL); int32_t L_3 = ___h32; int32_t L_4 = Tuple_CombineHashCodes_m45A9FAE45051A42186BE7E768E8482DFC17730E1(L_2, L_3, /*hidden argument*/NULL); return L_4; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Type::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type__ctor_m55A9DC11F422D2DFDA1501FEC589D5823AB86CEE (Type_t * __this, const RuntimeMethod* method) { { MemberInfo__ctor_m2F662BD5B63738672688109B4BCC552C143B1BCC(__this, /*hidden argument*/NULL); return; } } // System.Reflection.MemberTypes System.Type::get_MemberType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_get_MemberType_mBCCA7F431B7778660F4006CFE9798753A9D0B844 (Type_t * __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)32)); } } // System.Type System.Type::get_DeclaringType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_get_DeclaringType_mEB0B89D64A6E7E00EA8CB0E1CF23448EB33D055B (Type_t * __this, const RuntimeMethod* method) { { return (Type_t *)NULL; } } // System.Reflection.MethodBase System.Type::get_DeclaringMethod() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * Type_get_DeclaringMethod_mFF7871F0C792A9286665D176687A88CE21CF8910 (Type_t * __this, const RuntimeMethod* method) { { return (MethodBase_t *)NULL; } } // System.Type System.Type::get_ReflectedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_get_ReflectedType_m897077442F214127D6E7AAD47D6B4E8A14234942 (Type_t * __this, const RuntimeMethod* method) { { return (Type_t *)NULL; } } // System.Type System.Type::GetType(System.String,System.Func`2<System.Reflection.AssemblyName,System.Reflection.Assembly>,System.Func`4<System.Reflection.Assembly,System.String,System.Boolean,System.Type>,System.Boolean) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR Type_t * Type_GetType_mF35649443ABDC07A0605C04C9CD551DE44497690 (String_t* ___typeName0, Func_2_t13827C9725E0D12567E029E178981FB7D0E13430 * ___assemblyResolver1, Func_4_t3D7857A2A0F731D1E992FC5B09E983A8621FABFF * ___typeResolver2, bool ___throwOnError3, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 1; String_t* L_0 = ___typeName0; Func_2_t13827C9725E0D12567E029E178981FB7D0E13430 * L_1 = ___assemblyResolver1; Func_4_t3D7857A2A0F731D1E992FC5B09E983A8621FABFF * L_2 = ___typeResolver2; bool L_3 = ___throwOnError3; Type_t * L_4 = TypeNameParser_GetType_m8359CD1600F889CE251C669179BB982D1A2F7013(L_0, L_1, L_2, L_3, (bool)0, (int32_t*)(&V_0), /*hidden argument*/NULL); return L_4; } } // System.Type System.Type::MakePointerType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_MakePointerType_m78A90E40DC58D6C1D9BD7F5D7B577F3C3E5316BE (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_MakePointerType_m78A90E40DC58D6C1D9BD7F5D7B577F3C3E5316BE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Type_MakePointerType_m78A90E40DC58D6C1D9BD7F5D7B577F3C3E5316BE_RuntimeMethod_var); } } // System.Type System.Type::MakeByRefType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_MakeByRefType_m491343FED49D189A01971718113DC5C1CCB3AB5B (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_MakeByRefType_m491343FED49D189A01971718113DC5C1CCB3AB5B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Type_MakeByRefType_m491343FED49D189A01971718113DC5C1CCB3AB5B_RuntimeMethod_var); } } // System.Type System.Type::MakeArrayType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_MakeArrayType_mA247B3102DE693345AE335522DC8F080E720DCB1 (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_MakeArrayType_mA247B3102DE693345AE335522DC8F080E720DCB1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Type_MakeArrayType_mA247B3102DE693345AE335522DC8F080E720DCB1_RuntimeMethod_var); } } // System.Type System.Type::MakeArrayType(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_MakeArrayType_mE93BD65B2F3CDB539823B0763328A0E4EF5FBEA5 (Type_t * __this, int32_t ___rank0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_MakeArrayType_mE93BD65B2F3CDB539823B0763328A0E4EF5FBEA5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Type_MakeArrayType_mE93BD65B2F3CDB539823B0763328A0E4EF5FBEA5_RuntimeMethod_var); } } // System.TypeCode System.Type::GetTypeCode(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F (Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_000b; } } { return (int32_t)(0); } IL_000b: { Type_t * L_2 = ___type0; NullCheck(L_2); int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.TypeCode System.Type::GetTypeCodeImpl() */, L_2); return L_3; } } // System.TypeCode System.Type::GetTypeCodeImpl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_GetTypeCodeImpl_m0F71C7E425897F30A22F7A49F625654534143B1A (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetTypeCodeImpl_m0F71C7E425897F30A22F7A49F625654534143B1A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::get_UnderlyingSystemType() */, __this); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(__this, L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0028; } } { Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::get_UnderlyingSystemType() */, __this); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_2, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_0028; } } { Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::get_UnderlyingSystemType() */, __this); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_5 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F(L_4, /*hidden argument*/NULL); return L_5; } IL_0028: { return (int32_t)(1); } } // System.Reflection.Binder System.Type::get_DefaultBinder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * Type_get_DefaultBinder_mC8C8679D5EDC53BA5DCDD8AF7FAD01C89246AEE0 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_get_DefaultBinder_mC8C8679D5EDC53BA5DCDD8AF7FAD01C89246AEE0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_0 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_defaultBinder_6(); if (L_0) { goto IL_000c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_CreateBinder_mD7D0BA5DDBCC08A4F9D3A0DA5FE6697BAA29D9E6(/*hidden argument*/NULL); } IL_000c: { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_1 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_defaultBinder_6(); return L_1; } } // System.Void System.Type::CreateBinder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type_CreateBinder_mD7D0BA5DDBCC08A4F9D3A0DA5FE6697BAA29D9E6 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_CreateBinder_mD7D0BA5DDBCC08A4F9D3A0DA5FE6697BAA29D9E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } DefaultBinder_tFFCBC1B63C1667920094F68AB261486C13814AEC * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_0 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_defaultBinder_6(); if (L_0) { goto IL_001a; } } { DefaultBinder_tFFCBC1B63C1667920094F68AB261486C13814AEC * L_1 = (DefaultBinder_tFFCBC1B63C1667920094F68AB261486C13814AEC *)il2cpp_codegen_object_new(DefaultBinder_tFFCBC1B63C1667920094F68AB261486C13814AEC_il2cpp_TypeInfo_var); DefaultBinder__ctor_mB89227403F48F787F92A2CB44164430E037D6306(L_1, /*hidden argument*/NULL); V_0 = L_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); DefaultBinder_tFFCBC1B63C1667920094F68AB261486C13814AEC * L_2 = V_0; InterlockedCompareExchangeImpl<Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *>((Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 **)(((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_address_of_defaultBinder_6()), L_2, (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL); } IL_001a: { return; } } // System.RuntimeTypeHandle System.Type::get_TypeHandle() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D Type_get_TypeHandle_m8D0407AB28EFD8B1C09342CFEF5CCC16D6F5FE52 (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_get_TypeHandle_m8D0407AB28EFD8B1C09342CFEF5CCC16D6F5FE52_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Type_get_TypeHandle_m8D0407AB28EFD8B1C09342CFEF5CCC16D6F5FE52_RuntimeMethod_var); } } // System.RuntimeTypeHandle System.Type::GetTypeHandle(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D Type_GetTypeHandle_mF4790808C172FB5701365C8AA48EC9A132AD60B9 (RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetTypeHandle_mF4790808C172FB5701365C8AA48EC9A132AD60B9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___o0; if (L_0) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral37BEC4B9960B22F35421CD7D639241E56E3D4FB2, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, (String_t*)NULL, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Type_GetTypeHandle_mF4790808C172FB5701365C8AA48EC9A132AD60B9_RuntimeMethod_var); } IL_0014: { RuntimeObject * L_3 = ___o0; NullCheck(L_3); Type_t * L_4 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_3, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5; memset((&L_5), 0, sizeof(L_5)); RuntimeTypeHandle__ctor_mDBF6EF9232CD4D628B9F35842A4865492B540230((&L_5), ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_4, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } } // System.Int32 System.Type::GetArrayRank() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_GetArrayRank_mD3F9AC2DD3601EA4D7F5AF78A02D2919ABFF62DF (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetArrayRank_mD3F9AC2DD3601EA4D7F5AF78A02D2919ABFF62DF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3B2735839D1797305D98210526CD0E0525FA22A9, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetArrayRank_mD3F9AC2DD3601EA4D7F5AF78A02D2919ABFF62DF_RuntimeMethod_var); } } // System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * Type_GetConstructor_mD740DE730AFCDC50893503C3D5FBA7D56FA56C47 (Type_t * __this, int32_t ___bindingAttr0, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder1, int32_t ___callConvention2, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types3, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___modifiers4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetConstructor_mD740DE730AFCDC50893503C3D5FBA7D56FA56C47_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = ___types3; if (L_0) { goto IL_000f; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetConstructor_mD740DE730AFCDC50893503C3D5FBA7D56FA56C47_RuntimeMethod_var); } IL_000f: { V_0 = 0; goto IL_002e; } IL_0013: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___types3; int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = L_3; Type_t * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_6) { goto IL_002a; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_7 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_7, _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Type_GetConstructor_mD740DE730AFCDC50893503C3D5FBA7D56FA56C47_RuntimeMethod_var); } IL_002a: { int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_002e: { int32_t L_9 = V_0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = ___types3; NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))))) { goto IL_0013; } } { int32_t L_11 = ___bindingAttr0; Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_12 = ___binder1; int32_t L_13 = ___callConvention2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = ___types3; ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* L_15 = ___modifiers4; ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_16 = VirtFuncInvoker5< ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, int32_t, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* >::Invoke(33 /* System.Reflection.ConstructorInfo System.Type::GetConstructorImpl(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) */, __this, L_11, L_12, L_13, L_14, L_15); return L_16; } } // System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07 (Type_t * __this, int32_t ___bindingAttr0, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types2, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___modifiers3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = ___types2; 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, _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07_RuntimeMethod_var); } IL_000e: { V_0 = 0; goto IL_002c; } IL_0012: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___types2; int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = L_3; Type_t * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_6) { goto IL_0028; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_7 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_7, _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07_RuntimeMethod_var); } IL_0028: { int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_002c: { int32_t L_9 = V_0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = ___types2; NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))))) { goto IL_0012; } } { int32_t L_11 = ___bindingAttr0; Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_12 = ___binder1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = ___types2; ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* L_14 = ___modifiers3; ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_15 = VirtFuncInvoker5< ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF *, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, int32_t, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* >::Invoke(33 /* System.Reflection.ConstructorInfo System.Type::GetConstructorImpl(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) */, __this, L_11, L_12, 3, L_13, L_14); return L_15; } } // System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * Type_GetConstructor_m4371D7AD6A8E15067C698696B0167323CBC7F3DA (Type_t * __this, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types0, const RuntimeMethod* method) { { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = ___types0; ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_1 = Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07(__this, ((int32_t)20), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_0, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL); return L_1; } } // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder2, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types3, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___modifiers4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { String_t* L_0 = ___name0; 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, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA_RuntimeMethod_var); } IL_000e: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___types3; if (L_2) { goto IL_001d; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA_RuntimeMethod_var); } IL_001d: { V_0 = 0; goto IL_003c; } IL_0021: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = ___types3; int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; Type_t * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_8 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_7, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_8) { goto IL_0038; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_9 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_9, _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA_RuntimeMethod_var); } IL_0038: { int32_t L_10 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_003c: { int32_t L_11 = V_0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_12 = ___types3; NullCheck(L_12); if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))) { goto IL_0021; } } { String_t* L_13 = ___name0; int32_t L_14 = ___bindingAttr1; Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * L_15 = ___binder2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_16 = ___types3; ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* L_17 = ___modifiers4; MethodInfo_t * L_18 = VirtFuncInvoker6< MethodInfo_t *, String_t*, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, int32_t, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* >::Invoke(39 /* System.Reflection.MethodInfo System.Type::GetMethodImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) */, __this, L_13, L_14, L_15, 3, L_16, L_17); return L_18; } } // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5 (Type_t * __this, String_t* ___name0, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { String_t* L_0 = ___name0; 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, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5_RuntimeMethod_var); } IL_000e: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___types1; 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, _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5_RuntimeMethod_var); } IL_001c: { V_0 = 0; goto IL_003a; } IL_0020: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = ___types1; int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; Type_t * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_8 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_7, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_8) { goto IL_0036; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_9 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_9, _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Type_GetMethod_m54E1EF62AFF44AA621E074D123C5C0B3E73A7DD5_RuntimeMethod_var); } IL_0036: { int32_t L_10 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_003a: { int32_t L_11 = V_0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_12 = ___types1; NullCheck(L_12); if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))) { goto IL_0020; } } { String_t* L_13 = ___name0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = ___types1; MethodInfo_t * L_15 = VirtFuncInvoker6< MethodInfo_t *, String_t*, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, int32_t, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* >::Invoke(39 /* System.Reflection.MethodInfo System.Type::GetMethodImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) */, __this, L_13, ((int32_t)28), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, 3, L_14, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL); return L_15; } } // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; 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, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___name0; int32_t L_3 = ___bindingAttr1; MethodInfo_t * L_4 = VirtFuncInvoker6< MethodInfo_t *, String_t*, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, int32_t, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* >::Invoke(39 /* System.Reflection.MethodInfo System.Type::GetMethodImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) */, __this, L_2, L_3, (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, 3, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)NULL, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL); return L_4; } } // System.Reflection.MethodInfo System.Type::GetMethod(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_mB8368D44E32C205D279BA3BB9E6FE1D09D45A6DE (Type_t * __this, String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetMethod_mB8368D44E32C205D279BA3BB9E6FE1D09D45A6DE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; 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, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetMethod_mB8368D44E32C205D279BA3BB9E6FE1D09D45A6DE_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___name0; MethodInfo_t * L_3 = VirtFuncInvoker6< MethodInfo_t *, String_t*, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, int32_t, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* >::Invoke(39 /* System.Reflection.MethodInfo System.Type::GetMethodImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]) */, __this, L_2, ((int32_t)28), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, 3, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)NULL, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL); return L_3; } } // System.Reflection.MethodInfo[] System.Type::GetMethods() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* Type_GetMethods_m50864CCA29AC38E53711C885031DB3793D4C8C60 (Type_t * __this, const RuntimeMethod* method) { { MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* L_0 = VirtFuncInvoker1< MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B*, int32_t >::Invoke(41 /* System.Reflection.MethodInfo[] System.Type::GetMethods(System.Reflection.BindingFlags) */, __this, ((int32_t)28)); return L_0; } } // System.Type[] System.Type::FindInterfaces(System.Reflection.TypeFilter,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* Type_FindInterfaces_mCD9DAF33085BFAE4CEBDCF4374B31AFE9F738549 (Type_t * __this, TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * ___filter0, RuntimeObject * ___filterCriteria1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_FindInterfaces_mCD9DAF33085BFAE4CEBDCF4374B31AFE9F738549_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL; int32_t V_1 = 0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; { TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * L_0 = ___filter0; 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, _stringLiteral4BB4CA75941B7BBC5BC6A12BE44B22FC9C8D234E, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_FindInterfaces_mCD9DAF33085BFAE4CEBDCF4374B31AFE9F738549_RuntimeMethod_var); } IL_000e: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(44 /* System.Type[] System.Type::GetInterfaces() */, __this); V_0 = L_2; V_1 = 0; V_3 = 0; goto IL_0035; } IL_001b: { TypeFilter_t30BB04A68BC9FB949345457F71A9648BDB67FF18 * L_3 = ___filter0; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = V_0; int32_t L_5 = V_3; NullCheck(L_4); int32_t L_6 = L_5; Type_t * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); RuntimeObject * L_8 = ___filterCriteria1; NullCheck(L_3); bool L_9 = TypeFilter_Invoke_m8DAF4C773D296ADEDA08CE83544DF9A06EB98C1C(L_3, L_7, L_8, /*hidden argument*/NULL); if (L_9) { goto IL_002d; } } { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = V_0; int32_t L_11 = V_3; NullCheck(L_10); ArrayElementTypeCheck (L_10, NULL); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (Type_t *)NULL); goto IL_0031; } IL_002d: { int32_t L_12 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_0031: { int32_t L_13 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_0035: { int32_t L_14 = V_3; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_15 = V_0; NullCheck(L_15); if ((((int32_t)L_14) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length))))))) { goto IL_001b; } } { int32_t L_16 = V_1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = V_0; NullCheck(L_17); if ((!(((uint32_t)L_16) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))) { goto IL_0043; } } { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = V_0; return L_18; } IL_0043: { int32_t L_19 = V_1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)L_19); V_2 = L_20; V_1 = 0; V_4 = 0; goto IL_006e; } IL_0051: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_21 = V_0; int32_t L_22 = V_4; NullCheck(L_21); int32_t L_23 = L_22; Type_t * L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_25 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_24, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_25) { goto IL_0068; } } { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_26 = V_2; int32_t L_27 = V_1; int32_t L_28 = L_27; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_29 = V_0; int32_t L_30 = V_4; NullCheck(L_29); int32_t L_31 = L_30; Type_t * L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31)); NullCheck(L_26); ArrayElementTypeCheck (L_26, L_32); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(L_28), (Type_t *)L_32); } IL_0068: { int32_t L_33 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); } IL_006e: { int32_t L_34 = V_4; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_35 = V_0; NullCheck(L_35); if ((((int32_t)L_34) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length))))))) { goto IL_0051; } } { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_36 = V_2; return L_36; } } // System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * Type_GetProperty_m724FAA955DCE10E0C46A9485BCEA32C1CE608130 (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetProperty_m724FAA955DCE10E0C46A9485BCEA32C1CE608130_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; 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, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetProperty_m724FAA955DCE10E0C46A9485BCEA32C1CE608130_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___name0; int32_t L_3 = ___bindingAttr1; PropertyInfo_t * L_4 = VirtFuncInvoker6< PropertyInfo_t *, String_t*, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* >::Invoke(50 /* System.Reflection.PropertyInfo System.Type::GetPropertyImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[]) */, __this, L_2, L_3, (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, (Type_t *)NULL, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)NULL, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL); return L_4; } } // System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Type,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * Type_GetProperty_m6F2C962FDCCD4966698E40A631F8DD9F4BF5A1C0 (Type_t * __this, String_t* ___name0, Type_t * ___returnType1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetProperty_m6F2C962FDCCD4966698E40A631F8DD9F4BF5A1C0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; 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, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetProperty_m6F2C962FDCCD4966698E40A631F8DD9F4BF5A1C0_RuntimeMethod_var); } IL_000e: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = ___types2; 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, _stringLiteralE7B1FFF7007B635892A8F2C7C17F4FABC7AA2F8C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Type_GetProperty_m6F2C962FDCCD4966698E40A631F8DD9F4BF5A1C0_RuntimeMethod_var); } IL_001c: { String_t* L_4 = ___name0; Type_t * L_5 = ___returnType1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = ___types2; PropertyInfo_t * L_7 = VirtFuncInvoker6< PropertyInfo_t *, String_t*, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* >::Invoke(50 /* System.Reflection.PropertyInfo System.Type::GetPropertyImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[]) */, __this, L_4, ((int32_t)28), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_5, L_6, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL); return L_7; } } // System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t * Type_GetProperty_mB92E711C0B593302FC700804ECB78B45932E12B3 (Type_t * __this, String_t* ___name0, Type_t * ___returnType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetProperty_mB92E711C0B593302FC700804ECB78B45932E12B3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; 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, _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetProperty_mB92E711C0B593302FC700804ECB78B45932E12B3_RuntimeMethod_var); } IL_000e: { Type_t * L_2 = ___returnType1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_2, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_0022; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteral98DC75F74144873452778C5C7BA316017B29D9EB, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Type_GetProperty_mB92E711C0B593302FC700804ECB78B45932E12B3_RuntimeMethod_var); } IL_0022: { String_t* L_5 = ___name0; Type_t * L_6 = ___returnType1; PropertyInfo_t * L_7 = VirtFuncInvoker6< PropertyInfo_t *, String_t*, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, Type_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* >::Invoke(50 /* System.Reflection.PropertyInfo System.Type::GetPropertyImpl(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type,System.Type[],System.Reflection.ParameterModifier[]) */, __this, L_5, ((int32_t)28), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_6, (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)NULL, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL); return L_7; } } // System.Reflection.PropertyInfo[] System.Type::GetProperties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* Type_GetProperties_mEAE2A4049447E8BD9D18989A80E4C8BC742AE97D (Type_t * __this, const RuntimeMethod* method) { { PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E* L_0 = VirtFuncInvoker1< PropertyInfoU5BU5D_tAD8E99B12FF99CA4F2EA37B612DE68E112B4CF7E*, int32_t >::Invoke(51 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, __this, ((int32_t)28)); return L_0; } } // System.Type System.Type::GetNestedType(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetNestedType_m30D9D5DF0FB7ADAED9B54CC02DCC5D8C4E873F45 (Type_t * __this, String_t* ___name0, const RuntimeMethod* method) { { String_t* L_0 = ___name0; Type_t * L_1 = VirtFuncInvoker2< Type_t *, String_t*, int32_t >::Invoke(54 /* System.Type System.Type::GetNestedType(System.String,System.Reflection.BindingFlags) */, __this, L_0, ((int32_t)28)); return L_1; } } // System.Reflection.MemberInfo[] System.Type::GetMember(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* Type_GetMember_m715D5865845665F5A72E927F52FB5CFA1BB3D800 (Type_t * __this, String_t* ___name0, const RuntimeMethod* method) { { String_t* L_0 = ___name0; MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* L_1 = VirtFuncInvoker2< MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6*, String_t*, int32_t >::Invoke(56 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, __this, L_0, ((int32_t)28)); return L_1; } } // System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* Type_GetMember_mBB418C55F1AA73A66179D3205B69B618887D1E00 (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method) { { String_t* L_0 = ___name0; int32_t L_1 = ___bindingAttr1; MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* L_2 = VirtFuncInvoker3< MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6*, String_t*, int32_t, int32_t >::Invoke(57 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags) */, __this, L_0, ((int32_t)191), L_1); return L_2; } } // System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemberInfoU5BU5D_t6A57DDAF4E5321D22FB4C021559637EB126BF6B6* Type_GetMember_m1232F7B9F48FE4809F2D7F2FBC190D14489BB115 (Type_t * __this, String_t* ___name0, int32_t ___type1, int32_t ___bindingAttr2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetMember_m1232F7B9F48FE4809F2D7F2FBC190D14489BB115_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3B2735839D1797305D98210526CD0E0525FA22A9, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetMember_m1232F7B9F48FE4809F2D7F2FBC190D14489BB115_RuntimeMethod_var); } } // System.Boolean System.Type::get_IsNested() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsNested_m0191026EDE15331C2DD97FC106E1C86825722F37 (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_get_IsNested_m0191026EDE15331C2DD97FC106E1C86825722F37_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, __this); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_0, (Type_t *)NULL, /*hidden argument*/NULL); return L_1; } } // System.Reflection.TypeAttributes System.Type::get_Attributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_get_Attributes_m8B229CC7A4DDE25E0EEB1A9F09FC61C499A72163 (Type_t * __this, const RuntimeMethod* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(88 /* System.Reflection.TypeAttributes System.Type::GetAttributeFlagsImpl() */, __this); return L_0; } } // System.Reflection.GenericParameterAttributes System.Type::get_GenericParameterAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_get_GenericParameterAttributes_m043281693416BED855BD243DBD5328BC69A3CAA9 (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_get_GenericParameterAttributes_m043281693416BED855BD243DBD5328BC69A3CAA9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Type_get_GenericParameterAttributes_m043281693416BED855BD243DBD5328BC69A3CAA9_RuntimeMethod_var); } } // System.Boolean System.Type::get_IsNotPublic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsNotPublic_mF21439101FF78B7EB47B92C99EB20F179FCFDE76 (Type_t * __this, const RuntimeMethod* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(88 /* System.Reflection.TypeAttributes System.Type::GetAttributeFlagsImpl() */, __this); return (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)7))) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Type::get_IsPublic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPublic_mC1B34517A62C56867856DFFE5C7797E7B6CF536C (Type_t * __this, const RuntimeMethod* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(88 /* System.Reflection.TypeAttributes System.Type::GetAttributeFlagsImpl() */, __this); return (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)7))) == ((int32_t)1))? 1 : 0); } } // System.Boolean System.Type::get_IsNestedPublic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsNestedPublic_m214CC3E241549EDCA1B438E5A66E4B3C66EA5C14 (Type_t * __this, const RuntimeMethod* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(88 /* System.Reflection.TypeAttributes System.Type::GetAttributeFlagsImpl() */, __this); return (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)7))) == ((int32_t)2))? 1 : 0); } } // System.Boolean System.Type::get_IsNestedAssembly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsNestedAssembly_m26AFF83CEEB59FB7F2E571EA55FA2E217BEC8CA8 (Type_t * __this, const RuntimeMethod* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(88 /* System.Reflection.TypeAttributes System.Type::GetAttributeFlagsImpl() */, __this); return (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)7))) == ((int32_t)5))? 1 : 0); } } // System.Boolean System.Type::get_IsExplicitLayout() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsExplicitLayout_mBBF9DA413CB5556D8294595BD177FC746C2CFA78 (Type_t * __this, const RuntimeMethod* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(88 /* System.Reflection.TypeAttributes System.Type::GetAttributeFlagsImpl() */, __this); return (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)24)))) == ((int32_t)((int32_t)16)))? 1 : 0); } } // System.Boolean System.Type::get_IsClass() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsClass_m760C57B1D66D7CBF284495764BB7EFC6E7D74B0F (Type_t * __this, const RuntimeMethod* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(88 /* System.Reflection.TypeAttributes System.Type::GetAttributeFlagsImpl() */, __this); if (((int32_t)((int32_t)L_0&(int32_t)((int32_t)32)))) { goto IL_0015; } } { bool L_1 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(__this, /*hidden argument*/NULL); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } IL_0015: { return (bool)0; } } // System.Boolean System.Type::get_IsInterface() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; { V_0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)__this, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_1 = RuntimeType_op_Inequality_mA98A719712593FEE5DCCFDB47CCABDB58BEE1B0D(L_0, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0017; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; bool L_3 = RuntimeTypeHandle_IsInterface_mA5732C8F02DFDAFA2975448C93D1DF34978D3FFF(L_2, /*hidden argument*/NULL); return L_3; } IL_0017: { int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(88 /* System.Reflection.TypeAttributes System.Type::GetAttributeFlagsImpl() */, __this); return (bool)((((int32_t)((int32_t)((int32_t)L_4&(int32_t)((int32_t)32)))) == ((int32_t)((int32_t)32)))? 1 : 0); } } // System.Boolean System.Type::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8 (Type_t * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker0< bool >::Invoke(87 /* System.Boolean System.Type::IsValueTypeImpl() */, __this); return L_0; } } // System.Boolean System.Type::get_IsAbstract() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsAbstract_m769E8E92F368822B8AB5354BB0D123BDDD605D09 (Type_t * __this, const RuntimeMethod* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(88 /* System.Reflection.TypeAttributes System.Type::GetAttributeFlagsImpl() */, __this); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)128)))) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Type::get_IsSealed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsSealed_mC42D173AFAF7802291DEA2C3D691340F2375FD9A (Type_t * __this, const RuntimeMethod* method) { { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(88 /* System.Reflection.TypeAttributes System.Type::GetAttributeFlagsImpl() */, __this); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)256)))) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Type::get_IsEnum() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsEnum_m2DE7827AE637AA14FCF4629C91A6CBE47DD05EAE (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_get_IsEnum_m2DE7827AE637AA14FCF4629C91A6CBE47DD05EAE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))->get_EnumType_11(); bool L_1 = VirtFuncInvoker1< bool, Type_t * >::Invoke(106 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, __this, L_0); return L_1; } } // System.Boolean System.Type::get_IsSerializable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsSerializable_mBCC47F349F6680EB15E30D246FB4A2764251C376 (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_get_IsSerializable_mBCC47F349F6680EB15E30D246FB4A2764251C376_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(88 /* System.Reflection.TypeAttributes System.Type::GetAttributeFlagsImpl() */, __this); if (!((int32_t)((int32_t)L_0&(int32_t)((int32_t)8192)))) { goto IL_0010; } } { return (bool)1; } IL_0010: { Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::get_UnderlyingSystemType() */, __this); V_0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_2 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_3 = RuntimeType_op_Inequality_mA98A719712593FEE5DCCFDB47CCABDB58BEE1B0D(L_2, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_002c; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0; NullCheck(L_4); bool L_5 = RuntimeType_IsSpecialSerializableType_m531BB860EC93F0248F0D013EC176FE337E94A72E(L_4, /*hidden argument*/NULL); return L_5; } IL_002c: { return (bool)0; } } // System.Boolean System.Type::get_IsArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE (Type_t * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker0< bool >::Invoke(89 /* System.Boolean System.Type::IsArrayImpl() */, __this); return L_0; } } // System.Boolean System.Type::get_IsSzArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsSzArray_m89BB77E5D8A1FD2048C63BC8C2BFE08B1886874C (Type_t * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Type::get_IsGenericType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsGenericType_m50E659248767E53CF1605D366F1BBA6A73DF1593 (Type_t * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Type::get_IsGenericTypeDefinition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsGenericTypeDefinition_m5D4E498A0C1AB79F1D963473E9007C5F9BEE13C7 (Type_t * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Type::get_IsGenericParameter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsGenericParameter_mEF9FCB4C80E6374DF027129FBA92FBB513C28777 (Type_t * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Int32 System.Type::get_GenericParameterPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_get_GenericParameterPosition_m0E7DF7C74C99BCAF03F594E1701D0FD49D998E12 (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_get_GenericParameterPosition_m0E7DF7C74C99BCAF03F594E1701D0FD49D998E12_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDBDD7B51A325AE50AF055F075B2CCF50439827EF, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_get_GenericParameterPosition_m0E7DF7C74C99BCAF03F594E1701D0FD49D998E12_RuntimeMethod_var); } } // System.Boolean System.Type::get_ContainsGenericParameters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_ContainsGenericParameters_mB60E503843AC9F46C7E513B46B8437066A86BA65 (Type_t * __this, const RuntimeMethod* method) { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL; int32_t V_1 = 0; { bool L_0 = Type_get_HasElementType_m598BEFE66F168CE1D1132C87D394B2EF41F449BF(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0014; } } { Type_t * L_1 = Type_GetRootElementType_mE4F0579E18FAAEEB2DB86F1315BFBEC1A9A2FD56(__this, /*hidden argument*/NULL); NullCheck(L_1); bool L_2 = VirtFuncInvoker0< bool >::Invoke(78 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_1); return L_2; } IL_0014: { bool L_3 = VirtFuncInvoker0< bool >::Invoke(76 /* System.Boolean System.Type::get_IsGenericParameter() */, __this); if (!L_3) { goto IL_001e; } } { return (bool)1; } IL_001e: { bool L_4 = VirtFuncInvoker0< bool >::Invoke(74 /* System.Boolean System.Type::get_IsGenericType() */, __this); if (L_4) { goto IL_0028; } } { return (bool)0; } IL_0028: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(98 /* System.Type[] System.Type::GetGenericArguments() */, __this); V_0 = L_5; V_1 = 0; goto IL_0043; } IL_0033: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = V_0; int32_t L_7 = V_1; NullCheck(L_6); int32_t L_8 = L_7; Type_t * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); NullCheck(L_9); bool L_10 = VirtFuncInvoker0< bool >::Invoke(78 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_9); if (!L_10) { goto IL_003f; } } { return (bool)1; } IL_003f: { int32_t L_11 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_0043: { int32_t L_12 = V_1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = V_0; NullCheck(L_13); if ((((int32_t)L_12) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length))))))) { goto IL_0033; } } { return (bool)0; } } // System.Type[] System.Type::GetGenericParameterConstraints() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* Type_GetGenericParameterConstraints_m6D516124A8F4DED67CE2FA6BCE221B28271A5E69 (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetGenericParameterConstraints_m6D516124A8F4DED67CE2FA6BCE221B28271A5E69_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = VirtFuncInvoker0< bool >::Invoke(76 /* System.Boolean System.Type::get_IsGenericParameter() */, __this); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDBDD7B51A325AE50AF055F075B2CCF50439827EF, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Type_GetGenericParameterConstraints_m6D516124A8F4DED67CE2FA6BCE221B28271A5E69_RuntimeMethod_var); } IL_0018: { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E(L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Type_GetGenericParameterConstraints_m6D516124A8F4DED67CE2FA6BCE221B28271A5E69_RuntimeMethod_var); } } // System.Boolean System.Type::get_IsByRef() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8 (Type_t * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker0< bool >::Invoke(90 /* System.Boolean System.Type::IsByRefImpl() */, __this); return L_0; } } // System.Boolean System.Type::get_IsPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57 (Type_t * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker0< bool >::Invoke(91 /* System.Boolean System.Type::IsPointerImpl() */, __this); return L_0; } } // System.Boolean System.Type::get_IsPrimitive() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPrimitive_m8E39430EE4B70E1AE690B51E9BE681C7758DFF5A (Type_t * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker0< bool >::Invoke(92 /* System.Boolean System.Type::IsPrimitiveImpl() */, __this); return L_0; } } // System.Boolean System.Type::get_IsCOMObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsCOMObject_m8A4083D3B8D11015F554755827249ABE5E996381 (Type_t * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker0< bool >::Invoke(93 /* System.Boolean System.Type::IsCOMObjectImpl() */, __this); return L_0; } } // System.Boolean System.Type::get_HasElementType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_HasElementType_m598BEFE66F168CE1D1132C87D394B2EF41F449BF (Type_t * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker0< bool >::Invoke(100 /* System.Boolean System.Type::HasElementTypeImpl() */, __this); return L_0; } } // System.Boolean System.Type::get_IsContextful() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsContextful_m02EFD5BDDC6E265AE3B40B144D679AEFACEE4C8A (Type_t * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker0< bool >::Invoke(95 /* System.Boolean System.Type::IsContextfulImpl() */, __this); return L_0; } } // System.Boolean System.Type::get_IsMarshalByRef() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsMarshalByRef_mE12C8300F5A8BB91C6319CE71994EA3D1563C465 (Type_t * __this, const RuntimeMethod* method) { { bool L_0 = VirtFuncInvoker0< bool >::Invoke(96 /* System.Boolean System.Type::IsMarshalByRefImpl() */, __this); return L_0; } } // System.Boolean System.Type::IsValueTypeImpl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_IsValueTypeImpl_m4B1E66F4618C4EA806BC1E16CA4BC8C22C41F0EE (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_IsValueTypeImpl_m4B1E66F4618C4EA806BC1E16CA4BC8C22C41F0EE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var))->get_ValueType_10(); bool L_1 = VirtFuncInvoker1< bool, Type_t * >::Invoke(106 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, __this, L_0); return L_1; } } // System.Type System.Type::MakeGenericType(System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_MakeGenericType_m345117714886CAD8E324AD1DDCBB6E9291E9DB9A (Type_t * __this, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___typeArguments0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_MakeGenericType_m345117714886CAD8E324AD1DDCBB6E9291E9DB9A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3B2735839D1797305D98210526CD0E0525FA22A9, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_MakeGenericType_m345117714886CAD8E324AD1DDCBB6E9291E9DB9A_RuntimeMethod_var); } } // System.Boolean System.Type::IsContextfulImpl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_IsContextfulImpl_mA87596B9B16B1787D26BCD68E8792444942DD4F2 (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_IsContextfulImpl_mA87596B9B16B1787D26BCD68E8792444942DD4F2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL); NullCheck(L_1); bool L_2 = VirtFuncInvoker1< bool, Type_t * >::Invoke(108 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_1, __this); return L_2; } } // System.Boolean System.Type::IsMarshalByRefImpl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_IsMarshalByRefImpl_m916A4A6AE50F3E02643D6BCE414217357A18D447 (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_IsMarshalByRefImpl_m916A4A6AE50F3E02643D6BCE414217357A18D447_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL); NullCheck(L_1); bool L_2 = VirtFuncInvoker1< bool, Type_t * >::Invoke(108 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_1, __this); return L_2; } } // System.Type[] System.Type::GetGenericArguments() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* Type_GetGenericArguments_m2AADF226E686E336F249AE68EC3533562197FC0F (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetGenericArguments_m2AADF226E686E336F249AE68EC3533562197FC0F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3B2735839D1797305D98210526CD0E0525FA22A9, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetGenericArguments_m2AADF226E686E336F249AE68EC3533562197FC0F_RuntimeMethod_var); } } // System.Type System.Type::GetGenericTypeDefinition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetGenericTypeDefinition_m1B879BD97CF6B59E4CD8FF5224B913117D8D9E6B (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetGenericTypeDefinition_m1B879BD97CF6B59E4CD8FF5224B913117D8D9E6B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3B2735839D1797305D98210526CD0E0525FA22A9, /*hidden argument*/NULL); NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_1 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_1, L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetGenericTypeDefinition_m1B879BD97CF6B59E4CD8FF5224B913117D8D9E6B_RuntimeMethod_var); } } // System.Type System.Type::GetRootElementType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetRootElementType_mE4F0579E18FAAEEB2DB86F1315BFBEC1A9A2FD56 (Type_t * __this, const RuntimeMethod* method) { Type_t * V_0 = NULL; { V_0 = __this; goto IL_000b; } IL_0004: { Type_t * L_0 = V_0; NullCheck(L_0); Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_0); V_0 = L_1; } IL_000b: { Type_t * L_2 = V_0; NullCheck(L_2); bool L_3 = Type_get_HasElementType_m598BEFE66F168CE1D1132C87D394B2EF41F449BF(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0004; } } { Type_t * L_4 = V_0; return L_4; } } // System.String[] System.Type::GetEnumNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* Type_GetEnumNames_m41CAB9298D20E6F227CB8A01073081FFEE554E31 (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetEnumNames_m41CAB9298D20E6F227CB8A01073081FFEE554E31_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_0 = NULL; RuntimeArray * V_1 = NULL; { bool L_0 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, __this); if (L_0) { goto IL_001d; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_2, L_1, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Type_GetEnumNames_m41CAB9298D20E6F227CB8A01073081FFEE554E31_RuntimeMethod_var); } IL_001d: { Type_GetEnumData_m2425B25E15F7A56D7ED172AC5E4FF0AF87BC9883(__this, (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**)(&V_0), (RuntimeArray **)(&V_1), /*hidden argument*/NULL); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = V_0; return L_3; } } // System.Array System.Type::GetEnumRawConstantValues() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Type_GetEnumRawConstantValues_m665064C1BD51087A300A882E46B4992AD3F7BBD2 (Type_t * __this, const RuntimeMethod* method) { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_0 = NULL; RuntimeArray * V_1 = NULL; { Type_GetEnumData_m2425B25E15F7A56D7ED172AC5E4FF0AF87BC9883(__this, (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E**)(&V_0), (RuntimeArray **)(&V_1), /*hidden argument*/NULL); RuntimeArray * L_0 = V_1; return L_0; } } // System.Void System.Type::GetEnumData(System.String[]&,System.Array&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type_GetEnumData_m2425B25E15F7A56D7ED172AC5E4FF0AF87BC9883 (Type_t * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** ___enumNames0, RuntimeArray ** ___enumValues1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetEnumData_m2425B25E15F7A56D7ED172AC5E4FF0AF87BC9883_MetadataUsageId); s_Il2CppMethodInitialized = true; } FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_0 = NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_2 = NULL; RuntimeObject* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; String_t* V_7 = NULL; RuntimeObject * V_8 = NULL; bool V_9 = false; { FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_0 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(43 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, __this, ((int32_t)56)); V_0 = L_0; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_1 = V_0; NullCheck(L_1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))); V_1 = L_2; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_3 = V_0; NullCheck(L_3); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))); V_2 = L_4; V_4 = 0; goto IL_0040; } IL_0020: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = V_2; int32_t L_6 = V_4; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_7 = V_0; int32_t L_8 = V_4; NullCheck(L_7); int32_t L_9 = L_8; FieldInfo_t * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_10); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_11); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (String_t*)L_11); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1; int32_t L_13 = V_4; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_14 = V_0; int32_t L_15 = V_4; NullCheck(L_14); int32_t L_16 = L_15; FieldInfo_t * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); NullCheck(L_17); RuntimeObject * L_18 = VirtFuncInvoker0< RuntimeObject * >::Invoke(27 /* System.Object System.Reflection.FieldInfo::GetRawConstantValue() */, L_17); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_18); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (RuntimeObject *)L_18); int32_t L_19 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); } IL_0040: { int32_t L_20 = V_4; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_21 = V_0; NullCheck(L_21); if ((((int32_t)L_20) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length))))))) { goto IL_0020; } } { IL2CPP_RUNTIME_CLASS_INIT(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var); Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * L_22 = ((Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var))->get_Default_1(); V_3 = L_22; V_5 = 1; goto IL_00af; } IL_0052: { int32_t L_23 = V_5; V_6 = L_23; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_24 = V_2; int32_t L_25 = V_5; NullCheck(L_24); int32_t L_26 = L_25; String_t* L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26)); V_7 = L_27; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = V_1; int32_t L_29 = V_5; NullCheck(L_28); int32_t L_30 = L_29; RuntimeObject * L_31 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_30)); V_8 = L_31; V_9 = (bool)0; goto IL_0088; } IL_0067: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_32 = V_2; int32_t L_33 = V_6; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_34 = V_2; int32_t L_35 = V_6; NullCheck(L_34); int32_t L_36 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)1)); String_t* L_37 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_36)); NullCheck(L_32); ArrayElementTypeCheck (L_32, L_37); (L_32)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (String_t*)L_37); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = V_1; int32_t L_39 = V_6; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_40 = V_1; int32_t L_41 = V_6; NullCheck(L_40); int32_t L_42 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1)); RuntimeObject * L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42)); NullCheck(L_38); ArrayElementTypeCheck (L_38, L_43); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(L_39), (RuntimeObject *)L_43); int32_t L_44 = V_6; V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)1)); V_9 = (bool)1; int32_t L_45 = V_6; if (!L_45) { goto IL_0099; } } IL_0088: { RuntimeObject* L_46 = V_3; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = V_1; int32_t L_48 = V_6; NullCheck(L_47); int32_t L_49 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)1)); RuntimeObject * L_50 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_49)); RuntimeObject * L_51 = V_8; NullCheck(L_46); int32_t L_52 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_46, L_50, L_51); if ((((int32_t)L_52) > ((int32_t)0))) { goto IL_0067; } } IL_0099: { bool L_53 = V_9; if (!L_53) { goto IL_00a9; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_54 = V_2; int32_t L_55 = V_6; String_t* L_56 = V_7; NullCheck(L_54); ArrayElementTypeCheck (L_54, L_56); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(L_55), (String_t*)L_56); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_57 = V_1; int32_t L_58 = V_6; RuntimeObject * L_59 = V_8; NullCheck(L_57); ArrayElementTypeCheck (L_57, L_59); (L_57)->SetAt(static_cast<il2cpp_array_size_t>(L_58), (RuntimeObject *)L_59); } IL_00a9: { int32_t L_60 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_60, (int32_t)1)); } IL_00af: { int32_t L_61 = V_5; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_62 = V_1; NullCheck(L_62); if ((((int32_t)L_61) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_62)->max_length))))))) { goto IL_0052; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** L_63 = ___enumNames0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_64 = V_2; *((RuntimeObject **)L_63) = (RuntimeObject *)L_64; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_63, (void*)(RuntimeObject *)L_64); RuntimeArray ** L_65 = ___enumValues1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_66 = V_1; *((RuntimeObject **)L_65) = (RuntimeObject *)L_66; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_65, (void*)(RuntimeObject *)L_66); return; } } // System.Type System.Type::GetEnumUnderlyingType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetEnumUnderlyingType_m4339ED321809282C1C2313401AD0694868CDF64F (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetEnumUnderlyingType_m4339ED321809282C1C2313401AD0694868CDF64F_MetadataUsageId); s_Il2CppMethodInitialized = true; } FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_0 = NULL; { bool L_0 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, __this); if (L_0) { goto IL_001d; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_2, L_1, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Type_GetEnumUnderlyingType_m4339ED321809282C1C2313401AD0694868CDF64F_RuntimeMethod_var); } IL_001d: { FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_3 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(43 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, __this, ((int32_t)52)); V_0 = L_3; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_4 = V_0; if (!L_4) { goto IL_002f; } } { FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_5 = V_0; NullCheck(L_5); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))) == ((int32_t)1))) { goto IL_0044; } } IL_002f: { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0E2FDC41541BE5C40FE345A527562C24759F781B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, L_6, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Type_GetEnumUnderlyingType_m4339ED321809282C1C2313401AD0694868CDF64F_RuntimeMethod_var); } IL_0044: { FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_8 = V_0; NullCheck(L_8); int32_t L_9 = 0; FieldInfo_t * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); NullCheck(L_10); Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(18 /* System.Type System.Reflection.FieldInfo::get_FieldType() */, L_10); return L_11; } } // System.Boolean System.Type::IsEnumDefined(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_IsEnumDefined_m114D71E42434449C768E715EF83AEE4C69B1E961 (Type_t * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_IsEnumDefined_m114D71E42434449C768E715EF83AEE4C69B1E961_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; { RuntimeObject * L_0 = ___value0; 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, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_IsEnumDefined_m114D71E42434449C768E715EF83AEE4C69B1E961_RuntimeMethod_var); } IL_000e: { bool L_2 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, __this); if (L_2) { goto IL_002b; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, L_3, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Type_IsEnumDefined_m114D71E42434449C768E715EF83AEE4C69B1E961_RuntimeMethod_var); } IL_002b: { RuntimeObject * L_5 = ___value0; NullCheck(L_5); Type_t * L_6 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_5, /*hidden argument*/NULL); V_0 = L_6; Type_t * L_7 = V_0; NullCheck(L_7); bool L_8 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_7); if (!L_8) { goto IL_0072; } } { Type_t * L_9 = V_0; NullCheck(L_9); bool L_10 = VirtFuncInvoker1< bool, Type_t * >::Invoke(109 /* System.Boolean System.Type::IsEquivalentTo(System.Type) */, L_9, __this); if (L_10) { goto IL_006b; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = L_11; Type_t * L_13 = V_0; NullCheck(L_13); String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_13); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_14); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_14); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = L_12; String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this); NullCheck(L_15); ArrayElementTypeCheck (L_15, L_16); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_16); String_t* L_17 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral19D5B110F19B2190575B7810E1FA91334E8E400F, L_15, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_18 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_18, L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, Type_IsEnumDefined_m114D71E42434449C768E715EF83AEE4C69B1E961_RuntimeMethod_var); } IL_006b: { Type_t * L_19 = V_0; NullCheck(L_19); Type_t * L_20 = VirtFuncInvoker0< Type_t * >::Invoke(102 /* System.Type System.Type::GetEnumUnderlyingType() */, L_19); V_0 = L_20; } IL_0072: { Type_t * L_21 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_22 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_23 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_22, /*hidden argument*/NULL); bool L_24 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_21, L_23, /*hidden argument*/NULL); if (!L_24) { goto IL_0097; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = VirtFuncInvoker0< StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(101 /* System.String[] System.Type::GetEnumNames() */, __this); RuntimeObject * L_26 = ___value0; int32_t L_27 = Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_25, L_26, /*hidden argument*/Array_IndexOf_TisRuntimeObject_m40554FA47BA74C45E33C913F60628DD0E83DB370_RuntimeMethod_var); if ((((int32_t)L_27) < ((int32_t)0))) { goto IL_0095; } } { return (bool)1; } IL_0095: { return (bool)0; } IL_0097: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_29 = Type_IsIntegerType_m19478B79237AE0C92BE81AEEAD7D9DD36DFC0B27(L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_00ef; } } { Type_t * L_30 = VirtFuncInvoker0< Type_t * >::Invoke(102 /* System.Type System.Type::GetEnumUnderlyingType() */, __this); V_1 = L_30; Type_t * L_31 = V_1; NullCheck(L_31); int32_t L_32 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.TypeCode System.Type::GetTypeCodeImpl() */, L_31); Type_t * L_33 = V_0; NullCheck(L_33); int32_t L_34 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.TypeCode System.Type::GetTypeCodeImpl() */, L_33); if ((((int32_t)L_32) == ((int32_t)L_34))) { goto IL_00dc; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = L_35; Type_t * L_37 = V_0; NullCheck(L_37); String_t* L_38 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_37); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_38); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_38); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = L_36; Type_t * L_40 = V_1; NullCheck(L_40); String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_40); NullCheck(L_39); ArrayElementTypeCheck (L_39, L_41); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_41); String_t* L_42 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralEDFBE774D07FEF0E86FBB029261CD370F5EFD9E7, L_39, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_43 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_43, L_42, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, Type_IsEnumDefined_m114D71E42434449C768E715EF83AEE4C69B1E961_RuntimeMethod_var); } IL_00dc: { RuntimeArray * L_44 = Type_GetEnumRawConstantValues_m665064C1BD51087A300A882E46B4992AD3F7BBD2(__this, /*hidden argument*/NULL); RuntimeObject * L_45 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_46 = Type_BinarySearch_mFD3B61C83B2C32CE682561A76530C0F5F3E0484B(L_44, L_45, /*hidden argument*/NULL); return (bool)((((int32_t)((((int32_t)L_46) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_00ef: { bool L_47 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1(); if (!L_47) { goto IL_011e; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_48 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_49 = L_48; Type_t * L_50 = V_0; NullCheck(L_50); String_t* L_51 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_50); NullCheck(L_49); ArrayElementTypeCheck (L_49, L_51); (L_49)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_51); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_52 = L_49; Type_t * L_53 = VirtFuncInvoker0< Type_t * >::Invoke(102 /* System.Type System.Type::GetEnumUnderlyingType() */, __this); NullCheck(L_52); ArrayElementTypeCheck (L_52, L_53); (L_52)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_53); String_t* L_54 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralEDFBE774D07FEF0E86FBB029261CD370F5EFD9E7, L_52, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_55 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_55, L_54, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_55, Type_IsEnumDefined_m114D71E42434449C768E715EF83AEE4C69B1E961_RuntimeMethod_var); } IL_011e: { String_t* L_56 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFEC5F94EEF090E85867493394092E5DE8BF859D3, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_57 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_57, L_56, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_57, Type_IsEnumDefined_m114D71E42434449C768E715EF83AEE4C69B1E961_RuntimeMethod_var); } } // System.String System.Type::GetEnumName(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Type_GetEnumName_m6A525F2B6A8F48D6B2AE0FC16EE3CF9853E9BEDD (Type_t * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetEnumName_m6A525F2B6A8F48D6B2AE0FC16EE3CF9853E9BEDD_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; int32_t V_1 = 0; { RuntimeObject * L_0 = ___value0; 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, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetEnumName_m6A525F2B6A8F48D6B2AE0FC16EE3CF9853E9BEDD_RuntimeMethod_var); } IL_000e: { bool L_2 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, __this); if (L_2) { goto IL_002b; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3435968A1FA5DC7806024802A561C1886C22803B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_4, L_3, _stringLiteral7E2E0220A2E59DA002766466DBCE602CD7D5E7BD, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Type_GetEnumName_m6A525F2B6A8F48D6B2AE0FC16EE3CF9853E9BEDD_RuntimeMethod_var); } IL_002b: { RuntimeObject * L_5 = ___value0; NullCheck(L_5); Type_t * L_6 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_5, /*hidden argument*/NULL); V_0 = L_6; Type_t * L_7 = V_0; NullCheck(L_7); bool L_8 = VirtFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_7); if (L_8) { goto IL_0057; } } { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_10 = Type_IsIntegerType_m19478B79237AE0C92BE81AEEAD7D9DD36DFC0B27(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0057; } } { String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral850828716F9C5476A885E4AF4B1592EDAF8390BA, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_12, L_11, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, Type_GetEnumName_m6A525F2B6A8F48D6B2AE0FC16EE3CF9853E9BEDD_RuntimeMethod_var); } IL_0057: { RuntimeArray * L_13 = Type_GetEnumRawConstantValues_m665064C1BD51087A300A882E46B4992AD3F7BBD2(__this, /*hidden argument*/NULL); RuntimeObject * L_14 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); int32_t L_15 = Type_BinarySearch_mFD3B61C83B2C32CE682561A76530C0F5F3E0484B(L_13, L_14, /*hidden argument*/NULL); V_1 = L_15; int32_t L_16 = V_1; if ((((int32_t)L_16) < ((int32_t)0))) { goto IL_0071; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = VirtFuncInvoker0< StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(101 /* System.String[] System.Type::GetEnumNames() */, __this); int32_t L_18 = V_1; NullCheck(L_17); int32_t L_19 = L_18; String_t* L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); return L_20; } IL_0071: { return (String_t*)NULL; } } // System.Int32 System.Type::BinarySearch(System.Array,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_BinarySearch_mFD3B61C83B2C32CE682561A76530C0F5F3E0484B (RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_BinarySearch_mFD3B61C83B2C32CE682561A76530C0F5F3E0484B_MetadataUsageId); s_Il2CppMethodInitialized = true; } UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* V_0 = NULL; uint64_t V_1 = 0; int32_t V_2 = 0; { RuntimeArray * L_0 = ___array0; NullCheck(L_0); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_0, /*hidden argument*/NULL); UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_2 = (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)SZArrayNew(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4_il2cpp_TypeInfo_var, (uint32_t)L_1); V_0 = L_2; V_2 = 0; goto IL_0023; } IL_0010: { UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_3 = V_0; int32_t L_4 = V_2; RuntimeArray * L_5 = ___array0; int32_t L_6 = V_2; NullCheck(L_5); RuntimeObject * L_7 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_5, L_6, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); uint64_t L_8 = Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5(L_7, /*hidden argument*/NULL); NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (uint64_t)L_8); int32_t L_9 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_0023: { int32_t L_10 = V_2; RuntimeArray * L_11 = ___array0; NullCheck(L_11); int32_t L_12 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_11, /*hidden argument*/NULL); if ((((int32_t)L_10) < ((int32_t)L_12))) { goto IL_0010; } } { RuntimeObject * L_13 = ___value1; IL2CPP_RUNTIME_CLASS_INIT(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_il2cpp_TypeInfo_var); uint64_t L_14 = Enum_ToUInt64_mF33D43629B55147D1AF6CC3D813F894435AA50F5(L_13, /*hidden argument*/NULL); V_1 = L_14; UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_15 = V_0; uint64_t L_16 = V_1; int32_t L_17 = Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mDC37BFA945C8ED7FB8700727168D2F68CCFCE4A3(L_15, L_16, /*hidden argument*/Array_BinarySearch_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mDC37BFA945C8ED7FB8700727168D2F68CCFCE4A3_RuntimeMethod_var); return L_17; } } // System.Boolean System.Type::IsIntegerType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_IsIntegerType_m19478B79237AE0C92BE81AEEAD7D9DD36DFC0B27 (Type_t * ___t0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_IsIntegerType_m19478B79237AE0C92BE81AEEAD7D9DD36DFC0B27_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___t0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_1, /*hidden argument*/NULL); bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_2, /*hidden argument*/NULL); if (L_3) { goto IL_00b9; } } { Type_t * L_4 = ___t0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL); bool L_7 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_4, L_6, /*hidden argument*/NULL); if (L_7) { goto IL_00b9; } } { Type_t * L_8 = ___t0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL); bool L_11 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_8, L_10, /*hidden argument*/NULL); if (L_11) { goto IL_00b9; } } { Type_t * L_12 = ___t0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_13 = { reinterpret_cast<intptr_t> (Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_14 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_13, /*hidden argument*/NULL); bool L_15 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_12, L_14, /*hidden argument*/NULL); if (L_15) { goto IL_00b9; } } { Type_t * L_16 = ___t0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_17 = { reinterpret_cast<intptr_t> (SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_17, /*hidden argument*/NULL); bool L_19 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_16, L_18, /*hidden argument*/NULL); if (L_19) { goto IL_00b9; } } { Type_t * L_20 = ___t0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_21 = { reinterpret_cast<intptr_t> (UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_22 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_21, /*hidden argument*/NULL); bool L_23 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_20, L_22, /*hidden argument*/NULL); if (L_23) { goto IL_00b9; } } { Type_t * L_24 = ___t0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_25 = { reinterpret_cast<intptr_t> (Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_26 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_25, /*hidden argument*/NULL); bool L_27 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_24, L_26, /*hidden argument*/NULL); if (L_27) { goto IL_00b9; } } { Type_t * L_28 = ___t0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_29 = { reinterpret_cast<intptr_t> (UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_30 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_29, /*hidden argument*/NULL); bool L_31 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_28, L_30, /*hidden argument*/NULL); if (L_31) { goto IL_00b9; } } { Type_t * L_32 = ___t0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_33 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_33, /*hidden argument*/NULL); bool L_35 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_32, L_34, /*hidden argument*/NULL); if (L_35) { goto IL_00b9; } } { Type_t * L_36 = ___t0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_37 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_38 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_37, /*hidden argument*/NULL); bool L_39 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_36, L_38, /*hidden argument*/NULL); return L_39; } IL_00b9: { return (bool)1; } } // System.Boolean System.Type::IsSubclassOf(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_IsSubclassOf_m44227A841087B57FEF50B3DCA85CCEC3452C0AA0 (Type_t * __this, Type_t * ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_IsSubclassOf_m44227A841087B57FEF50B3DCA85CCEC3452C0AA0_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { V_0 = __this; Type_t * L_0 = V_0; Type_t * L_1 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_2 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001f; } } { return (bool)0; } IL_000d: { Type_t * L_3 = V_0; Type_t * L_4 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_5 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0018; } } { return (bool)1; } IL_0018: { Type_t * L_6 = V_0; NullCheck(L_6); Type_t * L_7 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_6); V_0 = L_7; } IL_001f: { Type_t * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_9 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_8, (Type_t *)NULL, /*hidden argument*/NULL); if (L_9) { goto IL_000d; } } { return (bool)0; } } // System.Boolean System.Type::IsInstanceOfType(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_IsInstanceOfType_mC9FF74FE0C6E75F26007C0108B4248F683E0E8EC (Type_t * __this, RuntimeObject * ___o0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___o0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { RuntimeObject * L_1 = ___o0; NullCheck(L_1); Type_t * L_2 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_1, /*hidden argument*/NULL); bool L_3 = VirtFuncInvoker1< bool, Type_t * >::Invoke(108 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, __this, L_2); return L_3; } } // System.Boolean System.Type::IsAssignableFrom(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_IsAssignableFrom_m2ACA5CBCCFE757FAE343AE0BF2F3892DA6BB9070 (Type_t * __this, Type_t * ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_IsAssignableFrom_m2ACA5CBCCFE757FAE343AE0BF2F3892DA6BB9070_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_1 = NULL; int32_t V_2 = 0; { Type_t * L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_000b; } } { return (bool)0; } IL_000b: { Type_t * L_2 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_3 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(__this, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0016; } } { return (bool)1; } IL_0016: { Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::get_UnderlyingSystemType() */, __this); V_0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_4, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_5 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_6 = RuntimeType_op_Inequality_mA98A719712593FEE5DCCFDB47CCABDB58BEE1B0D(L_5, (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)NULL, /*hidden argument*/NULL); if (!L_6) { goto IL_0033; } } { RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_7 = V_0; Type_t * L_8 = ___c0; NullCheck(L_7); bool L_9 = VirtFuncInvoker1< bool, Type_t * >::Invoke(108 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_7, L_8); return L_9; } IL_0033: { Type_t * L_10 = ___c0; NullCheck(L_10); bool L_11 = VirtFuncInvoker1< bool, Type_t * >::Invoke(106 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_10, __this); if (!L_11) { goto IL_003e; } } { return (bool)1; } IL_003e: { bool L_12 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(__this, /*hidden argument*/NULL); if (!L_12) { goto IL_004e; } } { Type_t * L_13 = ___c0; NullCheck(L_13); bool L_14 = Type_ImplementInterface_m1920FA37BBC76E5FBB993950C7D760C33B778BD8(L_13, __this, /*hidden argument*/NULL); return L_14; } IL_004e: { bool L_15 = VirtFuncInvoker0< bool >::Invoke(76 /* System.Boolean System.Type::get_IsGenericParameter() */, __this); if (!L_15) { goto IL_007a; } } { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_16 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(79 /* System.Type[] System.Type::GetGenericParameterConstraints() */, __this); V_1 = L_16; V_2 = 0; goto IL_0072; } IL_0061: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = V_1; int32_t L_18 = V_2; NullCheck(L_17); int32_t L_19 = L_18; Type_t * L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); Type_t * L_21 = ___c0; NullCheck(L_20); bool L_22 = VirtFuncInvoker1< bool, Type_t * >::Invoke(108 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_20, L_21); if (L_22) { goto IL_006e; } } { return (bool)0; } IL_006e: { int32_t L_23 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0072: { int32_t L_24 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_25 = V_1; NullCheck(L_25); if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))))))) { goto IL_0061; } } { return (bool)1; } IL_007a: { return (bool)0; } } // System.Boolean System.Type::IsEquivalentTo(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_IsEquivalentTo_m3ED69986A01682BCF0C30FDC0C2664E8432B7B16 (Type_t * __this, Type_t * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_IsEquivalentTo_m3ED69986A01682BCF0C30FDC0C2664E8432B7B16_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___other0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Type::ImplementInterface(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_ImplementInterface_m1920FA37BBC76E5FBB993950C7D760C33B778BD8 (Type_t * __this, Type_t * ___ifaceType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_ImplementInterface_m1920FA37BBC76E5FBB993950C7D760C33B778BD8_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_1 = NULL; int32_t V_2 = 0; { V_0 = __this; goto IL_0046; } IL_0004: { Type_t * L_0 = V_0; NullCheck(L_0); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(44 /* System.Type[] System.Type::GetInterfaces() */, L_0); V_1 = L_1; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = V_1; if (!L_2) { goto IL_003f; } } { V_2 = 0; goto IL_0039; } IL_0012: { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = V_1; int32_t L_4 = V_2; NullCheck(L_3); int32_t L_5 = L_4; Type_t * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); Type_t * L_7 = ___ifaceType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_8 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_6, L_7, /*hidden argument*/NULL); if (L_8) { goto IL_0033; } } { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_9 = V_1; int32_t L_10 = V_2; NullCheck(L_9); int32_t L_11 = L_10; Type_t * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_13 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_12, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_13) { goto IL_0035; } } { TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = V_1; int32_t L_15 = V_2; NullCheck(L_14); int32_t L_16 = L_15; Type_t * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); Type_t * L_18 = ___ifaceType0; NullCheck(L_17); bool L_19 = Type_ImplementInterface_m1920FA37BBC76E5FBB993950C7D760C33B778BD8(L_17, L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_0035; } } IL_0033: { return (bool)1; } IL_0035: { int32_t L_20 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0039: { int32_t L_21 = V_2; TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_22 = V_1; NullCheck(L_22); if ((((int32_t)L_21) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))))) { goto IL_0012; } } IL_003f: { Type_t * L_23 = V_0; NullCheck(L_23); Type_t * L_24 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_23); V_0 = L_24; } IL_0046: { Type_t * L_25 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_26 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_25, (Type_t *)NULL, /*hidden argument*/NULL); if (L_26) { goto IL_0004; } } { return (bool)0; } } // System.String System.Type::FormatTypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Type_FormatTypeName_m9845F584741FE37DA0F8EAA8AE6FE2976A914FB5 (Type_t * __this, const RuntimeMethod* method) { { String_t* L_0 = VirtFuncInvoker1< String_t*, bool >::Invoke(110 /* System.String System.Type::FormatTypeName(System.Boolean) */, __this, (bool)0); return L_0; } } // System.String System.Type::FormatTypeName(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Type_FormatTypeName_mE181AE76F0297373BF4354D10C091DEE1F03EABE (Type_t * __this, bool ___serialization0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_FormatTypeName_mE181AE76F0297373BF4354D10C091DEE1F03EABE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 * L_0 = (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 *)il2cpp_codegen_object_new(NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var); NotImplementedException__ctor_m8BEA657E260FC05F0C6D2C43A6E9BC08040F59C4(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, Type_FormatTypeName_mE181AE76F0297373BF4354D10C091DEE1F03EABE_RuntimeMethod_var); } } // System.String System.Type::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Type_ToString_mB05ECF84C3BDDB4DA0317A34080AD633DE678B11 (Type_t * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_ToString_mB05ECF84C3BDDB4DA0317A34080AD633DE678B11_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, __this); String_t* L_1 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral6D9764792C867EE2BC72CC2199A1F4334E4FEA0B, L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Type::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_Equals_mB1E33D9584BADB00B093F1A4F87629DCEB2F915B (Type_t * __this, RuntimeObject * ___o0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_Equals_mB1E33D9584BADB00B093F1A4F87629DCEB2F915B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___o0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { RuntimeObject * L_1 = ___o0; bool L_2 = VirtFuncInvoker1< bool, Type_t * >::Invoke(111 /* System.Boolean System.Type::Equals(System.Type) */, __this, ((Type_t *)IsInstClass((RuntimeObject*)L_1, Type_t_il2cpp_TypeInfo_var))); return L_2; } } // System.Boolean System.Type::Equals(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_Equals_m9F8C063C427653F29C448EB6042D27AEDBDE3ABC (Type_t * __this, Type_t * ___o0, const RuntimeMethod* method) { { Type_t * L_0 = ___o0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::get_UnderlyingSystemType() */, __this); Type_t * L_2 = ___o0; NullCheck(L_2); Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::get_UnderlyingSystemType() */, L_2); return (bool)((((RuntimeObject*)(Type_t *)L_1) == ((RuntimeObject*)(Type_t *)L_3))? 1 : 0); } } // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method) { { Type_t * L_0 = ___left0; Type_t * L_1 = ___right1; return (bool)((((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1))? 1 : 0); } } // System.Boolean System.Type::op_Inequality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method) { { Type_t * L_0 = ___left0; Type_t * L_1 = ___right1; return (bool)((((int32_t)((((RuntimeObject*)(Type_t *)L_0) == ((RuntimeObject*)(Type_t *)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Int32 System.Type::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_GetHashCode_m3D4E38EE87E4110E8886209DBA8CF74ECF89712C (Type_t * __this, const RuntimeMethod* method) { Type_t * V_0 = NULL; { Type_t * L_0 = VirtFuncInvoker0< Type_t * >::Invoke(105 /* System.Type System.Type::get_UnderlyingSystemType() */, __this); V_0 = L_0; Type_t * L_1 = V_0; if ((((RuntimeObject*)(Type_t *)L_1) == ((RuntimeObject*)(Type_t *)__this))) { goto IL_0012; } } { Type_t * L_2 = V_0; NullCheck(L_2); int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_2); return L_3; } IL_0012: { int32_t L_4 = MemberInfo_GetHashCode_mE9E59E8B23F151FD6EE2CB98B8F5138AF3B79761(__this, /*hidden argument*/NULL); return L_4; } } // System.Type System.Type::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_m6C9E6D55EC53587A0851176DA1D27A165724773E (Type_t * __this, const RuntimeMethod* method) { { Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); return L_0; } } // System.Type System.Type::internal_from_name(System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_internal_from_name_m9A232EAB9A51C1A64026F8E0772B2682D8663EDC (String_t* ___name0, bool ___throwOnError1, bool ___ignoreCase2, const RuntimeMethod* method) { typedef Type_t * (*Type_internal_from_name_m9A232EAB9A51C1A64026F8E0772B2682D8663EDC_ftn) (String_t*, bool, bool); using namespace il2cpp::icalls; return ((Type_internal_from_name_m9A232EAB9A51C1A64026F8E0772B2682D8663EDC_ftn)mscorlib::System::Type::internal_from_name) (___name0, ___throwOnError1, ___ignoreCase2); } // System.Type System.Type::GetType(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C (String_t* ___typeName0) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___typeName0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m77EF3A5A858B45C53D8BF27C74FA00CA83B53E59, L_0, (bool)0, (bool)0, "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); return L_1; } } // System.Type System.Type::GetType(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_m8A8A6481B24551476F2AF999A970AD705BA68C7A (String_t* ___typeName0, bool ___throwOnError1) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetType_m8A8A6481B24551476F2AF999A970AD705BA68C7A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___typeName0; bool L_1 = ___throwOnError1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_2 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m77EF3A5A858B45C53D8BF27C74FA00CA83B53E59, L_0, L_1, (bool)0, "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); return L_2; } } // System.Type System.Type::GetType(System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_m77EF3A5A858B45C53D8BF27C74FA00CA83B53E59 (String_t* ___typeName0, bool ___throwOnError1, bool ___ignoreCase2) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetType_m77EF3A5A858B45C53D8BF27C74FA00CA83B53E59_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; { String_t* L_0 = ___typeName0; 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, _stringLiteral9E430F17EB96D796BF49C46584B98C497F8AE559, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Type_GetType_m77EF3A5A858B45C53D8BF27C74FA00CA83B53E59_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___typeName0; String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); bool L_4 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_002b; } } { bool L_5 = ___throwOnError1; if (!L_5) { goto IL_0029; } } { TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * L_6 = (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 *)il2cpp_codegen_object_new(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1_il2cpp_TypeInfo_var); TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581(L_6, _stringLiteralF95EB45042C532B7D4178212FDB95626B723D8EA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Type_GetType_m77EF3A5A858B45C53D8BF27C74FA00CA83B53E59_RuntimeMethod_var); } IL_0029: { return (Type_t *)NULL; } IL_002b: { String_t* L_7 = ___typeName0; bool L_8 = ___throwOnError1; bool L_9 = ___ignoreCase2; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_internal_from_name_m9A232EAB9A51C1A64026F8E0772B2682D8663EDC(L_7, L_8, L_9, /*hidden argument*/NULL); V_0 = L_10; bool L_11 = ___throwOnError1; if (!L_11) { goto IL_0056; } } { Type_t * L_12 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_13 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_12, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_13) { goto IL_0056; } } { String_t* L_14 = ___typeName0; String_t* L_15 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralAA30471D667C9D7CC0C83322F5326E6A7357A0EF, L_14, _stringLiteralBB589D0621E5472F470FA3425A234C74B1E202E8, /*hidden argument*/NULL); TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * L_16 = (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 *)il2cpp_codegen_object_new(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1_il2cpp_TypeInfo_var); TypeLoadException__ctor_m80951BFF6EB67A1ED3052D05569EF70D038B1581(L_16, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, Type_GetType_m77EF3A5A858B45C53D8BF27C74FA00CA83B53E59_RuntimeMethod_var); } IL_0056: { Type_t * L_17 = V_0; return L_17; } } // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { intptr_t L_0 = RuntimeTypeHandle_get_Value_m3277019DD9C1A7E5D22F075DDF8CBDFA4D146BC6_inline((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D *)(&___handle0), /*hidden argument*/NULL); bool L_1 = IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL); if (!L_1) { goto IL_0015; } } { return (Type_t *)NULL; } IL_0015: { intptr_t L_2 = RuntimeTypeHandle_get_Value_m3277019DD9C1A7E5D22F075DDF8CBDFA4D146BC6_inline((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D *)(&___handle0), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_3 = Type_internal_from_handle_mB8566342149CB843D5D9BA29773A2F13701DAD6B((intptr_t)L_2, /*hidden argument*/NULL); return L_3; } } // System.Type System.Type::internal_from_handle(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_internal_from_handle_mB8566342149CB843D5D9BA29773A2F13701DAD6B (intptr_t ___handle0, const RuntimeMethod* method) { typedef Type_t * (*Type_internal_from_handle_mB8566342149CB843D5D9BA29773A2F13701DAD6B_ftn) (intptr_t); using namespace il2cpp::icalls; return ((Type_internal_from_handle_mB8566342149CB843D5D9BA29773A2F13701DAD6B_ftn)mscorlib::System::Type::internal_from_handle) (___handle0); } // System.Void System.Type::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Type__cctor_m518A008233352C5E9FBF9E165B0C3CE81ACF0036 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Type__cctor_m518A008233352C5E9FBF9E165B0C3CE81ACF0036_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(__Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34_il2cpp_TypeInfo_var); __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34 * L_0 = ((__Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34_StaticFields*)il2cpp_codegen_static_fields_for(__Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34_il2cpp_TypeInfo_var))->get_Instance_0(); __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34 * L_1 = L_0; MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * L_2 = (MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 *)il2cpp_codegen_object_new(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381_il2cpp_TypeInfo_var); MemberFilter__ctor_m6E469D6D66E850D3C8C0492FBAE858D81DA66CA0(L_2, L_1, (intptr_t)((intptr_t)GetVirtualMethodInfo(L_1, 4)), /*hidden argument*/NULL); ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->set_FilterAttribute_0(L_2); __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34 * L_3 = ((__Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34_StaticFields*)il2cpp_codegen_static_fields_for(__Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34_il2cpp_TypeInfo_var))->get_Instance_0(); __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34 * L_4 = L_3; MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * L_5 = (MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 *)il2cpp_codegen_object_new(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381_il2cpp_TypeInfo_var); MemberFilter__ctor_m6E469D6D66E850D3C8C0492FBAE858D81DA66CA0(L_5, L_4, (intptr_t)((intptr_t)GetVirtualMethodInfo(L_4, 5)), /*hidden argument*/NULL); ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->set_FilterName_1(L_5); __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34 * L_6 = ((__Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34_StaticFields*)il2cpp_codegen_static_fields_for(__Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34_il2cpp_TypeInfo_var))->get_Instance_0(); __Filters_tDD9D6B7C7A31B12AB3D5CCF1B115DD693F62DB34 * L_7 = L_6; MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * L_8 = (MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 *)il2cpp_codegen_object_new(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381_il2cpp_TypeInfo_var); MemberFilter__ctor_m6E469D6D66E850D3C8C0492FBAE858D81DA66CA0(L_8, L_7, (intptr_t)((intptr_t)GetVirtualMethodInfo(L_7, 6)), /*hidden argument*/NULL); ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->set_FilterNameIgnoreCase_2(L_8); IL2CPP_RUNTIME_CLASS_INIT(Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7_il2cpp_TypeInfo_var); Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7 * L_9 = ((Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7_StaticFields*)il2cpp_codegen_static_fields_for(Missing_t81434A5DBDCCA844BD22E1659DDE1EE7DE8B4ED7_il2cpp_TypeInfo_var))->get_Value_0(); ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->set_Missing_3(L_9); ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->set_Delimiter_4(((int32_t)46)); IL2CPP_RUNTIME_CLASS_INIT(EmptyArray_1_tF085172BB5E018A03FB07E8EEAFCD3D8F7EB784D_il2cpp_TypeInfo_var); TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = ((EmptyArray_1_tF085172BB5E018A03FB07E8EEAFCD3D8F7EB784D_StaticFields*)il2cpp_codegen_static_fields_for(EmptyArray_1_tF085172BB5E018A03FB07E8EEAFCD3D8F7EB784D_il2cpp_TypeInfo_var))->get_Value_0(); ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->set_EmptyTypes_5(L_10); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Task_get_InternalCurrent_m6BD4F17F5DAF5AC20BD6051A854D0BD702025892mscorlib16_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var); Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_0 = ((Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var))->get_t_currentTask_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * Task_get_ExecutingTaskScheduler_m3A3340F34EF9D594413E54F46B78874BCB0CA30D_inline (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method) { { TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_0 = __this->get_m_taskScheduler_7(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * ExceptionDispatchInfo_get_SourceException_m212F50A437B8B18AFECE39F2A9F7231787F45F28_inline (ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * __this, const RuntimeMethod* method) { { Exception_t * L_0 = __this->get_m_Exception_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * AggregateException_get_InnerExceptions_mB81D2B3BD56A3E938B83B0AF766474ED66057040_inline (AggregateException_t9217B9E89DF820D5632411F2BD92F444B17BD60E * __this, const RuntimeMethod* method) { { ReadOnlyCollection_1_t6D5AC6FC0BF91A16C9E9159F577DEDA4DD3414C8 * L_0 = __this->get_m_innerExceptions_17(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Task_FireTaskScheduledIfNeeded_m6792459336CB25D967928EDA5249F2164991E447_inline (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___ts0, const RuntimeMethod* method) { { return (bool)0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TaskScheduler_get_Default_mC3794A546EB0F4C6D0A11E72F8939EC364733C87mscorlib16_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var); TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * L_0 = ((TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_StaticFields*)il2cpp_codegen_static_fields_for(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114_il2cpp_TypeInfo_var))->get_s_defaultTaskScheduler_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Delegate_get_Target_m5371341CE435E001E9FD407AE78F728824CE20E2_inline (Delegate_t * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_m_target_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ThreadHelper_SetExecutionContextHelper_m253F9206E5C01BE9A6BC3ED65106B5C2DB7240FF_inline (ThreadHelper_tA2931CFFC5988E4C327F9379104975BC53F1CC13 * __this, ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___ec0, const RuntimeMethod* method) { { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_0 = ___ec0; __this->set__executionContext_2(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Reader__ctor_mDB8E37FABE15D47E2E78E77EA6702D0FBAB8FC5E_inline (Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B * __this, ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___ec0, const RuntimeMethod* method) { { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_0 = ___ec0; __this->set_m_ec_0(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * Reader_DangerousGetRawExecutionContext_m0AAF58869F7AC7C33242B7C6A6ABFA2EF5100EBA_inline (Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B * __this, const RuntimeMethod* method) { { ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_0 = __this->get_m_ec_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * Scheduler_get_Instance_mAD166DADAB60F24F15A36BD49F67172084AA9B4C_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Scheduler_get_Instance_mAD166DADAB60F24F15A36BD49F67172084AA9B4Cmscorlib16_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_il2cpp_TypeInfo_var); Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * L_0 = ((Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_StaticFields*)il2cpp_codegen_static_fields_for(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9_il2cpp_TypeInfo_var))->get_instance_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR intptr_t SafeHandle_DangerousGetHandle_m9014DC4C279F2EF9F9331915135F0AF5AF8A4368_inline (SafeHandle_t1E326D75E23FD5BB6D40BA322298FDC6526CC383 * __this, const RuntimeMethod* method) { { intptr_t L_0 = __this->get_handle_0(); return (intptr_t)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int64_t ___ticks0, const RuntimeMethod* method) { { int64_t L_0 = ___ticks0; __this->set__ticks_3(L_0); return; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool TimeSpan_GetLegacyFormatMode_m058C62B8FEB05BBD84A5437AEDF60DAF2444EBB8_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TimeSpan_GetLegacyFormatMode_m058C62B8FEB05BBD84A5437AEDF60DAF2444EBB8mscorlib16_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanSilverlight4_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_Id_mE52B846A9B3701B6BFFC99AD5F486584044304C6_inline (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_id_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stringLength_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t OperatingSystem_get_Platform_m36635DD0A3D5442E515AB8D2EA3C7092348A5181_inline (OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__platform_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool TimeZoneInfo_get_SupportsDaylightSavingTime_m101C22CB276BB45E9C38F54BF6F944C8C5578C9E_inline (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_supportsDaylightSavingTime_8(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeZoneInfo_get_BaseUtcOffset_mAB38F4E2BC249BF42876E3220D7B329E30628A2C_inline (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = __this->get_baseUtcOffset_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 AdjustmentRule_get_DaylightDelta_m2FE8486C9BE8D912DB009B37823E33676DD21F15_inline (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = __this->get_m_daylightDelta_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 AdjustmentRule_get_DaylightTransitionEnd_m8EE35970D90C7857BEAE165190F5B9ADC8C57860_inline (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_0 = __this->get_m_daylightTransitionEnd_4(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 AdjustmentRule_get_DaylightTransitionStart_mC89A599FADA4747E5686154DCBD067EEFBB919F6_inline (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 L_0 = __this->get_m_daylightTransitionStart_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Month_m06FE288B24621979C4FE9E34D350EBA208CEA267_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->get_m_month_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 AdjustmentRule_get_DateStart_mD4389CA67654E528E196EB632D16D9AB027D6C49_inline (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = __this->get_m_dateStart_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 AdjustmentRule_get_DateEnd_m9ECD9D96BFB535E8818CC79B0B261F8E334A722E_inline (AdjustmentRule_tD07790AF71973358AF86152413749426B28D6204 * __this, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = __this->get_m_dateEnd_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_DisplayName_m583E6E48EAA12F6D87191F71AAE821481F8B006A_inline (TimeZoneInfo_t46EF9BAEAA787846F1A1EC419BE75CFEFAFF6777 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_displayName_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool TransitionTime_get_IsFixedDateRule_mC55143797D34E320F86E4B58A265654C634EB38C_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_m_isFixedDateRule_5(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Day_m82E3998C57838AB654EEB696600CF6C0F9EB52B0_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->get_m_day_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 TransitionTime_get_TimeOfDay_mC4F5083CF75296341B498E873B2C026A95C4ADDE_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = __this->get_m_timeOfDay_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Week_m7708A01103CEADEA75626953931221A1E5CA2F82_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->get_m_week_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t TransitionTime_get_DayOfWeek_m349EE703AD506935676F78DE8438D8C3D5E8C472_inline (TransitionTime_t9958178434A0688FD45EF028B1AE9EA665C3E116 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_dayOfWeek_4(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR intptr_t RuntimeTypeHandle_get_Value_m3277019DD9C1A7E5D22F075DDF8CBDFA4D146BC6_inline (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * __this, const RuntimeMethod* method) { { intptr_t L_0 = __this->get_value_0(); return (intptr_t)L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline (Enumerator_tE0C99528D3DCE5863566CE37BD94162A4C0431CD * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL); } IL_000e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_1(); int32_t L_3 = ___index0; RuntimeObject * L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3); return L_4; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B List_1_get_Item_mA3E868C42E65CB3DC3966732D238AF05D6338EF7_gshared_inline (List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL); } IL_000e: { KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_2 = (KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F*)__this->get__items_1(); int32_t L_3 = ___index0; KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F*)L_2, (int32_t)L_3); return L_4; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 KeyValuePair_2_get_Key_m15F31F68F9D7F399DEBCC2328913654D36E79C1E_gshared_inline (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * __this, const RuntimeMethod* method) { { DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 )__this->get_key_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m5AF581973CD6FDFDA5540F0A0AAD90D97CC45D5D_gshared_inline (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_mB556AE5EB3416A032123DE8D7E96B5FFD8CC8242_gshared_inline (List_1_t5693FC241180E36A0BB189DFB39B0D3A43DC05B1 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return L_0; } }
[ "55306612+CarinaHerlina@users.noreply.github.com" ]
55306612+CarinaHerlina@users.noreply.github.com
871af79c911a73e6dcb770c750cd5891db5fbc09
c8bbd39e8d5c5e3673ed87febd7a10086e665435
/C/boost_websocket/websocket_server_async_ssl.cpp
9505545b6d7a389db2ee9b224939f5f8fc8d7037
[]
no_license
chohan/Test
912dc6e575a7e855f3b24bbfd958460542c0992e
1feda99f5f1d9a5f2e912597ac62fa3182f74d81
refs/heads/master
2020-06-14T05:57:58.752589
2020-02-07T02:21:56
2020-02-07T02:21:56
194,926,022
0
0
null
null
null
null
UTF-8
C++
false
false
7,872
cpp
// // Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail 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) // // Official repository: https://github.com/boostorg/beast // //------------------------------------------------------------------------------ // // Example: WebSocket SSL server, asynchronous // //------------------------------------------------------------------------------ #include "server_certificate.hpp" #include <boost/beast/core.hpp> #include <boost/beast/ssl.hpp> #include <boost/beast/websocket.hpp> #include <boost/beast/websocket/ssl.hpp> #include <boost/asio/strand.hpp> #include <algorithm> #include <cstdlib> #include <functional> #include <iostream> #include <memory> #include <string> #include <thread> #include <vector> namespace beast = boost::beast; // from <boost/beast.hpp> namespace http = beast::http; // from <boost/beast/http.hpp> namespace websocket = beast::websocket; // from <boost/beast/websocket.hpp> namespace net = boost::asio; // from <boost/asio.hpp> namespace ssl = boost::asio::ssl; // from <boost/asio/ssl.hpp> using tcp = boost::asio::ip::tcp; // from <boost/asio/ip/tcp.hpp> //------------------------------------------------------------------------------ // Report a failure void fail(beast::error_code ec, char const* what) { std::cerr << what << ": " << ec.message() << "\n"; } // Echoes back all received WebSocket messages class session : public std::enable_shared_from_this<session> { websocket::stream< beast::ssl_stream<beast::tcp_stream>> ws_; beast::flat_buffer buffer_; public: // Take ownership of the socket session(tcp::socket&& socket, ssl::context& ctx) : ws_(std::move(socket), ctx) { } // Start the asynchronous operation void run() { // Set the timeout. beast::get_lowest_layer(ws_).expires_after(std::chrono::seconds(30)); // Perform the SSL handshake ws_.next_layer().async_handshake( ssl::stream_base::server, beast::bind_front_handler( &session::on_handshake, shared_from_this())); } void on_handshake(beast::error_code ec) { if(ec) return fail(ec, "handshake"); // Turn off the timeout on the tcp_stream, because // the websocket stream has its own timeout system. beast::get_lowest_layer(ws_).expires_never(); // Set suggested timeout settings for the websocket ws_.set_option( websocket::stream_base::timeout::suggested( beast::role_type::server)); // Set a decorator to change the Server of the handshake ws_.set_option(websocket::stream_base::decorator( [](websocket::response_type& res) { res.set(http::field::server, std::string(BOOST_BEAST_VERSION_STRING) + " websocket-server-async-ssl"); })); // Accept the websocket handshake ws_.async_accept( beast::bind_front_handler( &session::on_accept, shared_from_this())); } void on_accept(beast::error_code ec) { if(ec) return fail(ec, "accept"); // Read a message do_read(); } void do_read() { // Read a message into our buffer ws_.async_read( buffer_, beast::bind_front_handler( &session::on_read, shared_from_this())); } void on_read( beast::error_code ec, std::size_t bytes_transferred) { boost::ignore_unused(bytes_transferred); // This indicates that the session was closed if(ec == websocket::error::closed) return; if(ec) fail(ec, "read"); // Echo the message ws_.text(ws_.got_text()); ws_.async_write( buffer_.data(), beast::bind_front_handler( &session::on_write, shared_from_this())); } void on_write( beast::error_code ec, std::size_t bytes_transferred) { boost::ignore_unused(bytes_transferred); if(ec) return fail(ec, "write"); // Clear the buffer buffer_.consume(buffer_.size()); // Do another read do_read(); } }; //------------------------------------------------------------------------------ // Accepts incoming connections and launches the sessions class listener : public std::enable_shared_from_this<listener> { net::io_context& ioc_; ssl::context& ctx_; tcp::acceptor acceptor_; public: listener( net::io_context& ioc, ssl::context& ctx, tcp::endpoint endpoint) : ioc_(ioc) , ctx_(ctx) , acceptor_(net::make_strand(ioc)) { beast::error_code ec; // Open the acceptor acceptor_.open(endpoint.protocol(), ec); if(ec) { fail(ec, "open"); return; } // Allow address reuse acceptor_.set_option(net::socket_base::reuse_address(true), ec); if(ec) { fail(ec, "set_option"); return; } // Bind to the server address acceptor_.bind(endpoint, ec); if(ec) { fail(ec, "bind"); return; } // Start listening for connections acceptor_.listen( net::socket_base::max_listen_connections, ec); if(ec) { fail(ec, "listen"); return; } } // Start accepting incoming connections void run() { do_accept(); } private: void do_accept() { // The new connection gets its own strand acceptor_.async_accept( net::make_strand(ioc_), beast::bind_front_handler( &listener::on_accept, shared_from_this())); } void on_accept(beast::error_code ec, tcp::socket socket) { if(ec) { fail(ec, "accept"); } else { // Create the session and run it std::make_shared<session>(std::move(socket), ctx_)->run(); } // Accept another connection do_accept(); } }; //------------------------------------------------------------------------------ int main(int argc, char* argv[]) { // Check command line arguments. if (argc != 4) { std::cerr << "Usage: websocket-server-async-ssl <address> <port> <threads>\n" << "Example:\n" << " websocket-server-async-ssl 0.0.0.0 8080 1\n"; return EXIT_FAILURE; } auto const address = net::ip::make_address(argv[1]); auto const port = static_cast<unsigned short>(std::atoi(argv[2])); auto const threads = std::max<int>(1, std::atoi(argv[3])); // The io_context is required for all I/O net::io_context ioc{threads}; // The SSL context is required, and holds certificates ssl::context ctx{ssl::context::tlsv12}; // This holds the self-signed certificate used by the server load_server_certificate(ctx); // Create and launch a listening port std::make_shared<listener>(ioc, ctx, tcp::endpoint{address, port})->run(); // Run the I/O service on the requested number of threads std::vector<std::thread> v; v.reserve(threads - 1); for(auto i = threads - 1; i > 0; --i) v.emplace_back( [&ioc] { ioc.run(); }); ioc.run(); return EXIT_SUCCESS; }
[ "shchohan@gmail.com" ]
shchohan@gmail.com
3189653f4e2492222ff5ac81c301beaa20b42672
105ac3f78122b133b632c29ed0cf8648f315bf94
/src/liblogger/LogFunction.h
6aa5a558bbba2f6b28ea1e1606d97980c6a8b186
[ "MIT" ]
permissive
mistralol/liblogger
cb85c53bcb4753280b6f265e77ef6d9c2caf726c
b9b81bd707a9c83e6ec9a7f802a6fff138bed2ec
refs/heads/master
2020-12-18T13:49:10.833190
2020-02-04T15:41:02
2020-02-04T15:41:02
11,122,237
2
1
null
null
null
null
UTF-8
C++
false
false
389
h
namespace liblogger { class LogFunction : public ILogger { public: LogFunction(std::function<void(const LogType, const std::string &)>); virtual ~LogFunction() { }; std::string GetName() const; std::string GetDesc() const; void Log(const LogType Type, const std::string &str); private: std::function<void(const LogType, const std::string &)> m_function; }; };
[ "james@stev.org" ]
james@stev.org
ec273e0a9a4dd8bd3dc50a364b7777ef0ed9800a
cb322804952bd884ecf4626de984cfe0cc9a95c0
/drone/motor.cpp
f8f7e8e33e87d60872bddb31990d9bb92930aea3
[]
no_license
zeincapas/zekeFlyboi
6e75a95d2a1cc8f0d0c1e9e615cfdc679f90ca09
6500cdbd5c44abe21313ac6867546b84d42e8eb2
refs/heads/master
2021-04-22T17:57:15.816641
2020-04-13T01:22:28
2020-04-13T01:22:28
249,867,323
0
0
null
null
null
null
UTF-8
C++
false
false
222
cpp
#include <Arduino.h> #include <stdbool.h> #include <Servo.h> #include "motor.h" Servo motor; void BLDC::init() { motor.attach(motorPin, 1000, 2000); } void BLDC::setSpeed(int32_t speed) { motor.write(speed); }
[ "zekeincapas@gmail.com" ]
zekeincapas@gmail.com
03ce7533512c1dfb17169febac131277f6e86145
409a24b3132ea45e4ffde981e3722369a7d5c0b6
/src/ConEmu/Header.h
0c1f5b15c1444c57dd03c2b02a70537c1f27e188
[ "BSD-3-Clause" ]
permissive
raasoft/ConEmu
59d7e5cf4893f8519a59db4f328c16252544d383
4bcee08d1b950c0ce1666481eca7f2bb3f4029b9
refs/heads/master
2021-04-15T16:14:45.634972
2018-03-19T01:08:31
2018-03-19T01:08:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
25,193
h
 /* Copyright (c) 2009-2017 Maximus5 All rights reserved. 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. The name of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''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 AUTHOR 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. */ #pragma once #undef SHOW_AUTOSCROLL #define NEWMOUSESTYLE #define NEWRUNSTYLE //#undef NEWRUNSTYLE #define APPDISTINCTBACKGROUND #include "../common/defines.h" #include <windows.h> #include <Shlwapi.h> //#include <vector> //#if !defined(__GNUC__) //#include <crtdbg.h> //#endif #undef SetCurrentDirectory #define SetCurrentDirectory "gpConEmu->ChangeWorkDir() must be used!" #include "../common/Memory.h" #include "../common/MAssert.h" #include "../common/MStrDup.h" #include "../common/CEStr.h" #if defined(__GNUC__) && !defined(__MINGW64_VERSION_MAJOR) #define wmemmove_s(d,ds,s,ss) wmemmove(d,s,ss) #define SecureZeroMemory(p,s) memset(p,0,s) #endif #ifndef TimeGetTime #ifdef __GNUC__ #define TimeGetTime GetTickCount #else #define TimeGetTime timeGetTime #endif #endif #include "globals.h" #include "resource.h" #define DRAG_L_ALLOWED 0x0001 #define DRAG_R_ALLOWED 0x0002 #define DRAG_L_STARTED 0x0010 #define DRAG_R_STARTED 0x0020 #define MOUSE_R_LOCKED 0x0040 #define MOUSE_SIZING_BEGIN 0x0080 #define MOUSE_SIZING_TODO 0x0100 #define MOUSE_SIZING_DBLCKL 0x0200 #define MOUSE_DRAGPANEL_SPLIT 0x0400 #define MOUSE_DRAGPANEL_LEFT 0x0800 #define MOUSE_DRAGPANEL_RIGHT 0x1000 #define MOUSE_DRAGPANEL_BOTH (MOUSE_DRAGPANEL_LEFT|MOUSE_DRAGPANEL_RIGHT) #define MOUSE_WINDOW_DRAG 0x4000 #define MOUSE_DRAGPANEL_ALL (MOUSE_DRAGPANEL_SPLIT|MOUSE_DRAGPANEL_LEFT|MOUSE_DRAGPANEL_RIGHT|MOUSE_DRAGPANEL_BOTH) #define MAX_TITLE_SIZE 0x400 #define CON_RECREATE_TIMEOUT 60000 #define CON_REDRAW_TIMOUT 5 #ifndef CLEARTYPE_NATURAL_QUALITY #define CLEARTYPE_QUALITY 5 #define CLEARTYPE_NATURAL_QUALITY 6 #endif #ifndef EVENT_CONSOLE_START_APPLICATION #define EVENT_CONSOLE_START_APPLICATION 0x4006 #define EVENT_CONSOLE_END_APPLICATION 0x4007 #endif #if !defined(CONSOLE_APPLICATION_16BIT) #define CONSOLE_APPLICATION_16BIT 0x0001 #endif #define TIMER_MAIN_ID 0 #define TIMER_MAIN_ELAPSE 500 #define TIMER_CONREDRAW_ID 1 #define TIMER_CAPTION_APPEAR_ID 3 #define TIMER_CAPTION_DISAPPEAR_ID 4 #define TIMER_RCLICKPAINT 5 #define TIMER_RCLICKPAINT_ELAPSE 20 #define TIMER_ADMSHIELD_ID 7 #define TIMER_ADMSHIELD_ELAPSE 1000 #define TIMER_QUAKE_AUTOHIDE_ID 9 #define TIMER_QUAKE_AUTOHIDE_ELAPSE 100 #define QUAKE_FOCUS_CHECK_TIMER_DELAY 500 #define TIMER_FAILED_TABBAR_ID 10 // FAILED_TABBAR_TIMERID #define TIMER_FAILED_TABBAR_ELAPSE 3000 // FAILED_TABBAR_TIMEOUT #define TIMER_ACTIVATESPLIT_ID 11 #define TIMER_ACTIVATESPLIT_ELAPSE 500 #define ACTIVATE_TAB_CRITICAL 1000 #define POST_UPDATE_TIMEOUT 2000 // Undocumented messages #include "ConsoleMessages.h" #define MAX_CMD_HISTORY 100 #define MAX_CMD_HISTORY_SHOW 16 #define MAX_CMD_GROUP_SHOW 10 #define MAX_RENAME_TAB_LEN 128 #define MBox(rt) MsgBox(rt, /*MB_SYSTEMMODAL |*/ MB_ICONINFORMATION, Title) #define MBoxA(rt) MsgBox(rt, /*MB_SYSTEMMODAL |*/ MB_ICONINFORMATION, NULL) #define MBoxError(rt) MsgBox(rt, /*MB_SYSTEMMODAL |*/ MB_ICONSTOP, NULL) //#define MBoxAssert(V) if ((V)==FALSE) { TCHAR szAMsg[MAX_PATH*2]; StringCchPrintf(szAMsg, countof(szAMsg), _T("Assertion (%s) at\n%s:%i"), _T(#V), _T(__FILE__), __LINE__); MBoxA(szAMsg); } #define MBoxAssert(V) _ASSERTE(V) //__inline BOOL isMeForeground() { // HWND h = GetForegroundWindow(); // return h && (h == ghWnd || h == ghOpWnd || h == ghConWnd); //} //#endif //#define isPressed(inp) ((GetKeyState(inp) & 0x8000) == 0x8000) //#define isDriveLetter(c) ((c>=L'A' && c<=L'Z') || (c>=L'a' && c<=L'z')) //#define isDigit(c) (c>=L'0' && c<=L'9') //#define PTDIFFTEST(C,D) (((abs(C.x-LOWORD(lParam)))<D) && ((abs(C.y-HIWORD(lParam)))<D)) //#define INVALIDATE() InvalidateRect(HDCWND, NULL, FALSE) //#define SafeCloseHandle(h) { if ((h)!=NULL) { HANDLE hh = (h); (h) = NULL; if (hh!=INVALID_HANDLE_VALUE) CloseHandle(hh); } } //#define SafeFree(p) { if ((p)!=NULL) { LPVOID pp = (p); (p) = NULL; free(pp); } } #define isWheelEvent(messg) ((messg == WM_MOUSEWHEEL) || (messg == WM_MOUSEHWHEEL/*0x020E*/)) #ifdef MSGLOGGER BOOL POSTMESSAGE(HWND h,UINT m,WPARAM w,LPARAM l,BOOL extra); LRESULT SENDMESSAGE(HWND h,UINT m,WPARAM w,LPARAM l); #define SETWINDOWPOS(hw,hp,x,y,w,h,f) {MCHKHEAP; DebugLogPos(hw,x,y,w,h,"SetWindowPos"); SetWindowPos(hw,hp,x,y,w,h,f);} #define MOVEWINDOW(hw,x,y,w,h,r) {MCHKHEAP; DebugLogPos(hw,x,y,w,h,"MoveWindow"); MoveWindow(hw,x,y,w,h,r);} #define SETCONSOLESCREENBUFFERSIZERET(h,s,r) {MCHKHEAP; DebugLogBufSize(h,s); r=SetConsoleScreenBufferSize(h,s);} #define SETCONSOLESCREENBUFFERSIZE(h,s) {BOOL lb; SETCONSOLESCREENBUFFERSIZERET(h,s,lb);} #define DEBUGLOGFILE(m) DebugLogFile(m) void DebugLogFile(LPCSTR asMessage); void DebugLogBufSize(HANDLE h, COORD sz); void DebugLogPos(HWND hw, int x, int y, int w, int h, LPCSTR asFunc); void DebugLogMessage(HWND h, UINT m, WPARAM w, LPARAM l, int posted, BOOL extra); #else #define POSTMESSAGE(h,m,w,l,e) PostMessage(h,m,w,l) #define SENDMESSAGE(h,m,w,l) SendMessage(h,m,w,l) #define SETWINDOWPOS(hw,hp,x,y,w,h,f) SetWindowPos(hw,hp,x,y,w,h,f) #define MOVEWINDOW(hw,x,y,w,h,r) MoveWindow(hw,x,y,w,h,r) #define SETCONSOLESCREENBUFFERSIZERET(h,s,r) r=SetConsoleScreenBufferSize(h,s) #define SETCONSOLESCREENBUFFERSIZE(h,s) SetConsoleScreenBufferSize(h,s) #define DEBUGLOGFILE(m) #define DebugLogMessage(h,m,w,l,posted,extra) #endif LPCWSTR GetMouseMsgName(UINT msg); bool LogString(LPCWSTR asInfo, bool abWriteTime = true, bool abWriteLine = true); //#if !defined(__GNUC__) //#pragma warning (disable : 4005) //#if !defined(_WIN32_WINNT) //#define _WIN32_WINNT 0x0502 //#endif //#endif //------------------------------------------------------------------------ ///| Code optimizing |//////////////////////////////////////////////////// //------------------------------------------------------------------------ //#if !defined(__GNUC__) //#include <intrin.h> //#pragma function(memset, memcpy) //__forceinline void *memset(void *_Dst, int _Val, size_t _Size) //{ // __stosb((unsigned char*)_Dst, _Val, _Size); // return _Dst; //} //__forceinline void *memcpy(void *_Dst, const void *_Src, size_t _Size) //{ // __movsb((unsigned char*)_Dst, (unsigned const char*)_Src, _Size); // return _Dst; //} //#endif extern BOOL gbInDisplayLastError; int DisplayLastError(LPCTSTR asLabel, DWORD dwError = 0, DWORD dwMsgFlags = 0, LPCWSTR asTitle = NULL, HWND hParent = NULL); void WarnCreateWindowFail(LPCWSTR pszDescription, HWND hParent, DWORD nErrCode); RECT CenterInParent(RECT rcDlg, HWND hParent); BOOL MoveWindowRect(HWND hWnd, const RECT& rcWnd, BOOL bRepaint = FALSE); HICON CreateNullIcon(); void ShutdownGuiStep(LPCWSTR asInfo, int nParm1 = 0, int nParm2 = 0, int nParm3 = 0, int nParm4 = 0); void LogFocusInfo(LPCWSTR asInfo, int Level=1); bool PtMouseDblClickTest(const MSG& msg1, const MSG msg2); bool IntFromString(int& rnValue, LPCWSTR asValue, int anBase = 10, LPCWSTR* rsEnd = NULL); bool GetDlgItemSigned(HWND hDlg, WORD nID, int& nValue, int nMin = 0, int nMax = 0); bool GetDlgItemUnsigned(HWND hDlg, WORD nID, DWORD& nValue, DWORD nMin = 0, DWORD nMax = 0); wchar_t* GetDlgItemTextPtr(HWND hDlg, WORD nID); template <size_t size> bool MyGetDlgItemText(HWND hDlg, WORD nID, wchar_t (&rszText)[size]); size_t MyGetDlgItemText(HWND hDlg, WORD nID, size_t& cchMax, wchar_t*& pszText/*, bool bEscapes = false*/); BOOL MySetDlgItemText(HWND hDlg, int nIDDlgItem, LPCTSTR lpString/*, bool bEscapes = false*/); bool GetColorRef(LPCWSTR pszText, COLORREF* pCR); //wchar_t* EscapeString(bool bSet, LPCWSTR pszSrc); void EscapeChar(bool bSet, LPCWSTR& pszSrc, LPWSTR& pszDst); //#pragma warning(disable: 4311) // 'type cast' : pointer truncation from 'HBRUSH' to 'BOOL' wchar_t* getFocusedExplorerWindowPath(); wchar_t* DupCygwinPath(LPCWSTR asWinPath, bool bAutoQuote, LPCWSTR asMntPrefix = NULL); LPCWSTR MakeWinPath(LPCWSTR asAnyPath, LPCWSTR pszMntPrefix, CEStr& szWinPath); wchar_t* MakeStraightSlashPath(LPCWSTR asWinPath); bool FixDirEndSlash(wchar_t* rsPath); enum CESelectFileFlags { sff_Default = 0, sff_AutoQuote = 1, sff_Cygwin = 2, sff_SaveNewFile = 4, }; wchar_t* SelectFolder(LPCWSTR asTitle, LPCWSTR asDefFolder = NULL, HWND hParent = ghWnd, DWORD/*CESelectFileFlags*/ nFlags = sff_AutoQuote /*bool bAutoQuote = true, bool bCygwin = false*/); wchar_t* SelectFile(LPCWSTR asTitle, LPCWSTR asDefFile = NULL, LPCWSTR asDefPath = NULL, HWND hParent = ghWnd, LPCWSTR asFilter = NULL, DWORD/*CESelectFileFlags*/ nFlags = sff_AutoQuote /*bool abAutoQuote = true, bool bCygwin = false, bool bSaveNewFile = false*/); #include "../common/RConStartArgsEx.h" bool isKey(DWORD wp,DWORD vk); void RaiseTestException(); //------------------------------------------------------------------------ ///| Registry |/////////////////////////////////////////////////////////// //------------------------------------------------------------------------ struct SettingsStorage { wchar_t szType[8]; // CONEMU_CONFIGTYPE_REG, CONEMU_CONFIGTYPE_XML LPCWSTR pszFile; // NULL или полный путь к xml-файлу LPCWSTR pszConfig; // Имя конфигурации }; #define CONEMU_ROOT_KEY L"Software\\ConEmu" #define CONEMU_CONFIGTYPE_REG L"[reg]" #define CONEMU_CONFIGTYPE_XML L"[xml]" #define CONEMU_CONFIGTYPE_INI L"[ini]" #define APP_MODEL_ID_PREFIX L"Maximus5.ConEmu." #include "Registry.h" #include "../common/MRect.h" #include "../common/UnicodeChars.h" #include "../common/WObjects.h" #include "../common/CmdLine.h" #define IsWindowsXP ((gOSVer.dwMajorVersion >= 6) || (gOSVer.dwMajorVersion == 5 && gOSVer.dwMinorVersion > 0)) #define IsWindowsVista (gOSVer.dwMajorVersion >= 6) #define IsWindows7 ((gOSVer.dwMajorVersion > 6) || (gOSVer.dwMajorVersion == 6 && gOSVer.dwMinorVersion > 0)) #define IsWindows8 ((gOSVer.dwMajorVersion > 6) || (gOSVer.dwMajorVersion == 6 && gOSVer.dwMinorVersion > 1)) #define IsWindows8_1 ((gOSVer.dwMajorVersion > 6) || (gOSVer.dwMajorVersion == 6 && gOSVer.dwMinorVersion > 2)) // GNU C HEADER PATCH #ifdef __GNUC__ typedef BOOL (WINAPI* AlphaBlend_t)(HDC hdcDest, int xoriginDest, int yoriginDest, int wDest, int hDest, HDC hdcSrc, int xoriginSrc, int yoriginSrc, int wSrc, int hSrc, BLENDFUNCTION ftn); typedef BOOL (WINAPI* SetLayeredWindowAttributes_t)(HWND hwnd, COLORREF crKey, BYTE bAlpha, DWORD dwFlags); typedef BOOL (WINAPI* CreateRestrictedToken_t)(HANDLE ExistingTokenHandle, DWORD Flags, DWORD DisableSidCount, PSID_AND_ATTRIBUTES SidsToDisable, DWORD DeletePrivilegeCount, PLUID_AND_ATTRIBUTES PrivilegesToDelete, DWORD RestrictedSidCount, PSID_AND_ATTRIBUTES SidsToRestrict, PHANDLE NewTokenHandle); #endif // GetLayeredWindowAttributes появилась только в XP typedef BOOL (WINAPI* GetLayeredWindowAttributes_t)(HWND hwnd, COLORREF *pcrKey, BYTE *pbAlpha, DWORD *pdwFlags); #if !defined(MAPVK_VSC_TO_VK_EX) #define MAPVK_VK_TO_VSC (0) #define MAPVK_VSC_TO_VK (1) #define MAPVK_VK_TO_CHAR (2) #define MAPVK_VSC_TO_VK_EX (3) #endif #if !defined(WM_XBUTTONDBLCLK) #define WM_XBUTTONDOWN 0x020B #define WM_XBUTTONUP 0x020C #define WM_XBUTTONDBLCLK 0x020D #endif #if !defined(SPI_GETCLEARTYPE) #define SPI_GETCLEARTYPE 0x1048 #endif #ifndef SEE_MASK_NOASYNC #define SEE_MASK_NOASYNC 0x00000100 // block on the call until the invoke has completed, use for callers that exit after calling ShellExecuteEx() #endif #ifndef TTM_SETTITLEW #define TTM_SETTITLEW (WM_USER + 33) // wParam = TTI_*, lParam = wchar* szTitle #endif #ifndef TTM_SETTITLE #define TTM_SETTITLE TTM_SETTITLEW #endif #ifndef TTI_WARNING #define TTI_WARNING 2 #endif #ifndef INPUTLANGCHANGE_SYSCHARSET #define INPUTLANGCHANGE_SYSCHARSET 0x0001 #endif #ifndef DISABLE_MAX_PRIVILEGE #define DISABLE_MAX_PRIVILEGE 0x1 #endif enum ConEmuMargins { // Разница между размером всего окна и клиентской области окна (рамка + заголовок) CEM_FRAMEONLY = 0x0001, CEM_CAPTION = 0x0002, CEM_FRAMECAPTION = (CEM_FRAMEONLY|CEM_CAPTION), #if 0 CEM_CLIENTSHIFT = 0x0004, // Если клиентская часть "расширена" на рамку #endif // Высота таба (пока только .top) CEM_TAB = 0x0010, CEM_TABACTIVATE = 0x1010, // Принудительно считать, что таб есть (при включении таба) CEM_TABDEACTIVATE = 0x2010, // Принудительно считать, что таба нет (при отключении таба) CEM_TAB_MASK = (CEM_TAB|CEM_TABACTIVATE|CEM_TABDEACTIVATE), CEM_SCROLL = 0x0020, // Если полоса прокрутки всегда (!!!) видна - то ее ширина/высота CEM_STATUS = 0x0040, // Высота строки статуса CEM_PAD = 0x0080, // Ширина "отступа" от краев CEM_WIN10FRAME = 0x0100, // Specially created by MS frame margins in Win10 CEM_VISIBLE_FRAME = 0x0200, // Takes into account HideCaptionAlwaysFrame() and CEM_WIN10FRAME CEM_INVISIBLE_FRAME = 0x400, // Takes into account HideCaptionAlwaysFrame() and CEM_WIN10FRAME // Маска для получения всех отступов CEM_ALL_MARGINS = CEM_FRAMECAPTION|CEM_TAB|/*CEM_SCROLL|*/CEM_STATUS/*|CEM_PAD*/, CEM_CLIENT_MARGINS = CEM_TAB|/*CEM_SCROLL|*/CEM_STATUS/*|CEM_PAD*/, }; enum ConEmuRect { CER_MAIN = 0, // Полный размер окна // Далее все координаты считаются относительно клиентской области {0,0} CER_MAINCLIENT, // клиентская область главного окна (БЕЗ отрезания табов, прокруток, DoubleView и прочего. Целиком) CER_TAB, // положение контрола с закладками (всего) CER_WORKSPACE, // рабочая область ConEmu. В ней располагаются все видимые VCon/GUI apps. (БОЛЬШЕ чем CER_BACK при SplitScreen/DoubleView). CER_BACK, // область, отведенная под VCon. Тут нужна вся область, без отрезания прокруток и округлений размеров под знакоместо CER_SCROLL, // положение полосы прокрутки CER_DC, // положение окна отрисовки CER_CONSOLE_ALL,// !!! _ размер в символах _ !!! размер всего поля (всех видимых сплитов) CER_CONSOLE_CUR,// !!! _ размер в символах _ !!! размер активной консоли (активный сплит) CER_CONSOLE_NTVDMOFF, // same as CER_CONSOLE, но во время отключения режима 16бит CER_FULLSCREEN, // полный размер в pix текущего монитора (содержащего ghWnd) CER_MAXIMIZED, // размер максимизированного окна на текущем мониторе (содержащего ghWnd) CER_RESTORE, // размер "восстановленного" окна после максимизации (коррекция по размеру монитора?) CER_MONITOR, // полный размер в pix рабочей области текущего монитора (содержащего ghWnd) // CER_CORRECTED // скорректированное положение (чтобы окно было видно на текущем мониторе) }; typedef DWORD ConEmuBorders; const ConEmuBorders CEB_TOP = 1, CEB_LEFT = 2, CEB_BOTTOM = 4, CEB_RIGHT = 8, CEB_ALL = CEB_TOP|CEB_LEFT|CEB_BOTTOM|CEB_RIGHT, // Next means "place window OnScreen when it out of screen totally" CEB_ALLOW_PARTIAL = 16, // None of above CEB_NONE = 0; enum class DragPanelBorder : int { None, Split, // Change width of left/right panels Left, // Left panel height Right, // Right panel height Both, // Change height of both panels }; enum TrackMenuPlace { tmp_None = 0, tmp_System, tmp_VCon, tmp_Cmd, // Tasks & Last commands tmp_CmdPopup, // Task contents (RClick, when menu was created without cmd-submenus) tmp_KeyBar, tmp_TabsList, tmp_PasteCmdLine, tmp_StatusBarCols, tmp_ChildSysMenu, tmp_SearchPopup, }; enum ConEmuWindowMode { wmCurrent = 0, wmNotChanging = -1, wmNormal = rNormal, wmMaximized = rMaximized, wmFullScreen = rFullScreen, }; LPCWSTR GetWindowModeName(ConEmuWindowMode wm); // Allow or not to convert pasted Windows path into Posix notation typedef BYTE PosixPasteMode; const PosixPasteMode pxm_Convert = 1, // always try to convert pxm_Intact = 2, // never convert pxm_Auto = 0 // autoselect on certain conditions and m_Args.pszMntRoot value ; enum ExpandTextRangeType { // Used for DblClick word selection, for example etr_Word = 0x0001, // Internet/intranet URL's etr_Url = 0x0002, // Highlight and goto compiler errors etr_File = 0x0004, etr_Row = 0x1000, etr_Col = 0x2000, etr_FileRow = (etr_File|etr_Row), etr_FileRowCol = (etr_File|etr_Row|etr_Col), // IP v4 or v6 etr_IP = 0x0008, // PID etr_PID = 0x0010, // Find somth suitable for clicking etr_AnyClickable = (etr_Url|etr_File), // Nothing was found etr_None = 0 }; // Подсветка URL's и строк-ошибок-компиляторов struct ConEmuTextRange { COORD mcr_FileLineStart, mcr_FileLineEnd; ExpandTextRangeType etrLast; }; enum BackgroundOp { eUpLeft = 0, eStretch = 1, eTile = 2, eUpRight = 3, eDownLeft = 4, eDownRight = 5, eFit = 6, // Stretch aspect ratio (Fit) eFill = 7, // Stretch aspect ratio (Fill) eCenter = 8, // eOpLast = eCenter, }; enum AnsiExecutionPerm { ansi_Allowed = 0, ansi_CmdOnly = 1, // Default ansi_Disabled = 2, }; enum ToolbarMainBitmapIdx { BID_FIST_CON = 0, BID_LAST_CON = (MAX_CONSOLE_COUNT-1), BID_NEWCON_IDX, BID_ALTERNATIVE_IDX, BID_MINIMIZE_IDX, BID_MAXIMIZE_IDX, BID_RESTORE_IDX, BID_APPCLOSE_IDX, BID_SYSMENU_IDX, BID_DUMMYBTN_IDX, BID_TOOLBAR_LAST_IDX, }; enum ToolbarCommandIdx { TID_ACTIVE_NUMBER = 1, TID_CREATE_CON, TID_ALTERNATIVE, TID_SCROLL, TID_MINIMIZE, TID_MAXIMIZE, TID_APPCLOSE, //TID_COPYING, TID_SYSMENU, TID_MINIMIZE_SEP = 110, }; enum SwitchGuiFocusOp { sgf_None = 0, sgf_FocusSwitch, sgf_FocusGui, sgf_FocusChild, sgf_Last }; enum CEStatusFlags { csf_VertDelim = 0x00000001, csf_HorzDelim = 0x00000002, csf_SystemColors = 0x00000004, csf_NoVerticalPad = 0x00000008, }; enum CECopyMode { cm_CopySel = 0, // Copy current selection (old bCopyAll==false) cm_CopyAll = 1, // Copy full buffer (old bCopyAll==true) cm_CopyVis = 2, // Copy visible screen area cm_CopyInt = 3, // Copy current selection into internal CEStr }; #define CTSFormatDefault 0xFF /* use gpSet->isCTSHtmlFormat */ enum CEPasteMode { pm_Standard = 0, // Paste with possible "Return" keypresses pm_FirstLine = 1, // Paste only first line from the clipboard pm_OneLine = 2, // Paste all lines from the clipboard, but delimit them with SPACES (cmd-line safe!) }; enum CESizeStyle { ss_Standard = 0, ss_Pixels = 1, ss_Percents = 2, }; union CESize { DWORD Raw; struct { int Value: 24; CESizeStyle Style: 8; wchar_t TempSZ[12]; }; const wchar_t* AsString() { switch (Style) { case ss_Pixels: swprintf_c(TempSZ, L"%ipx", Value); break; case ss_Percents: swprintf_c(TempSZ, L"%i%%", Value); break; //case ss_Standard: default: swprintf_c(TempSZ, L"%i", Value); } return TempSZ; }; bool IsValid(bool IsWidth) const { bool bValid; switch (Style) { case ss_Percents: bValid = (Value >= 1 && Value <= 100); break; case ss_Pixels: // Treat width/height as values for font size 4x2 (minimal) if (IsWidth) bValid = (Value >= (MIN_CON_WIDTH*4)); else bValid = (Value >= (MIN_CON_HEIGHT*2)); break; default: if (IsWidth) bValid = (Value >= MIN_CON_WIDTH); else bValid = (Value >= MIN_CON_HEIGHT); } return bValid; }; bool Set(bool IsWidth, CESizeStyle NewStyle, int NewValue) { if (NewStyle == ss_Standard) { int nDef = IsWidth ? 80 : 25; int nMax = IsWidth ? 1000 : 500; if (NewValue <= 0) NewValue = nDef; else if (NewValue > nMax) NewValue = nMax; } else if (NewStyle == ss_Percents) { int nDef = IsWidth ? 50 : 30; int nMax = 100; if (NewValue <= 0) NewValue = nDef; else if (NewValue > nMax) NewValue = nMax; } if (!NewValue) { // Size can't be empty _ASSERTE(NewValue); // Fail return false; } Value = NewValue; Style = NewStyle; return true; }; void SetFromRaw(bool IsWidth, DWORD aRaw) { CESize v; v.Raw = aRaw; if (v.Style == ss_Standard || v.Style == ss_Pixels || v.Style == ss_Percents) { this->Set(IsWidth, v.Style, v.Value); } }; bool SetFromString(bool IsWidth, const wchar_t* sValue) { if (!sValue || !*sValue) return false; wchar_t* pszEnd = NULL; // Try to convert int NewValue = wcstol(sValue, &pszEnd, 10); if (!NewValue) return false; CESizeStyle NewStyle = ss_Standard; if (pszEnd) { switch (*SkipNonPrintable(pszEnd)) { case L'%': NewStyle = ss_Percents; break; case L'p': NewStyle = ss_Pixels; break; } } // Done return Set(IsWidth, NewStyle, NewValue); }; }; // this is NOT a bitmask field! // only exact values are allowed! enum EnumVConFlags { evf_None = 0, evf_Active = 1, evf_Visible = 2, evf_GroupSet = 3, // Consoles with flag vf_GroupSet evf_All = 4, }; enum GroupInputCmd { gic_Switch = 0, gic_Enable = 1, gic_Disable = 2, }; bool CheckLockFrequentExecute(DWORD& Tick, DWORD Interval); #define LockFrequentExecute(Interval,LastExecuteTick) if (CheckLockFrequentExecute(LastExecuteTick,Interval)) #define LockFrequentExecuteStatic(Interval) static DWORD LastExecuteTick; if (CheckLockFrequentExecute(LastExecuteTick,Interval)) extern const wchar_t* gsHomePage; // = L"https://conemu.github.io"; extern const wchar_t* gsDownlPage; // = L"http://www.fosshub.com/ConEmu.html"; extern const wchar_t* gsFirstStart; // = L"https://conemu.github.io/en/SettingsFast.html"; extern const wchar_t* gsReportBug; // = L"https://conemu.github.io/en/Issues.html"; extern const wchar_t* gsReportCrash; // = L"https://conemu.github.io/en/Issues.html"; extern const wchar_t* gsWhatsNew; // = L"https://conemu.github.io/en/Whats_New.html"; template <class T> void ExchangePtr(T& a, T& b) { T c = a; a = b; b = c; } template <class T> T GetMinMax(T a, int v1, int v2) { if (a < (T)v1) a = (T)v1; else if (a > (T)v2) a = (T)v2; return a; } template <class T> void MinMax(T &a, int v1, int v2) { if (a < (T)v1) a = (T)v1; else if (a > (T)v2) a = (T)v2; } template <class T> void MinMax(T &a, int v2) { if (a > (T)v2) a = (T)v2; } #include <pshpack1.h> typedef struct tagMYRGB { union { COLORREF color; struct { BYTE rgbBlue; BYTE rgbGreen; BYTE rgbRed; BYTE rgbReserved; }; }; } MYRGB, MYCOLORREF; #include <poppack.h> // pszWords - '|'separated void StripWords(wchar_t* pszText, const wchar_t* pszWords); // pszCommentMark - for example L"#" void StripLines(wchar_t* pszText, LPCWSTR pszCommentMark); // One message cycle step bool ProcessMessage(MSG& Msg); // All window/gdi related code must be run in main thread bool isMainThread(); // Predefined user messages #define UM_USER_CONTROLS (WM_APP+33) #define UM_FILL_CMDLIST (WM_APP+34) #define UM_SEARCH (WM_APP+35) #define UM_SEARCH_FOCUS (WM_APP+36) #define UM_EDIT_KILL_FOCUS (WM_APP+37) #define UM_PALETTE_FAST_CHG (WM_APP+38) #define UM_HOTKEY_FILTER (WM_APP+39) #define UM_FILTER_FOCUS (WM_APP+40)
[ "ConEmu.Maximus5@gmail.com" ]
ConEmu.Maximus5@gmail.com
ef7fb3a819bf9d675f43c5fce671cfd8939173f9
d85b1f3ce9a3c24ba158ca4a51ea902d152ef7b9
/testcases/CWE190_Integer_Overflow/s02/CWE190_Integer_Overflow__int64_t_fscanf_square_73a.cpp
0eb1b69ceca5e47d57d90b285cacf9aead0ad7db
[]
no_license
arichardson/juliet-test-suite-c
cb71a729716c6aa8f4b987752272b66b1916fdaa
e2e8cf80cd7d52f824e9a938bbb3aa658d23d6c9
refs/heads/master
2022-12-10T12:05:51.179384
2022-11-17T15:41:30
2022-12-01T15:25:16
179,281,349
34
34
null
2022-12-01T15:25:18
2019-04-03T12:03:21
null
UTF-8
C++
false
false
3,060
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE190_Integer_Overflow__int64_t_fscanf_square_73a.cpp Label Definition File: CWE190_Integer_Overflow.label.xml Template File: sources-sinks-73a.tmpl.cpp */ /* * @description * CWE: 190 Integer Overflow * BadSource: fscanf Read data from the console using fscanf() * GoodSource: Set data to a small, non-zero number (two) * Sinks: square * GoodSink: Ensure there will not be an overflow before squaring data * BadSink : Square data, which can lead to overflow * Flow Variant: 73 Data flow: data passed in a list from one function to another in different source files * * */ #include "std_testcase.h" #include <list> using namespace std; namespace CWE190_Integer_Overflow__int64_t_fscanf_square_73 { #include <inttypes.h> #ifndef OMITBAD /* bad function declaration */ void badSink(list<int64_t> dataList); void bad() { int64_t data; list<int64_t> dataList; data = 0LL; /* POTENTIAL FLAW: Use a value input from the console */ fscanf (stdin, "%" SCNd64, &data); /* Put data in a list */ dataList.push_back(data); dataList.push_back(data); dataList.push_back(data); badSink(dataList); } #endif /* OMITBAD */ #ifndef OMITGOOD /* goodG2B uses the GoodSource with the BadSink */ void goodG2BSink(list<int64_t> dataList); static void goodG2B() { int64_t data; list<int64_t> dataList; data = 0LL; /* FIX: Use a small, non-zero value that will not cause an overflow in the sinks */ data = 2; /* Put data in a list */ dataList.push_back(data); dataList.push_back(data); dataList.push_back(data); goodG2BSink(dataList); } /* goodB2G uses the BadSource with the GoodSink */ void goodB2GSink(list<int64_t> dataList); static void goodB2G() { int64_t data; list<int64_t> dataList; data = 0LL; /* POTENTIAL FLAW: Use a value input from the console */ fscanf (stdin, "%" SCNd64, &data); dataList.push_back(data); dataList.push_back(data); dataList.push_back(data); goodB2GSink(dataList); } void good() { goodG2B(); goodB2G(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on its own for testing or for building a binary to use in testing binary analysis tools. It is not used when compiling all the testcases as one application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE190_Integer_Overflow__int64_t_fscanf_square_73; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
[ "Alexander.Richardson@cl.cam.ac.uk" ]
Alexander.Richardson@cl.cam.ac.uk
bce87e01347535a61e6d013f53d03074a3b53bb3
e98b8922ee3d566d7b7193bc71d269ce69b18b49
/include/qpid/amqp0_10/SenderImpl.h
d5b2babfe67e747734144a0d5027ea613e57ff59
[]
no_license
QuarkCloud/qpid-lite
bfcf275eb5a99be3a1defb18331780d1b242dfa6
3818811d1b2eb70c9603c1e74045072b9a9b8cbc
refs/heads/master
2020-04-14T17:18:28.441389
2019-02-18T02:20:56
2019-02-18T02:20:56
163,975,774
1
1
null
null
null
null
UTF-8
C++
false
false
4,569
h
#ifndef QPID_AMQP0_10_SENDER_IMPL_H #define QPID_AMQP0_10_SENDER_IMPL_H 1 /* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */ #include "qpid/amqp/Address.h" #include "qpid/amqp/Message.h" #include "qpid/amqp/SenderImpl.h" #include "qpid/driver/AsyncSession.h" #include "qpid/amqp0_10/SessionImpl.h" #include <memory> #include <boost/intrusive_ptr.hpp> #include <boost/ptr_container/ptr_deque.hpp> namespace qpid { namespace amqp0_10 { class AddressResolution; class MessageSink; class OutgoingMessage; /** * */ class SenderImpl : public qpid::amqp::SenderImpl { public: enum State { UNRESOLVED, ACTIVE, CANCELLED }; SenderImpl(SessionImpl& parent, const std::string& name, const qpid::amqp::Address& address, bool autoReconnect); void send(const qpid::amqp::Message&, bool sync); void close(); void setCapacity(uint32_t); uint32_t getCapacity(); uint32_t getUnsettled(); void init(qpid::driver::AsyncSession, AddressResolution&); const std::string& getName() const; qpid::amqp::Session getSession() const; qpid::amqp::Address getAddress() const; private: mutable sys::Mutex lock; boost::intrusive_ptr<SessionImpl> parent; const bool autoReconnect; const std::string name; const qpid::amqp::Address address; State state; std::auto_ptr<MessageSink> sink; qpid::driver::AsyncSession session; std::string destination; std::string routingKey; typedef boost::ptr_deque<OutgoingMessage> OutgoingMessages; OutgoingMessages outgoing; uint32_t capacity; uint32_t window; bool flushed; const bool unreliable; uint32_t checkPendingSends(bool flush); // Dummy ScopedLock parameter means call with lock held uint32_t checkPendingSends(bool flush, const sys::Mutex::ScopedLock&); void replay(const sys::Mutex::ScopedLock&); void waitForCapacity(); //logic for application visible methods: void sendImpl(const qpid::amqp::Message&); void sendUnreliable(const qpid::amqp::Message&); void closeImpl(); //functors for application visible methods (allowing locking and //retry to be centralised): struct Command { SenderImpl& impl; Command(SenderImpl& i) : impl(i) {} }; struct Send : Command { const qpid::amqp::Message& message; bool repeat; Send(SenderImpl& i, const qpid::amqp::Message& m) : Command(i), message(m), repeat(true) {} void operator()() { impl.waitForCapacity(); //from this point message will be recorded if there is any //failure (and replayed) so need not repeat the call repeat = false; impl.sendImpl(message); } }; struct UnreliableSend : Command { const qpid::amqp::Message& message; UnreliableSend(SenderImpl& i, const qpid::amqp::Message& m) : Command(i), message(m) {} void operator()() { //TODO: ideally want to put messages on the outbound //queue and pull them off in io thread, but the old //0-10 driver doesn't support that option so for now //we simply don't queue unreliable messages impl.sendUnreliable(message); } }; struct Close : Command { Close(SenderImpl& i) : Command(i) {} void operator()() { impl.closeImpl(); } }; struct CheckPendingSends : Command { bool flush; uint32_t pending; CheckPendingSends(SenderImpl& i, bool f) : Command(i), flush(f), pending(0) {} void operator()() { pending = impl.checkPendingSends(flush); } }; //helper templates for some common patterns template <class F> void execute() { F f(*this); parent->execute(f); } template <class F, class P> bool execute1(P p) { F f(*this, p); return parent->execute(f); } }; } }// namespace qpid::amqp0_10 #endif /*!QPID_AMQP0_10_SENDER_IMPL_H*/
[ "romandion@163.com" ]
romandion@163.com
cc6ae794c4ba8e68388f932b638cb0f8d79f7055
073e5c1775886ec42ed741378e682534e79bb856
/mts_src/tp/include/CMarketDataManager.h
fa84b8bb51343f357010a6d4df0e5013be972433
[]
no_license
tt9024/huan
97edd01e280651720a7556ff75dd64cc91184a04
48dcc7ef0ea40902e33bc67faf0298736a3ebe6b
refs/heads/master
2023-07-26T12:30:53.116852
2023-07-11T02:30:14
2023-07-11T02:30:14
134,997,307
0
0
null
null
null
null
UTF-8
C++
false
false
1,702
h
#ifndef CMARKETDATAMANAGER_HEADER #define CMARKETDATAMANAGER_HEADER #include "CAlgorithm.h" #include "CConfig.h" #include "CTopOfBook.h" #include "CToBSnapshot.h" namespace Mts { namespace TickData { class CMarketDataManager : public Mts::Algorithm::CAlgorithm { public: CMarketDataManager(unsigned int uiEventBufferSizeBytes, unsigned int uiUpdateMSec, bool bUseSQL); ~CMarketDataManager(); void onCreate(); void onStart(); void onStartOfDay(Mts::Core::CDateTime dtTimestamp); void onEvent(const Mts::OrderBook::CBidAsk &objBidAsk); void onEvent(const Mts::OrderBook::CTrade &objTrade); void onEvent(const Mts::Order::COrderStatus &objOrderStatus); void onEvent(const Mts::Order::COrderFill &objOrderFill); void onEvent(const std::string &strUserCommand); void onEndOfDay(Mts::Core::CDateTime dtTimestamp); void onStop(); void onDestroy(); private: double computeIntervalEndTime(const Mts::Core::CDateTime &dtTimestamp, double dWriteIntervalDayFrac) const; private: // store current TOB and last trade Mts::OrderBook::CToBSnapshot m_TopOfBookSnapshot[Mts::Core::CConfig::MAX_NUM_SYMBOLS]; Mts::OrderBook::CTrade m_LastTrade[Mts::Core::CConfig::MAX_NUM_SYMBOLS]; bool m_bUseSQL; double m_dIntervalEndTime[Mts::Core::CConfig::MAX_NUM_SYMBOLS]; double m_dIntervalEndTimeHF[Mts::Core::CConfig::MAX_NUM_SYMBOLS]; }; } } #endif
[ "joy@joy.com" ]
joy@joy.com
32db9e17a87082bb62cd2e3c2c4e665610257070
64a1533f4541b76181cd6d3cec3b28876c969250
/paulst/stef/UnitTests/main.cpp
b5088cfac702cfa90e6eb0749afae1e275be506e
[]
no_license
drkvogel/retrasst
df1db3330115f6e2eea7afdb869e070a28c1cae8
ee952fe39cf1a00998b00a09ca361fc7c83fa336
refs/heads/master
2020-05-16T22:53:26.565996
2014-08-01T16:52:16
2014-08-01T16:52:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
705
cpp
#include <vcl.h> #include <windows.h> #include <System.hpp> #include <cstdlib> #include <iostream> #include "TutCallback.h" #include <tut.h> #include "TaskWithCallbackTest.h" #include "ThreadPoolTest.h" #include <tchar.h> #include <stdio.h> namespace tut { test_runner_singleton runner; } void pause() { std::cout << "[enter] to quit..." << std::endl; char c; std::cin >> std::noskipws >> c; } int _tmain(int argc, _TCHAR* argv[]) { TutCallback callback; tut::runner.get().set_callback(&callback); // run all tests in all groups tut::runner.get().run_tests(); pause(); return EXIT_SUCCESS; }
[ "chris.bird@ctsu.ox.ac.uk" ]
chris.bird@ctsu.ox.ac.uk
8bebf640a75b9516c245834afb800e032eabb12d
3b76b2980485417cb656215379b93b27d4444815
/8.Nop KLTN/DIA/SCVOICECHAT/SOURCE/SC Voice Chat Client/Mixer.cpp
725f4d8f7910fe83c033bc4e444e3fe493282f28
[]
no_license
hemprasad/lvmm-sc
48d48625b467b3756aa510b5586af250c3a1664c
7c68d1d3b1489787f5ec3d09bc15b4329b0c087a
refs/heads/master
2016-09-06T11:05:32.770867
2011-07-25T01:09:07
2011-07-25T01:09:07
38,108,101
0
0
null
null
null
null
UTF-8
C++
false
false
4,098
cpp
////////////////////////////////////////////////////////////////////// // // Handles various controls such as volume control...etc. // // Mixer.cpp: implementation of the CMixer class. // ////////////////////////////////////////////////////////////////////// #include<afxwin.h> #include "Mixer.h" #include <mmsystem.h> #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CMixer::CMixer(DWORD ComponentType, DestKind dkKind,int & min,int & max) { HMIXER hMixer; HRESULT hr; hr = mixerOpen(&hMixer, 0, 0, 0, 0); if (hr!= MMSYSERR_NOERROR) return; m_dwControlID=-1; m_bOK=FALSE; m_dwChannels=1; MIXERLINE mxl; MIXERCONTROL mxc; MIXERLINECONTROLS mxlc; DWORD kind, count; if (dkKind == Play) kind = MIXERLINE_COMPONENTTYPE_DST_SPEAKERS; else kind = MIXERLINE_COMPONENTTYPE_DST_WAVEIN; mxl.cbStruct = sizeof(mxl); mxl.dwComponentType = kind; hr = mixerGetLineInfo((HMIXEROBJ)hMixer, &mxl, MIXER_GETLINEINFOF_COMPONENTTYPE |MIXER_OBJECTF_HMIXER); if (hr!= MMSYSERR_NOERROR) { mixerClose(hMixer); return; } count = mxl.dwSource; /* if(count==-1) { AfxMessageBox("There are no source lines for this destination line"); return; } */ // get dwControlID if(dkKind == Play) { mxlc.cbStruct = sizeof(MIXERLINECONTROLS); mxlc.dwLineID = mxl.dwLineID; mxlc.dwControlType = MIXERCONTROL_CONTROLTYPE_VOLUME; mxlc.cControls = 1; mxlc.cbmxctrl = sizeof(MIXERCONTROL); mxlc.pamxctrl = &mxc; if (::mixerGetLineControls(reinterpret_cast<HMIXEROBJ>(hMixer), &mxlc, MIXER_OBJECTF_HMIXER | MIXER_GETLINECONTROLSF_ONEBYTYPE) != MMSYSERR_NOERROR) { return ; } m_dwChannels = 1; m_dwControlID = mxc.dwControlID; min=mxc.Bounds.dwMinimum; max=mxc.Bounds.dwMaximum; } else { for(UINT i = 0; i < count; i++) { mxl.dwSource = i; mixerGetLineInfo((HMIXEROBJ)hMixer, &mxl, MIXER_GETLINEINFOF_SOURCE | MIXER_OBJECTF_HMIXER); if (mxl.dwComponentType == ComponentType) { m_dwChannels = mxl.cChannels; mxc.cbStruct = sizeof(mxc); mxlc.cbStruct = sizeof(mxlc); mxlc.dwLineID = mxl.dwLineID; mxlc.dwControlType = MIXERCONTROL_CONTROLTYPE_VOLUME; mxlc.cControls = 1; mxlc.cbmxctrl = sizeof(MIXERCONTROL); mxlc.pamxctrl = &mxc; hr = mixerGetLineControls((HMIXEROBJ)hMixer, &mxlc, MIXER_GETLINECONTROLSF_ONEBYTYPE | MIXER_OBJECTF_HMIXER); m_dwControlID = mxc.dwControlID; min=mxc.Bounds.dwMinimum; max=mxc.Bounds.dwMaximum; break; }; } } m_bOK=TRUE; mixerClose(hMixer); } void CMixer::SetVolume(DWORD dwVol) { if (!m_bOK) return; HMIXER hMixer; HRESULT hr; hr = mixerOpen(&hMixer, 0, 0, 0, 0); if (hr!= MMSYSERR_NOERROR) return; MIXERCONTROLDETAILS mxcd; MIXERCONTROLDETAILS_UNSIGNED mxdu; mxdu.dwValue = dwVol; mxcd.cMultipleItems = 0; /********Modified code ******/ mxcd.cChannels = m_dwChannels; mxcd.cbStruct = sizeof(mxcd); mxcd.dwControlID = m_dwControlID; mxcd.cbDetails = sizeof(mxdu); mxcd.paDetails = &mxdu; hr = mixerSetControlDetails((HMIXEROBJ)hMixer, &mxcd, MIXER_SETCONTROLDETAILSF_VALUE | MIXER_OBJECTF_HMIXER); mixerClose(hMixer); } DWORD CMixer::GetVolume() { if (!m_bOK) return 0; HMIXER hMixer; HRESULT hr; hr = mixerOpen(&hMixer, 0, 0, 0, 0); if (FAILED(hr)) return 0; MIXERCONTROLDETAILS mxcd; MIXERCONTROLDETAILS_UNSIGNED mxdu; mxcd.cMultipleItems = 0; mxcd.cChannels = m_dwChannels; mxcd.cbStruct = sizeof(mxcd); mxcd.dwControlID = m_dwControlID; mxcd.cbDetails = sizeof(mxdu); mxcd.paDetails = &mxdu; hr = mixerGetControlDetails((HMIXEROBJ)hMixer, &mxcd, MIXER_GETCONTROLDETAILSF_VALUE | MIXER_OBJECTF_HMIXER); mixerClose(hMixer); return mxdu.dwValue; }
[ "ITMPrac@gmail.com" ]
ITMPrac@gmail.com
d396bb75604f59a2a0165876a7e79b9f3d6d81ab
7c77439896bc3b4fdab4592225643633d9ed1ead
/PioneerSoundRemote.ino
4b1d9b1420a5c5d023a9dd2bf59cfbadbbd74c24
[]
no_license
philipf/PioneerSoundRemote
57d60d7b1c68b7a403c7b41aeb6a8ee34b9c54a6
cb44e613864bc8ac40d2b6fe0e3ad7fdf280af05
refs/heads/master
2020-03-21T09:28:08.386574
2018-06-23T14:00:57
2018-06-23T14:00:57
138,401,267
0
0
null
null
null
null
UTF-8
C++
false
false
2,443
ino
// Simple remote to control the sound on a Pioneer A/V receiver by Philip Fourie // Date: 2018/06/23 // Bill of materials: // ------------------ // Arduino Uno (5V) // PD333-3B/H0/L2 // - 5mm photodiode (used to record the original IR data code for each button) // - http://www.everlight.com/file/ProductFile/PD333-3B-H0-L2.pdf // // IR333C/H0/L10 // - 5mm Infrared LED,T-1 3/4 (used to send a IR data code) // - http://www.everlight.com/file/ProductFile/IR333C-H0-L10.pdf // Pinout: // ------- // Rotary encoder: // CLK -> A3 // DT -> A2 // SW -> Not connected // GND -> GND // VCC -> VC (5V) // // IR LED: // GND -> GND // Data -> D10 // 3rd pary libraries // ------------------ // To the libary authors and contributors, thank you very much, without you I wouldn't have // been able to do this. // // This library enables you to send and receive using infra-red signals on an Arduino. // https://github.com/z3t0/Arduino-IRremote #include <IRremote.h> // RotaryEncoder library by Matthias Hertel // https://github.com/mathertel/RotaryEncoder // http://www.mathertel.de/Arduino/RotaryEncoderLibrary.aspx // This library decodes the signals from a rotary encoder and translates them into a counter position #include <RotaryEncoder.h> // Setup a RotaryEncoder for pins A2 and A3: RotaryEncoder encoder(A2, A3); IRsend irsend; void setup() { Serial.begin (9600); Serial.println("Started"); pinMode (13, OUTPUT); // You may have to modify the next 2 lines if using other pins than A2 and A3 PCICR |= (1 << PCIE1); // This enables Pin Change Interrupt 1 that covers the Analog input pins or Port C. PCMSK1 |= (1 << PCINT10) | (1 << PCINT11); // This enables the interrupt for pin 2 and 3 of Port C. } ISR(PCINT1_vect) { encoder.tick(); // just call tick() to check the state. } void loop() { static int pos = 0; int newPos = encoder.getPosition(); if (pos != newPos) { Serial.print(newPos); Serial.println(); if (newPos > pos) { volumeUp(); } else { volumeDown(); } pos = newPos; } delay(1); } void volumeDown() { Serial.println("Volume down"); sendSignal(0xA55AD02F); } void volumeUp() { Serial.println("Volume up"); sendSignal(0xA55A50AF); } void sendSignal(unsigned long value) { digitalWrite(13, HIGH); for (int i = 0; i < 3; i++) { irsend.sendNEC(value, 32); delay(40); } digitalWrite(13, LOW); }
[ "philipf@agilebridge.co.za" ]
philipf@agilebridge.co.za
35db99592c0f6cd98ea9a88d734afcefa1caecb5
dd19c3e4d789f85a5f61e53d66f3ad58b6493f2a
/test/OFairfoilMesh/points
b0547147d2a3949587b0737286c691ae6f7ec852
[ "MIT" ]
permissive
mohamedmkamra/FvCFD.jl
c262e7e0f3ceb155341598e4a25ab861a50fcc01
07afc193631af9c9d445df30a3528cd13cef580e
refs/heads/master
2023-06-10T16:38:21.854410
2021-06-13T01:06:17
2021-06-13T01:06:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
861,790
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class vectorField; location "constant/polyMesh"; object points; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 37224 ( (0.00294975 0.00944232 0) (0.0102995 0.0172735 0) (0.020022 0.0236096 0) (0.0313087 0.0289511 0) (0.0438776 0.0336056 0) (0.0576253 0.0377375 0) (0.072512 0.0414415 0) (0.0885247 0.0447708 0) (0.10566 0.0477555 0) (0.123917 0.0504112 0) (0.14329 0.0527444 0) (0.163769 0.0547568 0) (0.185336 0.0564467 0) (0.207963 0.0578117 0) (0.231611 0.0588492 0) (0.256229 0.0595587 0) (0.281756 0.0599414 0) (0.308119 0.0600019 0) (0.33523 0.0597476 0) (0.362995 0.0591896 0) (0.391306 0.0583422 0) (0.42005 0.0572233 0) (0.449103 0.0558532 0) (0.478339 0.0542548 0) (0.507629 0.0524524 0) (0.536842 0.0504719 0) (0.56585 0.0483393 0) (0.594526 0.0460809 0) (0.622752 0.0437221 0) (0.650415 0.0412876 0) (0.677414 0.0388005 0) (0.703656 0.0362825 0) (0.72906 0.0337535 0) (0.75356 0.0312316 0) (0.777098 0.0287329 0) (0.799632 0.0262719 0) (0.821131 0.0238609 0) (0.841575 0.0215106 0) (0.860955 0.0192303 0) (0.879272 0.0170273 0) (0.896536 0.0149076 0) (0.912766 0.0128758 0) (0.927984 0.0109352 0) (0.942222 0.00908797 0) (0.955513 0.00733521 0) (0.967895 0.00567708 0) (0.979409 0.00411286 0) (0.990096 0.00264118 0) (0 0 0) (1 0.00126 0) (0.00294975 -0.00944232 0) (0.0102995 -0.0172735 0) (0.020022 -0.0236096 0) (0.0313087 -0.0289511 0) (0.0438776 -0.0336056 0) (0.0576253 -0.0377375 0) (0.072512 -0.0414415 0) (0.0885247 -0.0447708 0) (0.10566 -0.0477555 0) (0.123917 -0.0504112 0) (0.14329 -0.0527444 0) (0.163769 -0.0547568 0) (0.185336 -0.0564467 0) (0.207963 -0.0578117 0) (0.231611 -0.0588492 0) (0.256229 -0.0595587 0) (0.281756 -0.0599414 0) (0.308119 -0.0600019 0) (0.33523 -0.0597476 0) (0.362995 -0.0591896 0) (0.391306 -0.0583422 0) (0.42005 -0.0572233 0) (0.449103 -0.0558532 0) (0.478339 -0.0542548 0) (0.507629 -0.0524524 0) (0.536842 -0.0504719 0) (0.56585 -0.0483393 0) (0.594526 -0.0460809 0) (0.622752 -0.0437221 0) (0.650415 -0.0412876 0) (0.677414 -0.0388005 0) (0.703656 -0.0362825 0) (0.72906 -0.0337535 0) (0.75356 -0.0312316 0) (0.777098 -0.0287329 0) (0.799632 -0.0262719 0) (0.821131 -0.0238609 0) (0.841575 -0.0215106 0) (0.860955 -0.0192303 0) (0.879272 -0.0170273 0) (0.896536 -0.0149076 0) (0.912766 -0.0128758 0) (0.927984 -0.0109352 0) (0.942222 -0.00908797 0) (0.955513 -0.00733521 0) (0.967895 -0.00567708 0) (0.979409 -0.00411286 0) (0.990096 -0.00264118 0) (1 -0.00126 0) (0.990311 0.00350405 0) (0.979559 0.00508537 0) (0.968028 0.00666615 0) (0.955641 0.0083275 0) (0.942348 0.0100806 0) (0.928108 0.0119279 0) (0.912888 0.0138685 0) (0.896656 0.0159004 0) (0.87939 0.0180201 0) (0.86107 0.0202233 0) (0.841688 0.0225037 0) (0.821241 0.024854 0) (0.79974 0.0272652 0) (0.777203 0.0297264 0) (0.753662 0.0322253 0) (0.729159 0.0347474 0) (0.703751 0.0372766 0) (0.677506 0.0397948 0) (0.650503 0.0422821 0) (0.622836 0.0447169 0) (0.594606 0.047076 0) (0.565925 0.0493347 0) (0.536912 0.0514675 0) (0.507694 0.0534483 0) (0.478397 0.0552509 0) (0.449154 0.0568497 0) (0.420093 0.05822 0) (0.391341 0.0593391 0) (0.363021 0.0601866 0) (0.335246 0.0607446 0) (0.308124 0.0609989 0) (0.281749 0.0609382 0) (0.256209 0.0605551 0) (0.231576 0.059845 0) (0.207913 0.0588065 0) (0.18527 0.0574402 0) (0.163684 0.0557484 0) (0.143184 0.0537334 0) (0.123788 0.0513968 0) (0.105506 0.0487363 0) (0.0883413 0.0457451 0) (0.0722942 0.0424064 0) (0.0573662 0.0386885 0) (0.043567 0.0345348 0) (0.0309308 0.0298433 0) (0.0195515 0.0244328 0) (0.00969963 0.0179583 0) (0.00219182 0.0098581 0) (-0.000846408 5.42101e-20 0) (0.00219182 -0.0098581 0) (0.00969963 -0.0179583 0) (0.0195515 -0.0244328 0) (0.0309308 -0.0298433 0) (0.043567 -0.0345348 0) (0.0573662 -0.0386885 0) (0.0722942 -0.0424064 0) (0.0883413 -0.0457451 0) (0.105506 -0.0487363 0) (0.123788 -0.0513968 0) (0.143184 -0.0537334 0) (0.163684 -0.0557484 0) (0.18527 -0.0574402 0) (0.207913 -0.0588065 0) (0.231576 -0.059845 0) (0.256209 -0.0605551 0) (0.281749 -0.0609382 0) (0.308124 -0.0609989 0) (0.335246 -0.0607446 0) (0.363021 -0.0601866 0) (0.391341 -0.0593391 0) (0.420093 -0.05822 0) (0.449154 -0.0568497 0) (0.478397 -0.0552509 0) (0.507694 -0.0534483 0) (0.536912 -0.0514675 0) (0.565925 -0.0493347 0) (0.594606 -0.047076 0) (0.622836 -0.0447169 0) (0.650503 -0.0422821 0) (0.677506 -0.0397948 0) (0.703751 -0.0372766 0) (0.729159 -0.0347474 0) (0.753662 -0.0322253 0) (0.777203 -0.0297264 0) (0.79974 -0.0272652 0) (0.821241 -0.024854 0) (0.841688 -0.0225037 0) (0.86107 -0.0202233 0) (0.87939 -0.0180201 0) (0.896656 -0.0159004 0) (0.912888 -0.0138685 0) (0.928108 -0.0119279 0) (0.942348 -0.0100806 0) (0.955641 -0.0083275 0) (0.968028 -0.00666615 0) (0.979559 -0.00508537 0) (0.990311 -0.00350405 0) (1.00068 -0.00166521 0) (0.990534 0.00436388 0) (0.97972 0.00607425 0) (0.968164 0.00767677 0) (0.955772 0.00934345 0) (0.942476 0.0110971 0) (0.928234 0.0129442 0) (0.913011 0.0148846 0) (0.896778 0.0169162 0) (0.879509 0.0190358 0) (0.861187 0.0212388 0) (0.841802 0.0235192 0) (0.821353 0.0258695 0) (0.799849 0.0282807 0) (0.777309 0.030742 0) (0.753765 0.0332408 0) (0.729259 0.035763 0) (0.703848 0.0382923 0) (0.677599 0.0408107 0) (0.650593 0.0432982 0) (0.622922 0.0457332 0) (0.594687 0.0480924 0) (0.566001 0.0503513 0) (0.536984 0.0524844 0) (0.507759 0.0544654 0) (0.478456 0.0562683 0) (0.449206 0.0578673 0) (0.420138 0.0592378 0) (0.391378 0.0603571 0) (0.363048 0.0612047 0) (0.335263 0.0617628 0) (0.308129 0.062017 0) (0.281743 0.0619561 0) (0.256189 0.0615726 0) (0.231542 0.0608618 0) (0.207863 0.0598224 0) (0.185202 0.0584547 0) (0.163598 0.056761 0) (0.143077 0.0547434 0) (0.123658 0.0524031 0) (0.10535 0.0497377 0) (0.0881552 0.0467395 0) (0.0720731 0.0433907 0) (0.0571029 0.0396579 0) (0.043251 0.0354803 0) (0.030546 0.0307483 0) (0.0190731 0.0252627 0) (0.00909335 0.018643 0) (0.00143235 0.0102718 0) (-0.00169292 8.13152e-20 0) (0.00143235 -0.0102718 0) (0.00909335 -0.018643 0) (0.0190731 -0.0252627 0) (0.030546 -0.0307483 0) (0.043251 -0.0354803 0) (0.0571029 -0.0396579 0) (0.0720731 -0.0433907 0) (0.0881552 -0.0467395 0) (0.10535 -0.0497377 0) (0.123658 -0.0524031 0) (0.143077 -0.0547434 0) (0.163598 -0.056761 0) (0.185202 -0.0584547 0) (0.207863 -0.0598224 0) (0.231542 -0.0608618 0) (0.256189 -0.0615726 0) (0.281743 -0.0619561 0) (0.308129 -0.062017 0) (0.335263 -0.0617628 0) (0.363048 -0.0612047 0) (0.391378 -0.0603571 0) (0.420138 -0.0592378 0) (0.449206 -0.0578673 0) (0.478456 -0.0562683 0) (0.507759 -0.0544654 0) (0.536984 -0.0524844 0) (0.566001 -0.0503513 0) (0.594687 -0.0480924 0) (0.622922 -0.0457332 0) (0.650593 -0.0432982 0) (0.677599 -0.0408107 0) (0.703848 -0.0382923 0) (0.729259 -0.035763 0) (0.753765 -0.0332408 0) (0.777309 -0.030742 0) (0.799849 -0.0282807 0) (0.821353 -0.0258695 0) (0.841802 -0.0235192 0) (0.861187 -0.0212388 0) (0.879509 -0.0190358 0) (0.896778 -0.0169162 0) (0.913011 -0.0148846 0) (0.928234 -0.0129442 0) (0.942476 -0.0110971 0) (0.955772 -0.00934345 0) (0.968164 -0.00767677 0) (0.97972 -0.00607425 0) (0.990534 -0.00436388 0) (1.00136 -0.00213422 0) (0.990775 0.0052277 0) (0.979893 0.00707773 0) (0.968304 0.00870896 0) (0.955906 0.0103834 0) (0.942606 0.0121379 0) (0.928362 0.0139848 0) (0.913137 0.0159246 0) (0.896901 0.0179558 0) (0.879629 0.020075 0) (0.861305 0.0222777 0) (0.841918 0.0245578 0) (0.821466 0.0269079 0) (0.799959 0.0293189 0) (0.777417 0.0317801 0) (0.75387 0.0342789 0) (0.729361 0.036801 0) (0.703947 0.0393303 0) (0.677694 0.0418487 0) (0.650684 0.0443363 0) (0.623009 0.0467714 0) (0.59477 0.0491308 0) (0.566079 0.0513899 0) (0.537056 0.0535231 0) (0.507826 0.0555044 0) (0.478517 0.0573074 0) (0.44926 0.0589066 0) (0.420183 0.0602773 0) (0.391415 0.0613968 0) (0.363076 0.0622445 0) (0.33528 0.0628026 0) (0.308135 0.0630568 0) (0.281737 0.0629957 0) (0.25617 0.0626118 0) (0.231508 0.0619004 0) (0.207813 0.0608599 0) (0.185135 0.0594909 0) (0.163511 0.0577952 0) (0.142969 0.0557749 0) (0.123527 0.0534308 0) (0.105191 0.0507601 0) (0.0879661 0.0477545 0) (0.0718481 0.044395 0) (0.0568348 0.0406459 0) (0.0429291 0.0364423 0) (0.030154 0.0316656 0) (0.0185865 0.0260981 0) (0.00848131 0.0193242 0) (0.000677372 0.0106778 0) (-0.00252661 5.42101e-20 0) (0.000677372 -0.0106778 0) (0.00848131 -0.0193242 0) (0.0185865 -0.0260981 0) (0.030154 -0.0316656 0) (0.0429291 -0.0364423 0) (0.0568348 -0.0406459 0) (0.0718481 -0.044395 0) (0.0879661 -0.0477545 0) (0.105191 -0.0507601 0) (0.123527 -0.0534308 0) (0.142969 -0.0557749 0) (0.163511 -0.0577952 0) (0.185135 -0.0594909 0) (0.207813 -0.0608599 0) (0.231508 -0.0619004 0) (0.25617 -0.0626118 0) (0.281737 -0.0629957 0) (0.308135 -0.0630568 0) (0.33528 -0.0628026 0) (0.363076 -0.0622445 0) (0.391415 -0.0613968 0) (0.420183 -0.0602773 0) (0.44926 -0.0589066 0) (0.478517 -0.0573074 0) (0.507826 -0.0555044 0) (0.537056 -0.0535231 0) (0.566079 -0.0513899 0) (0.59477 -0.0491308 0) (0.623009 -0.0467714 0) (0.650684 -0.0443363 0) (0.677694 -0.0418487 0) (0.703947 -0.0393303 0) (0.729361 -0.036801 0) (0.75387 -0.0342789 0) (0.777417 -0.0317801 0) (0.799959 -0.0293189 0) (0.821466 -0.0269079 0) (0.841918 -0.0245578 0) (0.861305 -0.0222777 0) (0.879629 -0.020075 0) (0.896901 -0.0179558 0) (0.913137 -0.0159246 0) (0.928362 -0.0139848 0) (0.942606 -0.0121379 0) (0.955906 -0.0103834 0) (0.968304 -0.00870896 0) (0.979893 -0.00707773 0) (0.990775 -0.0052277 0) (1.002 -0.00261901 0) (0.991038 0.00609345 0) (0.980077 0.00809416 0) (0.96845 0.00976237 0) (0.956042 0.0114477 0) (0.942738 0.0132036 0) (0.928491 0.01505 0) (0.913264 0.0169891 0) (0.897025 0.0190196 0) (0.879752 0.0211382 0) (0.861425 0.0233403 0) (0.842035 0.0256199 0) (0.821581 0.0279696 0) (0.800072 0.0303803 0) (0.777526 0.0328412 0) (0.753976 0.0353399 0) (0.729465 0.0378619 0) (0.704047 0.0403911 0) (0.677791 0.0429095 0) (0.650777 0.045397 0) (0.623098 0.0478322 0) (0.594854 0.0501916 0) (0.566159 0.0524508 0) (0.537131 0.0545842 0) (0.507894 0.0565656 0) (0.478579 0.0583688 0) (0.449314 0.0599682 0) (0.42023 0.0613391 0) (0.391453 0.0624587 0) (0.363104 0.0633065 0) (0.335299 0.0638647 0) (0.308142 0.0641188 0) (0.281731 0.0640575 0) (0.25615 0.0636731 0) (0.231474 0.0629611 0) (0.207763 0.0619197 0) (0.185066 0.0605491 0) (0.163423 0.0588514 0) (0.14286 0.0568283 0) (0.123393 0.0544803 0) (0.10503 0.0518041 0) (0.0877737 0.0487906 0) (0.0716191 0.0454196 0) (0.0565616 0.0416528 0) (0.0426006 0.0374208 0) (0.0297538 0.0325951 0) (0.0180908 0.0269387 0) (0.00786237 0.0200019 0) (-7.50454e-05 0.0110761 0) (-0.00334993 9.48677e-20 0) (-7.50454e-05 -0.0110761 0) (0.00786237 -0.0200019 0) (0.0180908 -0.0269387 0) (0.0297538 -0.0325951 0) (0.0426006 -0.0374208 0) (0.0565616 -0.0416528 0) (0.0716191 -0.0454196 0) (0.0877737 -0.0487906 0) (0.10503 -0.0518041 0) (0.123393 -0.0544803 0) (0.14286 -0.0568283 0) (0.163423 -0.0588514 0) (0.185066 -0.0605491 0) (0.207763 -0.0619197 0) (0.231474 -0.0629611 0) (0.25615 -0.0636731 0) (0.281731 -0.0640575 0) (0.308142 -0.0641188 0) (0.335299 -0.0638647 0) (0.363104 -0.0633065 0) (0.391453 -0.0624587 0) (0.42023 -0.0613391 0) (0.449314 -0.0599682 0) (0.478579 -0.0583688 0) (0.507894 -0.0565656 0) (0.537131 -0.0545842 0) (0.566159 -0.0524508 0) (0.594854 -0.0501916 0) (0.623098 -0.0478322 0) (0.650777 -0.045397 0) (0.677791 -0.0429095 0) (0.704047 -0.0403911 0) (0.729465 -0.0378619 0) (0.753976 -0.0353399 0) (0.777526 -0.0328412 0) (0.800072 -0.0303803 0) (0.821581 -0.0279696 0) (0.842035 -0.0256199 0) (0.861425 -0.0233403 0) (0.879752 -0.0211382 0) (0.897025 -0.0190196 0) (0.913264 -0.0169891 0) (0.928491 -0.01505 0) (0.942738 -0.0132036 0) (0.956042 -0.0114477 0) (0.96845 -0.00976237 0) (0.980077 -0.00809416 0) (0.991038 -0.00609345 0) (1.00259 -0.00309427 0) (0.991326 0.00695882 0) (0.980275 0.00912204 0) (0.968602 0.0108366 0) (0.956182 0.0125363 0) (0.942872 0.0142946 0) (0.928623 0.0161406 0) (0.913393 0.0180787 0) (0.897152 0.0201082 0) (0.879876 0.0222258 0) (0.861547 0.0244272 0) (0.842155 0.0267062 0) (0.821698 0.0290553 0) (0.800186 0.0314655 0) (0.777638 0.033926 0) (0.754085 0.0364243 0) (0.72957 0.0389461 0) (0.704149 0.0414751 0) (0.677889 0.0439933 0) (0.650872 0.0464808 0) (0.623188 0.0489159 0) (0.59494 0.0512754 0) (0.56624 0.0535346 0) (0.537206 0.0556681 0) (0.507964 0.0576496 0) (0.478642 0.059453 0) (0.44937 0.0610525 0) (0.420278 0.0624235 0) (0.391492 0.0635433 0) (0.363134 0.0643912 0) (0.335317 0.0649494 0) (0.308149 0.0652034 0) (0.281725 0.0651419 0) (0.256131 0.0647571 0) (0.231439 0.0640444 0) (0.207711 0.063002 0) (0.184997 0.06163 0) (0.163334 0.0599302 0) (0.142748 0.0579041 0) (0.123257 0.055552 0) (0.104866 0.05287 0) (0.0875778 0.0498481 0) (0.0713856 0.0464648 0) (0.0562827 0.0426789 0) (0.0422651 0.0384157 0) (0.0293448 0.0335364 0) (0.0175852 0.027784 0) (0.00723573 0.0206759 0) (-0.000826414 0.0114671 0) (-0.004165 1.21973e-19 0) (-0.000826414 -0.0114671 0) (0.00723573 -0.0206759 0) (0.0175852 -0.027784 0) (0.0293448 -0.0335364 0) (0.0422651 -0.0384157 0) (0.0562827 -0.0426789 0) (0.0713856 -0.0464648 0) (0.0875778 -0.0498481 0) (0.104866 -0.05287 0) (0.123257 -0.055552 0) (0.142748 -0.0579041 0) (0.163334 -0.0599302 0) (0.184997 -0.06163 0) (0.207711 -0.063002 0) (0.231439 -0.0640444 0) (0.256131 -0.0647571 0) (0.281725 -0.0651419 0) (0.308149 -0.0652034 0) (0.335317 -0.0649494 0) (0.363134 -0.0643912 0) (0.391492 -0.0635433 0) (0.420278 -0.0624235 0) (0.44937 -0.0610525 0) (0.478642 -0.059453 0) (0.507964 -0.0576496 0) (0.537206 -0.0556681 0) (0.56624 -0.0535346 0) (0.59494 -0.0512754 0) (0.623188 -0.0489159 0) (0.650872 -0.0464808 0) (0.677889 -0.0439933 0) (0.704149 -0.0414751 0) (0.72957 -0.0389461 0) (0.754085 -0.0364243 0) (0.777638 -0.033926 0) (0.800186 -0.0314655 0) (0.821698 -0.0290553 0) (0.842155 -0.0267062 0) (0.861547 -0.0244272 0) (0.879876 -0.0222258 0) (0.897152 -0.0201082 0) (0.913393 -0.0180787 0) (0.928623 -0.0161406 0) (0.942872 -0.0142946 0) (0.956182 -0.0125363 0) (0.968602 -0.0108366 0) (0.980275 -0.00912204 0) (0.991326 -0.00695882 0) (1.00315 -0.00354827 0) (0.991639 0.0078219 0) (0.980487 0.0101601 0) (0.968762 0.011931 0) (0.956325 0.0136495 0) (0.943009 0.0154112 0) (0.928756 0.017257 0) (0.913524 0.0191939 0) (0.897281 0.0212221 0) (0.880003 0.0233386 0) (0.861671 0.025539 0) (0.842276 0.0278171 0) (0.821817 0.0301654 0) (0.800302 0.032575 0) (0.777751 0.0350349 0) (0.754195 0.0375328 0) (0.729677 0.0400542 0) (0.704252 0.0425829 0) (0.677989 0.0451008 0) (0.650968 0.0475881 0) (0.62328 0.0500231 0) (0.595028 0.0523825 0) (0.566323 0.0546418 0) (0.537283 0.0567753 0) (0.508035 0.0587569 0) (0.478707 0.0605604 0) (0.449427 0.06216 0) (0.420327 0.0635312 0) (0.391532 0.064651 0) (0.363164 0.065499 0) (0.335337 0.0660573 0) (0.308157 0.0663112 0) (0.28172 0.0662495 0) (0.256112 0.0658643 0) (0.231404 0.0651509 0) (0.20766 0.0641075 0) (0.184927 0.062734 0) (0.163243 0.061032 0) (0.142635 0.0590029 0) (0.123118 0.0566464 0) (0.1047 0.0539583 0) (0.0873781 0.0509275 0) (0.0711474 0.0475308 0) (0.055998 0.0437243 0) (0.041922 0.0394271 0) (0.0289265 0.0344894 0) (0.0170692 0.0286337 0) (0.00660076 0.0213464 0) (-0.00157792 0.011851 0) (-0.00497357 1.0842e-19 0) (-0.00157792 -0.011851 0) (0.00660076 -0.0213464 0) (0.0170692 -0.0286337 0) (0.0289265 -0.0344894 0) (0.041922 -0.0394271 0) (0.055998 -0.0437243 0) (0.0711474 -0.0475308 0) (0.0873781 -0.0509275 0) (0.1047 -0.0539583 0) (0.123118 -0.0566464 0) (0.142635 -0.0590029 0) (0.163243 -0.061032 0) (0.184927 -0.062734 0) (0.20766 -0.0641075 0) (0.231404 -0.0651509 0) (0.256112 -0.0658643 0) (0.28172 -0.0662495 0) (0.308157 -0.0663112 0) (0.335337 -0.0660573 0) (0.363164 -0.065499 0) (0.391532 -0.064651 0) (0.420327 -0.0635312 0) (0.449427 -0.06216 0) (0.478707 -0.0605604 0) (0.508035 -0.0587569 0) (0.537283 -0.0567753 0) (0.566323 -0.0546418 0) (0.595028 -0.0523825 0) (0.62328 -0.0500231 0) (0.650968 -0.0475881 0) (0.677989 -0.0451008 0) (0.704252 -0.0425829 0) (0.729677 -0.0400542 0) (0.754195 -0.0375328 0) (0.777751 -0.0350349 0) (0.800302 -0.032575 0) (0.821817 -0.0301654 0) (0.842276 -0.0278171 0) (0.861671 -0.025539 0) (0.880003 -0.0233386 0) (0.897281 -0.0212221 0) (0.913524 -0.0191939 0) (0.928756 -0.017257 0) (0.943009 -0.0154112 0) (0.956325 -0.0136495 0) (0.968762 -0.011931 0) (0.980487 -0.0101601 0) (0.991639 -0.0078219 0) (1.00369 -0.00397694 0) (0.991978 0.00868117 0) (0.980714 0.011207 0) (0.968931 0.0130452 0) (0.956473 0.0147872 0) (0.943149 0.0165541 0) (0.928892 0.0183999 0) (0.913658 0.0203354 0) (0.897412 0.022362 0) (0.880131 0.0244771 0) (0.861797 0.0266762 0) (0.842399 0.0289532 0) (0.821937 0.0313006 0) (0.80042 0.0337093 0) (0.777866 0.0361685 0) (0.754307 0.0386657 0) (0.729786 0.0411866 0) (0.704358 0.0437149 0) (0.678091 0.0462325 0) (0.651066 0.0487196 0) (0.623374 0.0511544 0) (0.595117 0.0535137 0) (0.566407 0.0557728 0) (0.537362 0.0579063 0) (0.508108 0.059888 0) (0.478773 0.0616915 0) (0.449486 0.0632912 0) (0.420377 0.0646625 0) (0.391573 0.0657825 0) (0.363195 0.0666306 0) (0.335357 0.0671888 0) (0.308165 0.0674427 0) (0.281715 0.0673808 0) (0.256092 0.0669952 0) (0.231369 0.0662811 0) (0.207607 0.0652366 0) (0.184855 0.0638615 0) (0.163151 0.0621573 0) (0.14252 0.060125 0) (0.122977 0.057764 0) (0.104529 0.0550694 0) (0.0871745 0.0520291 0) (0.0709043 0.0486181 0) (0.055707 0.0447891 0) (0.041571 0.040455 0) (0.0284984 0.0354538 0) (0.0165422 0.0294877 0) (0.00595698 0.0220132 0) (-0.00233056 0.0122281 0) (-0.00577718 1.21973e-19 0) (-0.00233056 -0.0122281 0) (0.00595698 -0.0220132 0) (0.0165422 -0.0294877 0) (0.0284984 -0.0354538 0) (0.041571 -0.040455 0) (0.055707 -0.0447891 0) (0.0709043 -0.0486181 0) (0.0871745 -0.0520291 0) (0.104529 -0.0550694 0) (0.122977 -0.057764 0) (0.14252 -0.060125 0) (0.163151 -0.0621573 0) (0.184855 -0.0638615 0) (0.207607 -0.0652366 0) (0.231369 -0.0662811 0) (0.256092 -0.0669952 0) (0.281715 -0.0673808 0) (0.308165 -0.0674427 0) (0.335357 -0.0671888 0) (0.363195 -0.0666306 0) (0.391573 -0.0657825 0) (0.420377 -0.0646625 0) (0.449486 -0.0632912 0) (0.478773 -0.0616915 0) (0.508108 -0.059888 0) (0.537362 -0.0579063 0) (0.566407 -0.0557728 0) (0.595117 -0.0535137 0) (0.623374 -0.0511544 0) (0.651066 -0.0487196 0) (0.678091 -0.0462325 0) (0.704358 -0.0437149 0) (0.729786 -0.0411866 0) (0.754307 -0.0386657 0) (0.777866 -0.0361685 0) (0.80042 -0.0337093 0) (0.821937 -0.0313006 0) (0.842399 -0.0289532 0) (0.861797 -0.0266762 0) (0.880131 -0.0244771 0) (0.897412 -0.022362 0) (0.913658 -0.0203354 0) (0.928892 -0.0183999 0) (0.943149 -0.0165541 0) (0.956473 -0.0147872 0) (0.968931 -0.0130452 0) (0.980714 -0.011207 0) (0.991978 -0.00868117 0) (1.00422 -0.00437989 0) (0.992342 0.00953541 0) (0.980958 0.0122617 0) (0.969108 0.0141784 0) (0.956626 0.0159493 0) (0.943292 0.0177234 0) (0.929031 0.0195697 0) (0.913793 0.0215037 0) (0.897545 0.0235286 0) (0.880262 0.025642 0) (0.861925 0.0278395 0) (0.842525 0.0301151 0) (0.82206 0.0324613 0) (0.80054 0.034869 0) (0.777983 0.0373274 0) (0.754421 0.0398238 0) (0.729896 0.042344 0) (0.704465 0.0448718 0) (0.678195 0.047389 0) (0.651166 0.0498757 0) (0.62347 0.0523102 0) (0.595208 0.0546693 0) (0.566493 0.0569283 0) (0.537443 0.0590617 0) (0.508182 0.0610434 0) (0.47884 0.0628469 0) (0.449546 0.0644468 0) (0.420429 0.0658181 0) (0.391616 0.0669382 0) (0.363227 0.0677863 0) (0.335378 0.0683445 0) (0.308174 0.0685983 0) (0.28171 0.0685362 0) (0.256073 0.0681502 0) (0.231334 0.0674354 0) (0.207554 0.0663898 0) (0.184783 0.0650132 0) (0.163057 0.0633067 0) (0.142403 0.061271 0) (0.122834 0.0589052 0) (0.104356 0.0562037 0) (0.0869667 0.0531533 0) (0.0706559 0.049727 0) (0.0554093 0.0458736 0) (0.0412115 0.0414992 0) (0.0280598 0.0364294 0) (0.0160038 0.0303456 0) (0.00530395 0.0226766 0) (-0.00308517 0.012599 0) (-0.00657715 1.35525e-19 0) (-0.00308517 -0.012599 0) (0.00530395 -0.0226766 0) (0.0160038 -0.0303456 0) (0.0280598 -0.0364294 0) (0.0412115 -0.0414992 0) (0.0554093 -0.0458736 0) (0.0706559 -0.049727 0) (0.0869667 -0.0531533 0) (0.104356 -0.0562037 0) (0.122834 -0.0589052 0) (0.142403 -0.061271 0) (0.163057 -0.0633067 0) (0.184783 -0.0650132 0) (0.207554 -0.0663898 0) (0.231334 -0.0674354 0) (0.256073 -0.0681502 0) (0.28171 -0.0685362 0) (0.308174 -0.0685983 0) (0.335378 -0.0683445 0) (0.363227 -0.0677863 0) (0.391616 -0.0669382 0) (0.420429 -0.0658181 0) (0.449546 -0.0644468 0) (0.47884 -0.0628469 0) (0.508182 -0.0610434 0) (0.537443 -0.0590617 0) (0.566493 -0.0569283 0) (0.595208 -0.0546693 0) (0.62347 -0.0523102 0) (0.651166 -0.0498757 0) (0.678195 -0.047389 0) (0.704465 -0.0448718 0) (0.729896 -0.042344 0) (0.754421 -0.0398238 0) (0.777983 -0.0373274 0) (0.80054 -0.034869 0) (0.82206 -0.0324613 0) (0.842525 -0.0301151 0) (0.861925 -0.0278395 0) (0.880262 -0.025642 0) (0.897545 -0.0235286 0) (0.913793 -0.0215037 0) (0.929031 -0.0195697 0) (0.943292 -0.0177234 0) (0.956626 -0.0159493 0) (0.969108 -0.0141784 0) (0.980958 -0.0122617 0) (0.992342 -0.00953541 0) (1.00474 -0.00475831 0) (0.992732 0.0103836 0) (0.98122 0.013323 0) (0.969297 0.0153298 0) (0.956785 0.0171359 0) (0.943438 0.0189196 0) (0.929172 0.020767 0) (0.913931 0.0226995 0) (0.897681 0.0247223 0) (0.880395 0.0268337 0) (0.862055 0.0290294 0) (0.842653 0.0313035 0) (0.822185 0.0336483 0) (0.800662 0.0360547 0) (0.778102 0.038512 0) (0.754537 0.0410076 0) (0.730009 0.043527 0) (0.704575 0.0460541 0) (0.678301 0.0485707 0) (0.651268 0.0510569 0) (0.623567 0.0534911 0) (0.595301 0.0558499 0) (0.56658 0.0581088 0) (0.537525 0.0602421 0) (0.508258 0.0622236 0) (0.478909 0.0640272 0) (0.449607 0.065627 0) (0.420482 0.0669985 0) (0.391659 0.0681186 0) (0.36326 0.0689668 0) (0.3354 0.069525 0) (0.308183 0.0697787 0) (0.281706 0.0697163 0) (0.256053 0.0693299 0) (0.231298 0.0686144 0) (0.2075 0.0675677 0) (0.18471 0.0661894 0) (0.162962 0.0644805 0) (0.142283 0.0624414 0) (0.122688 0.0600706 0) (0.104179 0.0573618 0) (0.0867546 0.0543006 0) (0.0704021 0.0508576 0) (0.0551046 0.0469777 0) (0.0408431 0.0425596 0) (0.0276103 0.0374159 0) (0.0154535 0.0312072 0) (0.00464132 0.0233365 0) (-0.00384251 0.0129638 0) (-0.00737468 2.30393e-19 0) (-0.00384251 -0.0129638 0) (0.00464132 -0.0233365 0) (0.0154535 -0.0312072 0) (0.0276103 -0.0374159 0) (0.0408431 -0.0425596 0) (0.0551046 -0.0469777 0) (0.0704021 -0.0508576 0) (0.0867546 -0.0543006 0) (0.104179 -0.0573618 0) (0.122688 -0.0600706 0) (0.142283 -0.0624414 0) (0.162962 -0.0644805 0) (0.18471 -0.0661894 0) (0.2075 -0.0675677 0) (0.231298 -0.0686144 0) (0.256053 -0.0693299 0) (0.281706 -0.0697163 0) (0.308183 -0.0697787 0) (0.3354 -0.069525 0) (0.36326 -0.0689668 0) (0.391659 -0.0681186 0) (0.420482 -0.0669985 0) (0.449607 -0.065627 0) (0.478909 -0.0640272 0) (0.508258 -0.0622236 0) (0.537525 -0.0602421 0) (0.56658 -0.0581088 0) (0.595301 -0.0558499 0) (0.623567 -0.0534911 0) (0.651268 -0.0510569 0) (0.678301 -0.0485707 0) (0.704575 -0.0460541 0) (0.730009 -0.043527 0) (0.754537 -0.0410076 0) (0.778102 -0.038512 0) (0.800662 -0.0360547 0) (0.822185 -0.0336483 0) (0.842653 -0.0313035 0) (0.862055 -0.0290294 0) (0.880395 -0.0268337 0) (0.897681 -0.0247223 0) (0.913931 -0.0226995 0) (0.929172 -0.020767 0) (0.943438 -0.0189196 0) (0.956785 -0.0171359 0) (0.969297 -0.0153298 0) (0.98122 -0.013323 0) (0.992732 -0.0103836 0) (1.00526 -0.00511404 0) (0.993147 0.0112248 0) (0.9815 0.0143901 0) (0.969497 0.0164989 0) (0.956951 0.0183466 0) (0.943589 0.0201429 0) (0.929316 0.0219924 0) (0.914072 0.0239234 0) (0.897819 0.0259439 0) (0.88053 0.028053 0) (0.862188 0.0302467 0) (0.842783 0.0325189 0) (0.822312 0.0348621 0) (0.800786 0.0372671 0) (0.778224 0.0397231 0) (0.754655 0.0422176 0) (0.730124 0.0447361 0) (0.704686 0.0472623 0) (0.678408 0.0497783 0) (0.651371 0.052264 0) (0.623666 0.0546977 0) (0.595396 0.0570561 0) (0.56667 0.0593147 0) (0.537608 0.0614479 0) (0.508335 0.0634293 0) (0.478979 0.0652328 0) (0.449669 0.0668327 0) (0.420535 0.0682042 0) (0.391703 0.0693243 0) (0.363294 0.0701725 0) (0.335422 0.0707308 0) (0.308193 0.0709844 0) (0.281701 0.0709218 0) (0.256033 0.0705349 0) (0.231261 0.0698187 0) (0.207446 0.0687708 0) (0.184635 0.0673908 0) (0.162865 0.0656794 0) (0.142162 0.0636366 0) (0.122539 0.0612606 0) (0.103999 0.058544 0) (0.086538 0.0554712 0) (0.0701425 0.0520103 0) (0.0547926 0.0481018 0) (0.0404654 0.0436363 0) (0.0271494 0.038413 0) (0.014891 0.0320723 0) (0.00396876 0.0239931 0) (-0.00460325 0.0133231 0) (-0.00817082 1.89735e-19 0) (-0.00460325 -0.0133231 0) (0.00396876 -0.0239931 0) (0.014891 -0.0320723 0) (0.0271494 -0.038413 0) (0.0404654 -0.0436363 0) (0.0547926 -0.0481018 0) (0.0701425 -0.0520103 0) (0.086538 -0.0554712 0) (0.103999 -0.058544 0) (0.122539 -0.0612606 0) (0.142162 -0.0636366 0) (0.162865 -0.0656794 0) (0.184635 -0.0673908 0) (0.207446 -0.0687708 0) (0.231261 -0.0698187 0) (0.256033 -0.0705349 0) (0.281701 -0.0709218 0) (0.308193 -0.0709844 0) (0.335422 -0.0707308 0) (0.363294 -0.0701725 0) (0.391703 -0.0693243 0) (0.420535 -0.0682042 0) (0.449669 -0.0668327 0) (0.478979 -0.0652328 0) (0.508335 -0.0634293 0) (0.537608 -0.0614479 0) (0.56667 -0.0593147 0) (0.595396 -0.0570561 0) (0.623666 -0.0546977 0) (0.651371 -0.052264 0) (0.678408 -0.0497783 0) (0.704686 -0.0472623 0) (0.730124 -0.0447361 0) (0.754655 -0.0422176 0) (0.778224 -0.0397231 0) (0.800786 -0.0372671 0) (0.822312 -0.0348621 0) (0.842783 -0.0325189 0) (0.862188 -0.0302467 0) (0.88053 -0.028053 0) (0.897819 -0.0259439 0) (0.914072 -0.0239234 0) (0.929316 -0.0219924 0) (0.943589 -0.0201429 0) (0.956951 -0.0183466 0) (0.969497 -0.0164989 0) (0.9815 -0.0143901 0) (0.993147 -0.0112248 0) (1.00577 -0.00544908 0) (0.993586 0.0120584 0) (0.981798 0.0154618 0) (0.969711 0.0176848 0) (0.957123 0.0195812 0) (0.943743 0.0213937 0) (0.929463 0.0232463 0) (0.914215 0.025176 0) (0.897959 0.027194 0) (0.880668 0.0293006 0) (0.862323 0.0314919 0) (0.842915 0.033762 0) (0.822442 0.0361033 0) (0.800913 0.0385066 0) (0.778347 0.0409612 0) (0.754776 0.0434544 0) (0.730241 0.0459718 0) (0.704799 0.0484972 0) (0.678518 0.0510123 0) (0.651477 0.0534974 0) (0.623768 0.0559305 0) (0.595492 0.0582885 0) (0.566761 0.0605468 0) (0.537694 0.0626797 0) (0.508414 0.064661 0) (0.479051 0.0664644 0) (0.449733 0.0680643 0) (0.42059 0.0694357 0) (0.391749 0.0705559 0) (0.363329 0.0714041 0) (0.335445 0.0719624 0) (0.308202 0.0722159 0) (0.281697 0.072153 0) (0.256014 0.0717657 0) (0.231225 0.0710487 0) (0.20739 0.0699997 0) (0.184559 0.0686179 0) (0.162767 0.0669039 0) (0.142038 0.0648573 0) (0.122387 0.0624756 0) (0.103815 0.0597508 0) (0.0863166 0.0566656 0) (0.0698768 0.0531853 0) (0.0544728 0.0492458 0) (0.0400778 0.044729 0) (0.0266767 0.0394204 0) (0.0143159 0.0329406 0) (0.00328596 0.0246465 0) (-0.00536801 0.0136772 0) (-0.00896657 2.30393e-19 0) (-0.00536801 -0.0136772 0) (0.00328596 -0.0246465 0) (0.0143159 -0.0329406 0) (0.0266767 -0.0394204 0) (0.0400778 -0.044729 0) (0.0544728 -0.0492458 0) (0.0698768 -0.0531853 0) (0.0863166 -0.0566656 0) (0.103815 -0.0597508 0) (0.122387 -0.0624756 0) (0.142038 -0.0648573 0) (0.162767 -0.0669039 0) (0.184559 -0.0686179 0) (0.20739 -0.0699997 0) (0.231225 -0.0710487 0) (0.256014 -0.0717657 0) (0.281697 -0.072153 0) (0.308202 -0.0722159 0) (0.335445 -0.0719624 0) (0.363329 -0.0714041 0) (0.391749 -0.0705559 0) (0.42059 -0.0694357 0) (0.449733 -0.0680643 0) (0.479051 -0.0664644 0) (0.508414 -0.064661 0) (0.537694 -0.0626797 0) (0.566761 -0.0605468 0) (0.595492 -0.0582885 0) (0.623768 -0.0559305 0) (0.651477 -0.0534974 0) (0.678518 -0.0510123 0) (0.704799 -0.0484972 0) (0.730241 -0.0459718 0) (0.754776 -0.0434544 0) (0.778347 -0.0409612 0) (0.800913 -0.0385066 0) (0.822442 -0.0361033 0) (0.842915 -0.033762 0) (0.862323 -0.0314919 0) (0.880668 -0.0293006 0) (0.897959 -0.027194 0) (0.914215 -0.025176 0) (0.929463 -0.0232463 0) (0.943743 -0.0213937 0) (0.957123 -0.0195812 0) (0.969711 -0.0176848 0) (0.981798 -0.0154618 0) (0.993586 -0.0120584 0) (1.00627 -0.00576536 0) (0.99405 0.0128836 0) (0.982117 0.0165375 0) (0.969938 0.0188867 0) (0.957304 0.0208395 0) (0.943902 0.022672 0) (0.929613 0.0245293 0) (0.91436 0.026458 0) (0.898101 0.0284734 0) (0.880807 0.0305771 0) (0.86246 0.0327657 0) (0.843049 0.0350334 0) (0.822573 0.0373726 0) (0.801042 0.0397741 0) (0.778473 0.042227 0) (0.754898 0.0447188 0) (0.73036 0.047235 0) (0.704915 0.0497592 0) (0.67863 0.0522735 0) (0.651585 0.0547577 0) (0.623871 0.0571902 0) (0.59559 0.0595477 0) (0.566854 0.0618056 0) (0.537781 0.0639382 0) (0.508495 0.0659193 0) (0.479124 0.0677226 0) (0.449798 0.0693223 0) (0.420647 0.0706938 0) (0.391795 0.071814 0) (0.363364 0.0726622 0) (0.335468 0.0732204 0) (0.308213 0.0734737 0) (0.281693 0.0734107 0) (0.255994 0.0730229 0) (0.231187 0.0723051 0) (0.207334 0.0712549 0) (0.184482 0.0698712 0) (0.162666 0.0681545 0) (0.141912 0.0661038 0) (0.122232 0.0637163 0) (0.103627 0.0609827 0) (0.0860903 0.0578841 0) (0.0696049 0.054383 0) (0.0541449 0.0504098 0) (0.0396799 0.0458377 0) (0.0261916 0.040438 0) (0.0137278 0.033812 0) (0.00259264 0.0252966 0) (-0.00613736 0.0140262 0) (-0.0097628 2.43945e-19 0) (-0.00613736 -0.0140262 0) (0.00259264 -0.0252966 0) (0.0137278 -0.033812 0) (0.0261916 -0.040438 0) (0.0396799 -0.0458377 0) (0.0541449 -0.0504098 0) (0.0696049 -0.054383 0) (0.0860903 -0.0578841 0) (0.103627 -0.0609827 0) (0.122232 -0.0637163 0) (0.141912 -0.0661038 0) (0.162666 -0.0681545 0) (0.184482 -0.0698712 0) (0.207334 -0.0712549 0) (0.231187 -0.0723051 0) (0.255994 -0.0730229 0) (0.281693 -0.0734107 0) (0.308213 -0.0734737 0) (0.335468 -0.0732204 0) (0.363364 -0.0726622 0) (0.391795 -0.071814 0) (0.420647 -0.0706938 0) (0.449798 -0.0693223 0) (0.479124 -0.0677226 0) (0.508495 -0.0659193 0) (0.537781 -0.0639382 0) (0.566854 -0.0618056 0) (0.59559 -0.0595477 0) (0.623871 -0.0571902 0) (0.651585 -0.0547577 0) (0.67863 -0.0522735 0) (0.704915 -0.0497592 0) (0.73036 -0.047235 0) (0.754898 -0.0447188 0) (0.778473 -0.042227 0) (0.801042 -0.0397741 0) (0.822573 -0.0373726 0) (0.843049 -0.0350334 0) (0.86246 -0.0327657 0) (0.880807 -0.0305771 0) (0.898101 -0.0284734 0) (0.91436 -0.026458 0) (0.929613 -0.0245293 0) (0.943902 -0.022672 0) (0.957304 -0.0208395 0) (0.969938 -0.0188867 0) (0.982117 -0.0165375 0) (0.99405 -0.0128836 0) (1.00678 -0.00606468 0) (0.994536 0.0136999 0) (0.982456 0.0176162 0) (0.97018 0.0201037 0) (0.957494 0.0221209 0) (0.944067 0.0239779 0) (0.929767 0.0258419 0) (0.914508 0.02777 0) (0.898246 0.0297827 0) (0.88095 0.0318833 0) (0.8626 0.0340689 0) (0.843186 0.0363339 0) (0.822707 0.0386707 0) (0.801173 0.0410701 0) (0.778601 0.0435212 0) (0.755023 0.0460113 0) (0.730482 0.048526 0) (0.705033 0.0510491 0) (0.678744 0.0535623 0) (0.651695 0.0560456 0) (0.623976 0.0584774 0) (0.595691 0.0608343 0) (0.566949 0.0630917 0) (0.53787 0.0652239 0) (0.508577 0.0672047 0) (0.479199 0.0690078 0) (0.449865 0.0706075 0) (0.420704 0.0719789 0) (0.391843 0.0730991 0) (0.363401 0.0739473 0) (0.335493 0.0745054 0) (0.308224 0.0747586 0) (0.281689 0.0746953 0) (0.255974 0.074307 0) (0.23115 0.0735884 0) (0.207277 0.0725369 0) (0.184403 0.0711514 0) (0.162564 0.0694317 0) (0.141784 0.0673769 0) (0.122073 0.0649831 0) (0.103435 0.0622401 0) (0.0858589 0.0591271 0) (0.0693262 0.0556035 0) (0.0538084 0.0515938 0) (0.0392712 0.0469621 0) (0.0256937 0.0414654 0) (0.0131265 0.0346863 0) (0.00188854 0.0259438 0) (-0.00691184 0.0143707 0) (-0.0105604 2.71051e-19 0) (-0.00691184 -0.0143707 0) (0.00188854 -0.0259438 0) (0.0131265 -0.0346863 0) (0.0256937 -0.0414654 0) (0.0392712 -0.0469621 0) (0.0538084 -0.0515938 0) (0.0693262 -0.0556035 0) (0.0858589 -0.0591271 0) (0.103435 -0.0622401 0) (0.122073 -0.0649831 0) (0.141784 -0.0673769 0) (0.162564 -0.0694317 0) (0.184403 -0.0711514 0) (0.207277 -0.0725369 0) (0.23115 -0.0735884 0) (0.255974 -0.074307 0) (0.281689 -0.0746953 0) (0.308224 -0.0747586 0) (0.335493 -0.0745054 0) (0.363401 -0.0739473 0) (0.391843 -0.0730991 0) (0.420704 -0.0719789 0) (0.449865 -0.0706075 0) (0.479199 -0.0690078 0) (0.508577 -0.0672047 0) (0.53787 -0.0652239 0) (0.566949 -0.0630917 0) (0.595691 -0.0608343 0) (0.623976 -0.0584774 0) (0.651695 -0.0560456 0) (0.678744 -0.0535623 0) (0.705033 -0.0510491 0) (0.730482 -0.048526 0) (0.755023 -0.0460113 0) (0.778601 -0.0435212 0) (0.801173 -0.0410701 0) (0.822707 -0.0386707 0) (0.843186 -0.0363339 0) (0.8626 -0.0340689 0) (0.88095 -0.0318833 0) (0.898246 -0.0297827 0) (0.914508 -0.02777 0) (0.929767 -0.0258419 0) (0.944067 -0.0239779 0) (0.957494 -0.0221209 0) (0.97018 -0.0201037 0) (0.982456 -0.0176162 0) (0.994536 -0.0136999 0) (1.00728 -0.00634865 0) (0.995046 0.0145069 0) (0.982816 0.0186972 0) (0.970439 0.0213351 0) (0.957693 0.023425 0) (0.944237 0.0253116 0) (0.929924 0.0271844 0) (0.91466 0.0291126 0) (0.898394 0.0311226 0) (0.881094 0.0332198 0) (0.862742 0.0354021 0) (0.843325 0.0376641 0) (0.822844 0.0399983 0) (0.801306 0.0423953 0) (0.778731 0.0448443 0) (0.75515 0.0473326 0) (0.730605 0.0498458 0) (0.705153 0.0523674 0) (0.67886 0.0548794 0) (0.651806 0.0573618 0) (0.624084 0.0597927 0) (0.595793 0.0621489 0) (0.567046 0.0644057 0) (0.53796 0.0665375 0) (0.508661 0.068518 0) (0.479275 0.0703209 0) (0.449933 0.0719204 0) (0.420763 0.0732917 0) (0.391891 0.0744118 0) (0.363438 0.07526 0) (0.335518 0.075818 0) (0.308235 0.0760711 0) (0.281686 0.0760075 0) (0.255954 0.0756187 0) (0.231111 0.0748993 0) (0.207219 0.0738465 0) (0.184323 0.0724589 0) (0.16246 0.0707363 0) (0.141653 0.068677 0) (0.121912 0.0662765 0) (0.103239 0.0635235 0) (0.085622 0.0603951 0) (0.0690406 0.056847 0) (0.0534629 0.052798 0) (0.0388513 0.0481022 0) (0.0251826 0.0425025 0) (0.0125115 0.0355634 0) (0.00117338 0.026588 0) (-0.00769198 0.0147108 0) (-0.01136 3.11708e-19 0) (-0.00769198 -0.0147108 0) (0.00117338 -0.026588 0) (0.0125115 -0.0355634 0) (0.0251826 -0.0425025 0) (0.0388513 -0.0481022 0) (0.0534629 -0.052798 0) (0.0690406 -0.056847 0) (0.085622 -0.0603951 0) (0.103239 -0.0635235 0) (0.121912 -0.0662765 0) (0.141653 -0.068677 0) (0.16246 -0.0707363 0) (0.184323 -0.0724589 0) (0.207219 -0.0738465 0) (0.231111 -0.0748993 0) (0.255954 -0.0756187 0) (0.281686 -0.0760075 0) (0.308235 -0.0760711 0) (0.335518 -0.075818 0) (0.363438 -0.07526 0) (0.391891 -0.0744118 0) (0.420763 -0.0732917 0) (0.449933 -0.0719204 0) (0.479275 -0.0703209 0) (0.508661 -0.068518 0) (0.53796 -0.0665375 0) (0.567046 -0.0644057 0) (0.595793 -0.0621489 0) (0.624084 -0.0597927 0) (0.651806 -0.0573618 0) (0.67886 -0.0548794 0) (0.705153 -0.0523674 0) (0.730605 -0.0498458 0) (0.75515 -0.0473326 0) (0.778731 -0.0448443 0) (0.801306 -0.0423953 0) (0.822844 -0.0399983 0) (0.843325 -0.0376641 0) (0.862742 -0.0354021 0) (0.881094 -0.0332198 0) (0.898394 -0.0311226 0) (0.91466 -0.0291126 0) (0.929924 -0.0271844 0) (0.944237 -0.0253116 0) (0.957693 -0.023425 0) (0.970439 -0.0213351 0) (0.982816 -0.0186972 0) (0.995046 -0.0145069 0) (1.00779 -0.00661872 0) (0.995579 0.0153041 0) (0.983198 0.0197798 0) (0.970714 0.0225801 0) (0.957904 0.0247514 0) (0.944413 0.026673 0) (0.930085 0.0285573 0) (0.914814 0.0304865 0) (0.898544 0.0324938 0) (0.881241 0.0345873 0) (0.862886 0.0367661 0) (0.843467 0.0390248 0) (0.822982 0.041356 0) (0.801442 0.0437504 0) (0.778864 0.0461971 0) (0.755279 0.0486834 0) (0.730731 0.0511948 0) (0.705275 0.0537149 0) (0.678978 0.0562256 0) (0.65192 0.0587068 0) (0.624193 0.0611368 0) (0.595897 0.0634922 0) (0.567144 0.0657483 0) (0.538053 0.0678796 0) (0.508746 0.0698597 0) (0.479353 0.0716623 0) (0.450003 0.0732616 0) (0.420824 0.0746328 0) (0.391941 0.0757528 0) (0.363477 0.0766009 0) (0.335543 0.0771589 0) (0.308247 0.0774119 0) (0.281682 0.0773479 0) (0.255933 0.0769586 0) (0.231073 0.0762384 0) (0.20716 0.0751842 0) (0.184242 0.0737945 0) (0.162354 0.0720687 0) (0.141519 0.0700046 0) (0.121747 0.067597 0) (0.103038 0.0648333 0) (0.0853794 0.0616882 0) (0.0687477 0.0581138 0) (0.0531081 0.0540223 0) (0.0384196 0.0492577 0) (0.0246579 0.0435489 0) (0.0118826 0.0364431 0) (0.000446922 0.0272294 0) (-0.00847824 0.0150467 0) (-0.0121625 2.98156e-19 0) (-0.00847824 -0.0150467 0) (0.000446922 -0.0272294 0) (0.0118826 -0.0364431 0) (0.0246579 -0.0435489 0) (0.0384196 -0.0492577 0) (0.0531081 -0.0540223 0) (0.0687477 -0.0581138 0) (0.0853794 -0.0616882 0) (0.103038 -0.0648333 0) (0.121747 -0.067597 0) (0.141519 -0.0700046 0) (0.162354 -0.0720687 0) (0.184242 -0.0737945 0) (0.20716 -0.0751842 0) (0.231073 -0.0762384 0) (0.255933 -0.0769586 0) (0.281682 -0.0773479 0) (0.308247 -0.0774119 0) (0.335543 -0.0771589 0) (0.363477 -0.0766009 0) (0.391941 -0.0757528 0) (0.420824 -0.0746328 0) (0.450003 -0.0732616 0) (0.479353 -0.0716623 0) (0.508746 -0.0698597 0) (0.538053 -0.0678796 0) (0.567144 -0.0657483 0) (0.595897 -0.0634922 0) (0.624193 -0.0611368 0) (0.65192 -0.0587068 0) (0.678978 -0.0562256 0) (0.705275 -0.0537149 0) (0.730731 -0.0511948 0) (0.755279 -0.0486834 0) (0.778864 -0.0461971 0) (0.801442 -0.0437504 0) (0.822982 -0.041356 0) (0.843467 -0.0390248 0) (0.862886 -0.0367661 0) (0.881241 -0.0345873 0) (0.898544 -0.0324938 0) (0.914814 -0.0304865 0) (0.930085 -0.0285573 0) (0.944413 -0.026673 0) (0.957904 -0.0247514 0) (0.970714 -0.0225801 0) (0.983198 -0.0197798 0) (0.995579 -0.0153041 0) (1.0083 -0.00687616 0) (0.996133 0.0160912 0) (0.983601 0.0208634 0) (0.971008 0.0238377 0) (0.958126 0.0260994 0) (0.944597 0.0280621 0) (0.930251 0.0299608 0) (0.914971 0.0318922 0) (0.898696 0.033897 0) (0.881391 0.0359868 0) (0.863033 0.0381616 0) (0.843611 0.0404167 0) (0.823124 0.0427447 0) (0.80158 0.0451362 0) (0.778999 0.0475804 0) (0.755411 0.0500644 0) (0.730859 0.0525738 0) (0.705399 0.0550922 0) (0.679099 0.0576014 0) (0.652037 0.0600814 0) (0.624304 0.0625103 0) (0.596004 0.0648648 0) (0.567245 0.0671202 0) (0.538147 0.0692508 0) (0.508834 0.0712305 0) (0.479433 0.0730328 0) (0.450074 0.0746318 0) (0.420885 0.0760029 0) (0.391992 0.0771228 0) (0.363516 0.0779708 0) (0.33557 0.0785287 0) (0.308259 0.0787815 0) (0.281679 0.0787172 0) (0.255913 0.0783274 0) (0.231033 0.0776062 0) (0.2071 0.0765505 0) (0.184159 0.0751587 0) (0.162246 0.0734295 0) (0.141382 0.0713604 0) (0.121579 0.0689453 0) (0.102833 0.06617 0) (0.085131 0.063007 0) (0.068447 0.0594041 0) (0.0527433 0.0552667 0) (0.0379756 0.0504286 0) (0.0241191 0.0446044 0) (0.0112396 0.0373252 0) (-0.000291099 0.027868 0) (-0.00927111 0.0153788 0) (-0.0129685 3.38813e-19 0) (-0.00927111 -0.0153788 0) (-0.000291099 -0.027868 0) (0.0112396 -0.0373252 0) (0.0241191 -0.0446044 0) (0.0379756 -0.0504286 0) (0.0527433 -0.0552667 0) (0.068447 -0.0594041 0) (0.085131 -0.063007 0) (0.102833 -0.06617 0) (0.121579 -0.0689453 0) (0.141382 -0.0713604 0) (0.162246 -0.0734295 0) (0.184159 -0.0751587 0) (0.2071 -0.0765505 0) (0.231033 -0.0776062 0) (0.255913 -0.0783274 0) (0.281679 -0.0787172 0) (0.308259 -0.0787815 0) (0.33557 -0.0785287 0) (0.363516 -0.0779708 0) (0.391992 -0.0771228 0) (0.420885 -0.0760029 0) (0.450074 -0.0746318 0) (0.479433 -0.0730328 0) (0.508834 -0.0712305 0) (0.538147 -0.0692508 0) (0.567245 -0.0671202 0) (0.596004 -0.0648648 0) (0.624304 -0.0625103 0) (0.652037 -0.0600814 0) (0.679099 -0.0576014 0) (0.705399 -0.0550922 0) (0.730859 -0.0525738 0) (0.755411 -0.0500644 0) (0.778999 -0.0475804 0) (0.80158 -0.0451362 0) (0.823124 -0.0427447 0) (0.843611 -0.0404167 0) (0.863033 -0.0381616 0) (0.881391 -0.0359868 0) (0.898696 -0.033897 0) (0.914971 -0.0318922 0) (0.930251 -0.0299608 0) (0.944597 -0.0280621 0) (0.958126 -0.0260994 0) (0.971008 -0.0238377 0) (0.983601 -0.0208634 0) (0.996133 -0.0160912 0) (1.00881 -0.00712211 0) (0.996709 0.0168679 0) (0.984027 0.0219474 0) (0.97132 0.0251074 0) (0.958361 0.0274686 0) (0.944789 0.0294786 0) (0.930421 0.0313954 0) (0.915131 0.0333304 0) (0.898852 0.035333 0) (0.881543 0.0374188 0) (0.863182 0.0395895 0) (0.843757 0.0418406 0) (0.823267 0.044165 0) (0.80172 0.0465534 0) (0.779136 0.0489947 0) (0.755545 0.0514763 0) (0.73099 0.0539836 0) (0.705526 0.0565001 0) (0.679221 0.0590076 0) (0.652155 0.0614862 0) (0.624418 0.0639139 0) (0.596112 0.0662674 0) (0.567348 0.068522 0) (0.538243 0.070652 0) (0.508923 0.0726311 0) (0.479514 0.0744329 0) (0.450147 0.0760317 0) (0.420948 0.0774026 0) (0.392044 0.0785224 0) (0.363556 0.0793703 0) (0.335597 0.079928 0) (0.308272 0.0801806 0) (0.281675 0.080116 0) (0.255892 0.0797255 0) (0.230993 0.0790034 0) (0.207039 0.0779462 0) (0.184075 0.076552 0) (0.162136 0.0748193 0) (0.141243 0.072745 0) (0.121407 0.0703217 0) (0.102623 0.0675341 0) (0.0848762 0.0643517 0) (0.0681383 0.060718 0) (0.0523681 0.0565312 0) (0.0375189 0.0516145 0) (0.0235657 0.0456688 0) (0.010582 0.0382098 0) (-0.00104093 0.0285041 0) (-0.010071 0.0157072 0) (-0.0137786 3.52366e-19 0) (-0.010071 -0.0157072 0) (-0.00104093 -0.0285041 0) (0.010582 -0.0382098 0) (0.0235657 -0.0456688 0) (0.0375189 -0.0516145 0) (0.0523681 -0.0565312 0) (0.0681383 -0.060718 0) (0.0848762 -0.0643517 0) (0.102623 -0.0675341 0) (0.121407 -0.0703217 0) (0.141243 -0.072745 0) (0.162136 -0.0748193 0) (0.184075 -0.076552 0) (0.207039 -0.0779462 0) (0.230993 -0.0790034 0) (0.255892 -0.0797255 0) (0.281675 -0.080116 0) (0.308272 -0.0801806 0) (0.335597 -0.079928 0) (0.363556 -0.0793703 0) (0.392044 -0.0785224 0) (0.420948 -0.0774026 0) (0.450147 -0.0760317 0) (0.479514 -0.0744329 0) (0.508923 -0.0726311 0) (0.538243 -0.070652 0) (0.567348 -0.068522 0) (0.596112 -0.0662674 0) (0.624418 -0.0639139 0) (0.652155 -0.0614862 0) (0.679221 -0.0590076 0) (0.705526 -0.0565001 0) (0.73099 -0.0539836 0) (0.755545 -0.0514763 0) (0.779136 -0.0489947 0) (0.80172 -0.0465534 0) (0.823267 -0.044165 0) (0.843757 -0.0418406 0) (0.863182 -0.0395895 0) (0.881543 -0.0374188 0) (0.898852 -0.035333 0) (0.915131 -0.0333304 0) (0.930421 -0.0313954 0) (0.944789 -0.0294786 0) (0.958361 -0.0274686 0) (0.97132 -0.0251074 0) (0.984027 -0.0219474 0) (0.996709 -0.0168679 0) (1.00932 -0.00735757 0) (0.997305 0.0176341 0) (0.984475 0.0230312 0) (0.971652 0.0263881 0) (0.95861 0.0288582 0) (0.94499 0.0309224 0) (0.930597 0.0328611 0) (0.915296 0.0348016 0) (0.89901 0.0368025 0) (0.881698 0.0388843 0) (0.863334 0.0410504 0) (0.843906 0.0432973 0) (0.823413 0.0456178 0) (0.801863 0.0480027 0) (0.779276 0.050441 0) (0.755681 0.0529199 0) (0.731123 0.0554248 0) (0.705655 0.0579392 0) (0.679347 0.060445 0) (0.652276 0.0629219 0) (0.624534 0.0653483 0) (0.596223 0.0677007 0) (0.567453 0.0699544 0) (0.538342 0.0720836 0) (0.509014 0.0740621 0) (0.479598 0.0758635 0) (0.450221 0.077462 0) (0.421012 0.0788326 0) (0.392098 0.0799522 0) (0.363597 0.0808 0) (0.335625 0.0813576 0) (0.308285 0.0816099 0) (0.281672 0.0815449 0) (0.255871 0.0811539 0) (0.230953 0.0804307 0) (0.206976 0.079372 0) (0.183989 0.0779753 0) (0.162023 0.0762389 0) (0.141101 0.0741588 0) (0.121231 0.071727 0) (0.102408 0.068926 0) (0.084615 0.0657227 0) (0.0678211 0.0620557 0) (0.0519822 0.0578158 0) (0.0370489 0.0528154 0) (0.0229974 0.0467418 0) (0.00990968 0.0390965 0) (-0.00180281 0.0291376 0) (-0.0108784 0.0160322 0) (-0.0145935 3.79471e-19 0) (-0.0108784 -0.0160322 0) (-0.00180281 -0.0291376 0) (0.00990968 -0.0390965 0) (0.0229974 -0.0467418 0) (0.0370489 -0.0528154 0) (0.0519822 -0.0578158 0) (0.0678211 -0.0620557 0) (0.084615 -0.0657227 0) (0.102408 -0.068926 0) (0.121231 -0.071727 0) (0.141101 -0.0741588 0) (0.162023 -0.0762389 0) (0.183989 -0.0779753 0) (0.206976 -0.079372 0) (0.230953 -0.0804307 0) (0.255871 -0.0811539 0) (0.281672 -0.0815449 0) (0.308285 -0.0816099 0) (0.335625 -0.0813576 0) (0.363597 -0.0808 0) (0.392098 -0.0799522 0) (0.421012 -0.0788326 0) (0.450221 -0.077462 0) (0.479598 -0.0758635 0) (0.509014 -0.0740621 0) (0.538342 -0.0720836 0) (0.567453 -0.0699544 0) (0.596223 -0.0677007 0) (0.624534 -0.0653483 0) (0.652276 -0.0629219 0) (0.679347 -0.060445 0) (0.705655 -0.0579392 0) (0.731123 -0.0554248 0) (0.755681 -0.0529199 0) (0.779276 -0.050441 0) (0.801863 -0.0480027 0) (0.823413 -0.0456178 0) (0.843906 -0.0432973 0) (0.863334 -0.0410504 0) (0.881698 -0.0388843 0) (0.89901 -0.0368025 0) (0.915296 -0.0348016 0) (0.930597 -0.0328611 0) (0.94499 -0.0309224 0) (0.95861 -0.0288582 0) (0.971652 -0.0263881 0) (0.984475 -0.0230312 0) (0.997305 -0.0176341 0) (1.00984 -0.00758342 0) (0.997923 0.0183895 0) (0.984946 0.0241143 0) (0.972005 0.0276793 0) (0.958874 0.0302678 0) (0.9452 0.0323933 0) (0.930779 0.0343583 0) (0.915464 0.0363062 0) (0.899172 0.0383062 0) (0.881855 0.0403839 0) (0.863488 0.0425453 0) (0.844058 0.0447875 0) (0.823562 0.0471038 0) (0.802009 0.049485 0) (0.779418 0.0519199 0) (0.75582 0.0543959 0) (0.731258 0.0568982 0) (0.705787 0.0594103 0) (0.679474 0.0619141 0) (0.652399 0.0643894 0) (0.624652 0.0668143 0) (0.596335 0.0691654 0) (0.567559 0.0714181 0) (0.538442 0.0735465 0) (0.509107 0.0755243 0) (0.479682 0.0773252 0) (0.450297 0.0789233 0) (0.421078 0.0802936 0) (0.392152 0.081413 0) (0.36364 0.0822606 0) (0.335654 0.082818 0) (0.308298 0.0830701 0) (0.281669 0.0830047 0) (0.25585 0.082613 0) (0.230912 0.0818888 0) (0.206913 0.0808283 0) (0.183901 0.0794291 0) (0.161908 0.0776887 0) (0.140956 0.0756026 0) (0.121051 0.0731615 0) (0.102187 0.0703462 0) (0.0843469 0.0671203 0) (0.067495 0.0634173 0) (0.0515848 0.0591204 0) (0.0365652 0.054031 0) (0.0224138 0.0478233 0) (0.00922229 0.0399855 0) (-0.002577 0.0297687 0) (-0.0116938 0.016354 0) (-0.0154138 3.79471e-19 0) (-0.0116938 -0.016354 0) (-0.002577 -0.0297687 0) (0.00922229 -0.0399855 0) (0.0224138 -0.0478233 0) (0.0365652 -0.054031 0) (0.0515848 -0.0591204 0) (0.067495 -0.0634173 0) (0.0843469 -0.0671203 0) (0.102187 -0.0703462 0) (0.121051 -0.0731615 0) (0.140956 -0.0756026 0) (0.161908 -0.0776887 0) (0.183901 -0.0794291 0) (0.206913 -0.0808283 0) (0.230912 -0.0818888 0) (0.25585 -0.082613 0) (0.281669 -0.0830047 0) (0.308298 -0.0830701 0) (0.335654 -0.082818 0) (0.36364 -0.0822606 0) (0.392152 -0.081413 0) (0.421078 -0.0802936 0) (0.450297 -0.0789233 0) (0.479682 -0.0773252 0) (0.509107 -0.0755243 0) (0.538442 -0.0735465 0) (0.567559 -0.0714181 0) (0.596335 -0.0691654 0) (0.624652 -0.0668143 0) (0.652399 -0.0643894 0) (0.679474 -0.0619141 0) (0.705787 -0.0594103 0) (0.731258 -0.0568982 0) (0.75582 -0.0543959 0) (0.779418 -0.0519199 0) (0.802009 -0.049485 0) (0.823562 -0.0471038 0) (0.844058 -0.0447875 0) (0.863488 -0.0425453 0) (0.881855 -0.0403839 0) (0.899172 -0.0383062 0) (0.915464 -0.0363062 0) (0.930779 -0.0343583 0) (0.9452 -0.0323933 0) (0.958874 -0.0302678 0) (0.972005 -0.0276793 0) (0.984946 -0.0241143 0) (0.997923 -0.0183895 0) (1.01036 -0.00780045 0) (0.99856 0.0191341 0) (0.98544 0.0251963 0) (0.972378 0.0289801 0) (0.959154 0.0316965 0) (0.945421 0.0338909 0) (0.930968 0.0358869 0) (0.915636 0.0378448 0) (0.899336 0.0398448 0) (0.882015 0.0419185 0) (0.863645 0.0440749 0) (0.844212 0.0463121 0) (0.823713 0.0486239 0) (0.802157 0.051001 0) (0.779563 0.0534323 0) (0.755962 0.0559051 0) (0.731396 0.0584045 0) (0.705921 0.0609143 0) (0.679604 0.0634159 0) (0.652524 0.0658893 0) (0.624773 0.0683126 0) (0.59645 0.0706624 0) (0.567668 0.0729139 0) (0.538544 0.0750414 0) (0.509202 0.0770184 0) (0.479769 0.0788187 0) (0.450374 0.0804163 0) (0.421145 0.0817863 0) (0.392208 0.0829055 0) (0.363683 0.0837529 0) (0.335683 0.0843101 0) (0.308313 0.0845619 0) (0.281667 0.0844961 0) (0.255829 0.0841036 0) (0.23087 0.0833783 0) (0.206849 0.0823161 0) (0.183812 0.0809141 0) (0.161791 0.0791694 0) (0.140807 0.0770769 0) (0.120867 0.0746258 0) (0.101962 0.071795 0) (0.0840715 0.0685447 0) (0.0671595 0.064803 0) (0.0511756 0.0604449 0) (0.0360672 0.0552612 0) (0.0218145 0.0489131 0) (0.00851957 0.0408765 0) (-0.00336374 0.0303975 0) (-0.0125175 0.0166727 0) (-0.01624 3.65918e-19 0) (-0.0125175 -0.0166727 0) (-0.00336374 -0.0303975 0) (0.00851957 -0.0408765 0) (0.0218145 -0.0489131 0) (0.0360672 -0.0552612 0) (0.0511756 -0.0604449 0) (0.0671595 -0.064803 0) (0.0840715 -0.0685447 0) (0.101962 -0.071795 0) (0.120867 -0.0746258 0) (0.140807 -0.0770769 0) (0.161791 -0.0791694 0) (0.183812 -0.0809141 0) (0.206849 -0.0823161 0) (0.23087 -0.0833783 0) (0.255829 -0.0841036 0) (0.281667 -0.0844961 0) (0.308313 -0.0845619 0) (0.335683 -0.0843101 0) (0.363683 -0.0837529 0) (0.392208 -0.0829055 0) (0.421145 -0.0817863 0) (0.450374 -0.0804163 0) (0.479769 -0.0788187 0) (0.509202 -0.0770184 0) (0.538544 -0.0750414 0) (0.567668 -0.0729139 0) (0.59645 -0.0706624 0) (0.624773 -0.0683126 0) (0.652524 -0.0658893 0) (0.679604 -0.0634159 0) (0.705921 -0.0609143 0) (0.731396 -0.0584045 0) (0.755962 -0.0559051 0) (0.779563 -0.0534323 0) (0.802157 -0.051001 0) (0.823713 -0.0486239 0) (0.844212 -0.0463121 0) (0.863645 -0.0440749 0) (0.882015 -0.0419185 0) (0.899336 -0.0398448 0) (0.915636 -0.0378448 0) (0.930968 -0.0358869 0) (0.945421 -0.0338909 0) (0.959154 -0.0316965 0) (0.972378 -0.0289801 0) (0.98544 -0.0251963 0) (0.99856 -0.0191341 0) (1.01089 -0.00800936 0) (0.999217 0.0198676 0) (0.985958 0.0262767 0) (0.972774 0.0302898 0) (0.959451 0.0331438 0) (0.945654 0.0354148 0) (0.931164 0.0374472 0) (0.915813 0.0394179 0) (0.899504 0.0414189 0) (0.882178 0.0434889 0) (0.863805 0.0456401 0) (0.844369 0.0478721 0) (0.823867 0.0501789 0) (0.802308 0.0525516 0) (0.779711 0.054979 0) (0.756106 0.0574483 0) (0.731537 0.0599447 0) (0.706058 0.0624518 0) (0.679736 0.0649511 0) (0.652652 0.0674224 0) (0.624895 0.069844 0) (0.596568 0.0721923 0) (0.56778 0.0744425 0) (0.538649 0.076569 0) (0.509299 0.0785452 0) (0.479858 0.0803449 0) (0.450453 0.0819419 0) (0.421214 0.0833115 0) (0.392266 0.0844304 0) (0.363727 0.0852775 0) (0.335713 0.0858345 0) (0.308327 0.086086 0) (0.281664 0.0860197 0) (0.255807 0.0856265 0) (0.230827 0.0849 0) (0.206783 0.0838359 0) (0.183721 0.0824309 0) (0.161672 0.0806818 0) (0.140656 0.0785823 0) (0.120678 0.0761205 0) (0.10173 0.073273 0) (0.0837886 0.0699964 0) (0.0668141 0.0662129 0) (0.050754 0.0617894 0) (0.0355545 0.0565057 0) (0.021199 0.050011 0) (0.00780124 0.0417696 0) (-0.0041633 0.031024 0) (-0.0133499 0.0169885 0) (-0.0170728 3.52366e-19 0) (-0.0133499 -0.0169885 0) (-0.0041633 -0.031024 0) (0.00780124 -0.0417696 0) (0.021199 -0.050011 0) (0.0355545 -0.0565057 0) (0.050754 -0.0617894 0) (0.0668141 -0.0662129 0) (0.0837886 -0.0699964 0) (0.10173 -0.073273 0) (0.120678 -0.0761205 0) (0.140656 -0.0785823 0) (0.161672 -0.0806818 0) (0.183721 -0.0824309 0) (0.206783 -0.0838359 0) (0.230827 -0.0849 0) (0.255807 -0.0856265 0) (0.281664 -0.0860197 0) (0.308327 -0.086086 0) (0.335713 -0.0858345 0) (0.363727 -0.0852775 0) (0.392266 -0.0844304 0) (0.421214 -0.0833115 0) (0.450453 -0.0819419 0) (0.479858 -0.0803449 0) (0.509299 -0.0785452 0) (0.538649 -0.076569 0) (0.56778 -0.0744425 0) (0.596568 -0.0721923 0) (0.624895 -0.069844 0) (0.652652 -0.0674224 0) (0.679736 -0.0649511 0) (0.706058 -0.0624518 0) (0.731537 -0.0599447 0) (0.756106 -0.0574483 0) (0.779711 -0.054979 0) (0.802308 -0.0525516 0) (0.823867 -0.0501789 0) (0.844369 -0.0478721 0) (0.863805 -0.0456401 0) (0.882178 -0.0434889 0) (0.899504 -0.0414189 0) (0.915813 -0.0394179 0) (0.931164 -0.0374472 0) (0.945654 -0.0354148 0) (0.959451 -0.0331438 0) (0.972774 -0.0302898 0) (0.985958 -0.0262767 0) (0.999217 -0.0198676 0) (1.01142 -0.00821077 0) (0.999893 0.0205901 0) (0.986499 0.027355 0) (0.973193 0.0316079 0) (0.959766 0.034609 0) (0.945899 0.0369647 0) (0.931368 0.0390389 0) (0.915996 0.0410257 0) (0.899676 0.0430293 0) (0.882344 0.0450959 0) (0.863967 0.0472417 0) (0.844528 0.0494681 0) (0.824023 0.0517697 0) (0.802461 0.0541376 0) (0.779861 0.0565608 0) (0.756253 0.0590264 0) (0.73168 0.0615195 0) (0.706197 0.0640236 0) (0.679871 0.0665204 0) (0.652782 0.0689896 0) (0.62502 0.0714093 0) (0.596687 0.0737559 0) (0.567893 0.0760048 0) (0.538755 0.0781301 0) (0.509398 0.0801054 0) (0.479948 0.0819043 0) (0.450534 0.0835008 0) (0.421284 0.08487 0) (0.392324 0.0859885 0) (0.363773 0.0868353 0) (0.335744 0.087392 0) (0.308342 0.0876431 0) (0.281661 0.0875763 0) (0.255785 0.0871823 0) (0.230784 0.0864545 0) (0.206717 0.0853884 0) (0.183628 0.0839803 0) (0.16155 0.0822264 0) (0.1405 0.0801195 0) (0.120485 0.0776462 0) (0.101493 0.0747806 0) (0.0834978 0.0714754 0) (0.0664584 0.067647 0) (0.0503195 0.0631536 0) (0.0350264 0.0577644 0) (0.020567 0.0511167 0) (0.00706704 0.0426646 0) (-0.00497591 0.0316485 0) (-0.0141915 0.0173015 0) (-0.0179126 3.52366e-19 0) (-0.0141915 -0.0173015 0) (-0.00497591 -0.0316485 0) (0.00706704 -0.0426646 0) (0.020567 -0.0511167 0) (0.0350264 -0.0577644 0) (0.0503195 -0.0631536 0) (0.0664584 -0.067647 0) (0.0834978 -0.0714754 0) (0.101493 -0.0747806 0) (0.120485 -0.0776462 0) (0.1405 -0.0801195 0) (0.16155 -0.0822264 0) (0.183628 -0.0839803 0) (0.206717 -0.0853884 0) (0.230784 -0.0864545 0) (0.255785 -0.0871823 0) (0.281661 -0.0875763 0) (0.308342 -0.0876431 0) (0.335744 -0.087392 0) (0.363773 -0.0868353 0) (0.392324 -0.0859885 0) (0.421284 -0.08487 0) (0.450534 -0.0835008 0) (0.479948 -0.0819043 0) (0.509398 -0.0801054 0) (0.538755 -0.0781301 0) (0.567893 -0.0760048 0) (0.596687 -0.0737559 0) (0.62502 -0.0714093 0) (0.652782 -0.0689896 0) (0.679871 -0.0665204 0) (0.706197 -0.0640236 0) (0.73168 -0.0615195 0) (0.756253 -0.0590264 0) (0.779861 -0.0565608 0) (0.802461 -0.0541376 0) (0.824023 -0.0517697 0) (0.844528 -0.0494681 0) (0.863967 -0.0472417 0) (0.882344 -0.0450959 0) (0.899676 -0.0430293 0) (0.915996 -0.0410257 0) (0.931368 -0.0390389 0) (0.945899 -0.0369647 0) (0.959766 -0.034609 0) (0.973193 -0.0316079 0) (0.986499 -0.027355 0) (0.999893 -0.0205901 0) (1.01196 -0.00840524 0) (1.00059 0.0213016 0) (0.987063 0.0284311 0) (0.973634 0.0329335 0) (0.9601 0.0360915 0) (0.946158 0.03854 0) (0.93158 0.0406622 0) (0.916183 0.0426688 0) (0.899851 0.0446766 0) (0.882513 0.0467404 0) (0.864132 0.0488808 0) (0.84469 0.0511013 0) (0.824182 0.0533972 0) (0.802617 0.05576 0) (0.780014 0.0581787 0) (0.756402 0.0606401 0) (0.731825 0.0631297 0) (0.706338 0.0656307 0) (0.680009 0.0681248 0) (0.652915 0.0705916 0) (0.625148 0.0730092 0) (0.596809 0.0753541 0) (0.568009 0.0776015 0) (0.538864 0.0797255 0) (0.509499 0.0816998 0) (0.48004 0.0834979 0) (0.450617 0.0850937 0) (0.421356 0.0864624 0) (0.392384 0.0875805 0) (0.363819 0.088427 0) (0.335776 0.0889834 0) (0.308358 0.0892341 0) (0.281659 0.0891668 0) (0.255763 0.0887719 0) (0.23074 0.0880427 0) (0.206648 0.0869744 0) (0.183533 0.085563 0) (0.161425 0.0838039 0) (0.140342 0.081689 0) (0.120287 0.0792033 0) (0.101249 0.0763183 0) (0.0831985 0.0729822 0) (0.0660919 0.0691054 0) (0.0498714 0.0645375 0) (0.0344826 0.0590371 0) (0.019918 0.0522301 0) (0.00631668 0.0435616 0) (-0.00580185 0.032271 0) (-0.0150427 0.017612 0) (-0.0187599 3.52366e-19 0) (-0.0150427 -0.017612 0) (-0.00580185 -0.032271 0) (0.00631668 -0.0435616 0) (0.019918 -0.0522301 0) (0.0344826 -0.0590371 0) (0.0498714 -0.0645375 0) (0.0660919 -0.0691054 0) (0.0831985 -0.0729822 0) (0.101249 -0.0763183 0) (0.120287 -0.0792033 0) (0.140342 -0.081689 0) (0.161425 -0.0838039 0) (0.183533 -0.085563 0) (0.206648 -0.0869744 0) (0.23074 -0.0880427 0) (0.255763 -0.0887719 0) (0.281659 -0.0891668 0) (0.308358 -0.0892341 0) (0.335776 -0.0889834 0) (0.363819 -0.088427 0) (0.392384 -0.0875805 0) (0.421356 -0.0864624 0) (0.450617 -0.0850937 0) (0.48004 -0.0834979 0) (0.509499 -0.0816998 0) (0.538864 -0.0797255 0) (0.568009 -0.0776015 0) (0.596809 -0.0753541 0) (0.625148 -0.0730092 0) (0.652915 -0.0705916 0) (0.680009 -0.0681248 0) (0.706338 -0.0656307 0) (0.731825 -0.0631297 0) (0.756402 -0.0606401 0) (0.780014 -0.0581787 0) (0.802617 -0.05576 0) (0.824182 -0.0533972 0) (0.84469 -0.0511013 0) (0.864132 -0.0488808 0) (0.882513 -0.0467404 0) (0.899851 -0.0446766 0) (0.916183 -0.0426688 0) (0.93158 -0.0406622 0) (0.946158 -0.03854 0) (0.9601 -0.0360915 0) (0.973634 -0.0329335 0) (0.987063 -0.0284311 0) (1.00059 -0.0213016 0) (1.01251 -0.00859327 0) (1.0013 0.022002 0) (0.987652 0.0295044 0) (0.9741 0.0342661 0) (0.960454 0.0375906 0) (0.946431 0.0401404 0) (0.931803 0.0423169 0) (0.916377 0.0443472 0) (0.900031 0.0463614 0) (0.882685 0.0484231 0) (0.8643 0.0505581 0) (0.844855 0.0527724 0) (0.824344 0.0550623 0) (0.802776 0.0574196 0) (0.780169 0.0598334 0) (0.756554 0.0622905 0) (0.731974 0.0647763 0) (0.706483 0.0672739 0) (0.680149 0.069765 0) (0.65305 0.0722292 0) (0.625278 0.0746446 0) (0.596934 0.0769876 0) (0.568127 0.0792334 0) (0.538975 0.0813561 0) (0.509602 0.0833293 0) (0.480134 0.0851264 0) (0.450701 0.0867216 0) (0.42143 0.0880896 0) (0.392445 0.0892073 0) (0.363867 0.0900534 0) (0.335808 0.0906094 0) (0.308374 0.0908597 0) (0.281657 0.0907917 0) (0.25574 0.0903959 0) (0.230695 0.0896653 0) (0.206579 0.0885947 0) (0.183436 0.0871797 0) (0.161297 0.0854151 0) (0.140179 0.0832916 0) (0.120084 0.0807925 0) (0.100998 0.0778863 0) (0.0828904 0.074517 0) (0.065714 0.0705882 0) (0.0494094 0.065941 0) (0.0339225 0.0603236 0) (0.0192518 0.0533511 0) (0.00554989 0.0444604 0) (-0.00664138 0.0328916 0) (-0.0159038 0.0179201 0) (-0.0196154 2.84603e-19 0) (-0.0159038 -0.0179201 0) (-0.00664138 -0.0328916 0) (0.00554989 -0.0444604 0) (0.0192518 -0.0533511 0) (0.0339225 -0.0603236 0) (0.0494094 -0.065941 0) (0.065714 -0.0705882 0) (0.0828904 -0.074517 0) (0.100998 -0.0778863 0) (0.120084 -0.0807925 0) (0.140179 -0.0832916 0) (0.161297 -0.0854151 0) (0.183436 -0.0871797 0) (0.206579 -0.0885947 0) (0.230695 -0.0896653 0) (0.25574 -0.0903959 0) (0.281657 -0.0907917 0) (0.308374 -0.0908597 0) (0.335808 -0.0906094 0) (0.363867 -0.0900534 0) (0.392445 -0.0892073 0) (0.42143 -0.0880896 0) (0.450701 -0.0867216 0) (0.480134 -0.0851264 0) (0.509602 -0.0833293 0) (0.538975 -0.0813561 0) (0.568127 -0.0792334 0) (0.596934 -0.0769876 0) (0.625278 -0.0746446 0) (0.65305 -0.0722292 0) (0.680149 -0.069765 0) (0.706483 -0.0672739 0) (0.731974 -0.0647763 0) (0.756554 -0.0622905 0) (0.780169 -0.0598334 0) (0.802776 -0.0574196 0) (0.824344 -0.0550623 0) (0.844855 -0.0527724 0) (0.8643 -0.0505581 0) (0.882685 -0.0484231 0) (0.900031 -0.0463614 0) (0.916377 -0.0443472 0) (0.931803 -0.0423169 0) (0.946431 -0.0401404 0) (0.960454 -0.0375906 0) (0.9741 -0.0342661 0) (0.987652 -0.0295044 0) (1.0013 -0.022002 0) (1.01307 -0.0087753 0) (1.00203 0.0226914 0) (0.988264 0.0305746 0) (0.974589 0.0356051 0) (0.960829 0.0391056 0) (0.94672 0.0417653 0) (0.932036 0.0440028 0) (0.916578 0.0460614 0) (0.900215 0.0480843 0) (0.882861 0.0501448 0) (0.864471 0.0522745 0) (0.845022 0.0544824 0) (0.824508 0.056766 0) (0.802937 0.0591174 0) (0.780327 0.0615259 0) (0.756709 0.0639784 0) (0.732125 0.0664601 0) (0.70663 0.0689541 0) (0.680291 0.071442 0) (0.653188 0.0739035 0) (0.625411 0.0763165 0) (0.59706 0.0786574 0) (0.568247 0.0809014 0) (0.539088 0.0830226 0) (0.509707 0.0849946 0) (0.480231 0.0867907 0) (0.450787 0.0883851 0) (0.421505 0.0897525 0) (0.392507 0.0908697 0) (0.363916 0.0917154 0) (0.335842 0.0922709 0) (0.30839 0.0925207 0) (0.281655 0.0924521 0) (0.255718 0.0920552 0) (0.23065 0.091323 0) (0.206508 0.0902499 0) (0.183337 0.0888311 0) (0.161167 0.0870605 0) (0.140013 0.0849278 0) (0.119876 0.0824142 0) (0.10074 0.0794851 0) (0.082573 0.0760799 0) (0.0653242 0.0720954 0) (0.0489327 0.067364 0) (0.0333457 0.0616236 0) (0.0185679 0.0544794 0) (0.0047664 0.045361 0) (-0.00749477 0.0335103 0) (-0.0167753 0.0182259 0) (-0.0204794 2.57498e-19 0) (-0.0167753 -0.0182259 0) (-0.00749477 -0.0335103 0) (0.0047664 -0.045361 0) (0.0185679 -0.0544794 0) (0.0333457 -0.0616236 0) (0.0489327 -0.067364 0) (0.0653242 -0.0720954 0) (0.082573 -0.0760799 0) (0.10074 -0.0794851 0) (0.119876 -0.0824142 0) (0.140013 -0.0849278 0) (0.161167 -0.0870605 0) (0.183337 -0.0888311 0) (0.206508 -0.0902499 0) (0.23065 -0.091323 0) (0.255718 -0.0920552 0) (0.281655 -0.0924521 0) (0.30839 -0.0925207 0) (0.335842 -0.0922709 0) (0.363916 -0.0917154 0) (0.392507 -0.0908697 0) (0.421505 -0.0897525 0) (0.450787 -0.0883851 0) (0.480231 -0.0867907 0) (0.509707 -0.0849946 0) (0.539088 -0.0830226 0) (0.568247 -0.0809014 0) (0.59706 -0.0786574 0) (0.625411 -0.0763165 0) (0.653188 -0.0739035 0) (0.680291 -0.071442 0) (0.70663 -0.0689541 0) (0.732125 -0.0664601 0) (0.756709 -0.0639784 0) (0.780327 -0.0615259 0) (0.802937 -0.0591174 0) (0.824508 -0.056766 0) (0.845022 -0.0544824 0) (0.864471 -0.0522745 0) (0.882861 -0.0501448 0) (0.900215 -0.0480843 0) (0.916578 -0.0460614 0) (0.932036 -0.0440028 0) (0.94672 -0.0417653 0) (0.960829 -0.0391056 0) (0.974589 -0.0356051 0) (0.988264 -0.0305746 0) (1.00203 -0.0226914 0) (1.01363 -0.00895175 0) (1.00279 0.0233699 0) (0.988901 0.0316416 0) (0.975104 0.0369499 0) (0.961225 0.0406359 0) (0.947026 0.0434142 0) (0.932281 0.0457197 0) (0.916787 0.0478113 0) (0.900404 0.0498458 0) (0.88304 0.0519064 0) (0.864645 0.0540311 0) (0.845192 0.0562323 0) (0.824676 0.0585092 0) (0.803101 0.0608544 0) (0.780488 0.0632573 0) (0.756866 0.0657048 0) (0.732279 0.068182 0) (0.70678 0.0706721 0) (0.680437 0.0731566 0) (0.653329 0.0756151 0) (0.625546 0.0780255 0) (0.59719 0.0803643 0) (0.56837 0.0826064 0) (0.539204 0.084726 0) (0.509814 0.0866966 0) (0.480329 0.0884917 0) (0.450875 0.0900851 0) (0.421581 0.0914518 0) (0.392571 0.0925684 0) (0.363965 0.0934136 0) (0.335876 0.0939687 0) (0.308407 0.094218 0) (0.281653 0.0941486 0) (0.255695 0.0937506 0) (0.230603 0.0930167 0) (0.206436 0.091941 0) (0.183236 0.0905181 0) (0.161033 0.0887411 0) (0.139842 0.0865983 0) (0.119662 0.084069 0) (0.100475 0.0811152 0) (0.0822458 0.0776713 0) (0.064922 0.0736271 0) (0.0484409 0.0688063 0) (0.0327515 0.0629371 0) (0.0178659 0.055615 0) (0.00396593 0.0462634 0) (-0.00836228 0.0341274 0) (-0.0176575 0.0185295 0) (-0.0213525 2.30393e-19 0) (-0.0176575 -0.0185295 0) (-0.00836228 -0.0341274 0) (0.00396593 -0.0462634 0) (0.0178659 -0.055615 0) (0.0327515 -0.0629371 0) (0.0484409 -0.0688063 0) (0.064922 -0.0736271 0) (0.0822458 -0.0776713 0) (0.100475 -0.0811152 0) (0.119662 -0.084069 0) (0.139842 -0.0865983 0) (0.161033 -0.0887411 0) (0.183236 -0.0905181 0) (0.206436 -0.091941 0) (0.230603 -0.0930167 0) (0.255695 -0.0937506 0) (0.281653 -0.0941486 0) (0.308407 -0.094218 0) (0.335876 -0.0939687 0) (0.363965 -0.0934136 0) (0.392571 -0.0925684 0) (0.421581 -0.0914518 0) (0.450875 -0.0900851 0) (0.480329 -0.0884917 0) (0.509814 -0.0866966 0) (0.539204 -0.084726 0) (0.56837 -0.0826064 0) (0.59719 -0.0803643 0) (0.625546 -0.0780255 0) (0.653329 -0.0756151 0) (0.680437 -0.0731566 0) (0.70678 -0.0706721 0) (0.732279 -0.068182 0) (0.756866 -0.0657048 0) (0.780488 -0.0632573 0) (0.803101 -0.0608544 0) (0.824676 -0.0585092 0) (0.845192 -0.0562323 0) (0.864645 -0.0540311 0) (0.88304 -0.0519064 0) (0.900404 -0.0498458 0) (0.916787 -0.0478113 0) (0.932281 -0.0457197 0) (0.947026 -0.0434142 0) (0.961225 -0.0406359 0) (0.975104 -0.0369499 0) (0.988901 -0.0316416 0) (1.00279 -0.0233699 0) (1.0142 -0.00912299 0) (1.00355 0.0240374 0) (0.989561 0.0327049 0) (0.975643 0.0383 0) (0.961644 0.0421809 0) (0.94735 0.0450866 0) (0.932538 0.0474673 0) (0.917003 0.0495973 0) (0.900598 0.0516464 0) (0.883223 0.0537085 0) (0.864821 0.0558286 0) (0.845365 0.0580231 0) (0.824846 0.0602929 0) (0.803268 0.0626315 0) (0.780652 0.0650284 0) (0.757027 0.0674705 0) (0.732435 0.069943 0) (0.706932 0.072429 0) (0.680585 0.0749099 0) (0.653472 0.0773652 0) (0.625684 0.0797728 0) (0.597322 0.0821091 0) (0.568495 0.0843492 0) (0.539321 0.0864671 0) (0.509924 0.0884362 0) (0.480429 0.0902301 0) (0.450965 0.0918226 0) (0.421659 0.0931885 0) (0.392637 0.0943045 0) (0.364016 0.0951491 0) (0.335911 0.0957037 0) (0.308425 0.0959523 0) (0.281651 0.0958821 0) (0.255671 0.0954829 0) (0.230556 0.0947472 0) (0.206362 0.0936686 0) (0.183133 0.0922412 0) (0.160896 0.0904573 0) (0.139667 0.0883038 0) (0.119442 0.0857574 0) (0.100202 0.0827768 0) (0.0819084 0.0792912 0) (0.0645067 0.0751832 0) (0.0479332 0.0702679 0) (0.0321396 0.0642638 0) (0.0171455 0.0567578 0) (0.0031482 0.0471676 0) (-0.00924421 0.0347428 0) (-0.0185509 0.0188311 0) (-0.0222352 1.6263e-19 0) (-0.0185509 -0.0188311 0) (-0.00924421 -0.0347428 0) (0.0031482 -0.0471676 0) (0.0171455 -0.0567578 0) (0.0321396 -0.0642638 0) (0.0479332 -0.0702679 0) (0.0645067 -0.0751832 0) (0.0819084 -0.0792912 0) (0.100202 -0.0827768 0) (0.119442 -0.0857574 0) (0.139667 -0.0883038 0) (0.160896 -0.0904573 0) (0.183133 -0.0922412 0) (0.206362 -0.0936686 0) (0.230556 -0.0947472 0) (0.255671 -0.0954829 0) (0.281651 -0.0958821 0) (0.308425 -0.0959523 0) (0.335911 -0.0957037 0) (0.364016 -0.0951491 0) (0.392637 -0.0943045 0) (0.421659 -0.0931885 0) (0.450965 -0.0918226 0) (0.480429 -0.0902301 0) (0.509924 -0.0884362 0) (0.539321 -0.0864671 0) (0.568495 -0.0843492 0) (0.597322 -0.0821091 0) (0.625684 -0.0797728 0) (0.653472 -0.0773652 0) (0.680585 -0.0749099 0) (0.706932 -0.072429 0) (0.732435 -0.069943 0) (0.757027 -0.0674705 0) (0.780652 -0.0650284 0) (0.803268 -0.0626315 0) (0.824846 -0.0602929 0) (0.845365 -0.0580231 0) (0.864821 -0.0558286 0) (0.883223 -0.0537085 0) (0.900598 -0.0516464 0) (0.917003 -0.0495973 0) (0.932538 -0.0474673 0) (0.94735 -0.0450866 0) (0.961644 -0.0421809 0) (0.975643 -0.0383 0) (0.989561 -0.0327049 0) (1.00355 -0.0240374 0) (1.01478 -0.00928933 0) (1.00434 0.0246941 0) (0.990246 0.0337644 0) (0.976209 0.0396548 0) (0.962087 0.04374 0) (0.947693 0.0467818 0) (0.932809 0.0492453 0) (0.917229 0.0514192 0) (0.900798 0.0534866 0) (0.88341 0.0555519 0) (0.865001 0.0576681 0) (0.845541 0.0598557 0) (0.825018 0.0621182 0) (0.803438 0.0644497 0) (0.780818 0.0668402 0) (0.75719 0.0692767 0) (0.732594 0.0717441 0) (0.707087 0.0742257 0) (0.680735 0.0767026 0) (0.653618 0.0791545 0) (0.625824 0.0815592 0) (0.597456 0.0838929 0) (0.568623 0.0861308 0) (0.539442 0.0882468 0) (0.510035 0.0902144 0) (0.480531 0.092007 0) (0.451057 0.0935984 0) (0.421739 0.0949634 0) (0.392703 0.0960787 0) (0.364069 0.0969227 0) (0.335947 0.0974767 0) (0.308443 0.0977246 0) (0.281649 0.0976535 0) (0.255647 0.097253 0) (0.230508 0.0965152 0) (0.206287 0.0954336 0) (0.183027 0.0940015 0) (0.160756 0.0922101 0) (0.139487 0.0900448 0) (0.119216 0.0874799 0) (0.0999203 0.0844704 0) (0.0815601 0.0809398 0) (0.0640777 0.0767638 0) (0.0474093 0.0717485 0) (0.0315093 0.0656036 0) (0.0164062 0.0579075 0) (0.00231292 0.0480735 0) (-0.0101408 0.0353567 0) (-0.0194559 0.0191307 0) (-0.023128 2.03288e-19 0) (-0.0194559 -0.0191307 0) (-0.0101408 -0.0353567 0) (0.00231292 -0.0480735 0) (0.0164062 -0.0579075 0) (0.0315093 -0.0656036 0) (0.0474093 -0.0717485 0) (0.0640777 -0.0767638 0) (0.0815601 -0.0809398 0) (0.0999203 -0.0844704 0) (0.119216 -0.0874799 0) (0.139487 -0.0900448 0) (0.160756 -0.0922101 0) (0.183027 -0.0940015 0) (0.206287 -0.0954336 0) (0.230508 -0.0965152 0) (0.255647 -0.097253 0) (0.281649 -0.0976535 0) (0.308443 -0.0977246 0) (0.335947 -0.0974767 0) (0.364069 -0.0969227 0) (0.392703 -0.0960787 0) (0.421739 -0.0949634 0) (0.451057 -0.0935984 0) (0.480531 -0.092007 0) (0.510035 -0.0902144 0) (0.539442 -0.0882468 0) (0.568623 -0.0861308 0) (0.597456 -0.0838929 0) (0.625824 -0.0815592 0) (0.653618 -0.0791545 0) (0.680735 -0.0767026 0) (0.707087 -0.0742257 0) (0.732594 -0.0717441 0) (0.75719 -0.0692767 0) (0.780818 -0.0668402 0) (0.803438 -0.0644497 0) (0.825018 -0.0621182 0) (0.845541 -0.0598557 0) (0.865001 -0.0576681 0) (0.88341 -0.0555519 0) (0.900798 -0.0534866 0) (0.917229 -0.0514192 0) (0.932809 -0.0492453 0) (0.947693 -0.0467818 0) (0.962087 -0.04374 0) (0.976209 -0.0396548 0) (0.990246 -0.0337644 0) (1.00434 -0.0246941 0) (1.01537 -0.00945109 0) (1.00514 0.02534 0) (0.990955 0.0348197 0) (0.9768 0.0410139 0) (0.962553 0.0453126 0) (0.948055 0.0484993 0) (0.933095 0.0510533 0) (0.917465 0.0532772 0) (0.901005 0.0553667 0) (0.883601 0.0574374 0) (0.865185 0.0595503 0) (0.84572 0.0617313 0) (0.825194 0.0639861 0) (0.80361 0.0663102 0) (0.780988 0.0686939 0) (0.757356 0.0711243 0) (0.732757 0.0735863 0) (0.707245 0.0760631 0) (0.680889 0.0785359 0) (0.653766 0.0809841 0) (0.625967 0.0833856 0) (0.597593 0.0857166 0) (0.568753 0.0879521 0) (0.539564 0.0900661 0) (0.510149 0.092032 0) (0.480636 0.0938232 0) (0.45115 0.0954134 0) (0.421821 0.0967775 0) (0.392772 0.097892 0) (0.364122 0.0987353 0) (0.335984 0.0992886 0) (0.308461 0.0995358 0) (0.281647 0.0994636 0) (0.255623 0.0990618 0) (0.230459 0.0983218 0) (0.20621 0.0972369 0) (0.182919 0.0957995 0) (0.160613 0.094 0) (0.139303 0.091822 0) (0.118983 0.0892371 0) (0.0996302 0.0861963 0) (0.0812004 0.0826174 0) (0.0636344 0.0783688 0) (0.0468684 0.0732482 0) (0.0308603 0.0669563 0) (0.0156478 0.059064 0) (0.0014598 0.0489812 0) (-0.0110525 0.0359692 0) (-0.0203728 0.0194286 0) (-0.0240314 1.89735e-19 0) (-0.0203728 -0.0194286 0) (-0.0110525 -0.0359692 0) (0.0014598 -0.0489812 0) (0.0156478 -0.059064 0) (0.0308603 -0.0669563 0) (0.0468684 -0.0732482 0) (0.0636344 -0.0783688 0) (0.0812004 -0.0826174 0) (0.0996302 -0.0861963 0) (0.118983 -0.0892371 0) (0.139303 -0.091822 0) (0.160613 -0.094 0) (0.182919 -0.0957995 0) (0.20621 -0.0972369 0) (0.230459 -0.0983218 0) (0.255623 -0.0990618 0) (0.281647 -0.0994636 0) (0.308461 -0.0995358 0) (0.335984 -0.0992886 0) (0.364122 -0.0987353 0) (0.392772 -0.097892 0) (0.421821 -0.0967775 0) (0.45115 -0.0954134 0) (0.480636 -0.0938232 0) (0.510149 -0.092032 0) (0.539564 -0.0900661 0) (0.568753 -0.0879521 0) (0.597593 -0.0857166 0) (0.625967 -0.0833856 0) (0.653766 -0.0809841 0) (0.680889 -0.0785359 0) (0.707245 -0.0760631 0) (0.732757 -0.0735863 0) (0.757356 -0.0711243 0) (0.780988 -0.0686939 0) (0.80361 -0.0663102 0) (0.825194 -0.0639861 0) (0.84572 -0.0617313 0) (0.865185 -0.0595503 0) (0.883601 -0.0574374 0) (0.901005 -0.0553667 0) (0.917465 -0.0532772 0) (0.933095 -0.0510533 0) (0.948055 -0.0484993 0) (0.962553 -0.0453126 0) (0.9768 -0.0410139 0) (0.990955 -0.0348197 0) (1.00514 -0.02534 0) (1.01597 -0.00960853 0) (1.00596 0.0259754 0) (0.991688 0.0358707 0) (0.977418 0.0423768 0) (0.963045 0.0468981 0) (0.948439 0.0502386 0) (0.933397 0.052891 0) (0.917712 0.0551711 0) (0.901219 0.057287 0) (0.883797 0.0593656 0) (0.865372 0.0614764 0) (0.845902 0.0636507 0) (0.825372 0.0658976 0) (0.803786 0.068214 0) (0.78116 0.0705904 0) (0.757524 0.0730143 0) (0.732922 0.0754707 0) (0.707406 0.0779424 0) (0.681045 0.0804107 0) (0.653918 0.082855 0) (0.626113 0.0852531 0) (0.597733 0.0875811 0) (0.568886 0.0898141 0) (0.539689 0.0919259 0) (0.510266 0.09389 0) (0.480742 0.0956796 0) (0.451246 0.0972686 0) (0.421904 0.0986317 0) (0.392841 0.0997452 0) (0.364176 0.100588 0) (0.336022 0.10114 0) (0.30848 0.101387 0) (0.281645 0.101313 0) (0.255598 0.10091 0) (0.230408 0.100168 0) (0.206131 0.0990792 0) (0.182808 0.0976362 0) (0.160465 0.0958279 0) (0.139113 0.0936361 0) (0.118744 0.0910295 0) (0.0993308 0.0879548 0) (0.0808287 0.0843241 0) (0.0631763 0.0799983 0) (0.04631 0.0747667 0) (0.0301921 0.0683217 0) (0.0148698 0.0602274 0) (0.000588547 0.0498906 0) (-0.0119794 0.0365803 0) (-0.0213021 0.0197248 0) (-0.0249458 2.30393e-19 0) (-0.0213021 -0.0197248 0) (-0.0119794 -0.0365803 0) (0.000588547 -0.0498906 0) (0.0148698 -0.0602274 0) (0.0301921 -0.0683217 0) (0.04631 -0.0747667 0) (0.0631763 -0.0799983 0) (0.0808287 -0.0843241 0) (0.0993308 -0.0879548 0) (0.118744 -0.0910295 0) (0.139113 -0.0936361 0) (0.160465 -0.0958279 0) (0.182808 -0.0976362 0) (0.206131 -0.0990792 0) (0.230408 -0.100168 0) (0.255598 -0.10091 0) (0.281645 -0.101313 0) (0.30848 -0.101387 0) (0.336022 -0.10114 0) (0.364176 -0.100588 0) (0.392841 -0.0997452 0) (0.421904 -0.0986317 0) (0.451246 -0.0972686 0) (0.480742 -0.0956796 0) (0.510266 -0.09389 0) (0.539689 -0.0919259 0) (0.568886 -0.0898141 0) (0.597733 -0.0875811 0) (0.626113 -0.0852531 0) (0.653918 -0.082855 0) (0.681045 -0.0804107 0) (0.707406 -0.0779424 0) (0.732922 -0.0754707 0) (0.757524 -0.0730143 0) (0.78116 -0.0705904 0) (0.803786 -0.068214 0) (0.825372 -0.0658976 0) (0.845902 -0.0636507 0) (0.865372 -0.0614764 0) (0.883797 -0.0593656 0) (0.901219 -0.057287 0) (0.917712 -0.0551711 0) (0.933397 -0.052891 0) (0.948439 -0.0502386 0) (0.963045 -0.0468981 0) (0.977418 -0.0423768 0) (0.991688 -0.0358707 0) (1.00596 -0.0259754 0) (1.01658 -0.00976191 0) (1.0068 0.0266002 0) (0.992446 0.0369172 0) (0.978063 0.043743 0) (0.963562 0.0484959 0) (0.948845 0.0519992 0) (0.933715 0.054758 0) (0.91797 0.0571009 0) (0.901441 0.0592479 0) (0.883999 0.0613371 0) (0.865562 0.063447 0) (0.846087 0.0656152 0) (0.825553 0.067854 0) (0.803964 0.0701621 0) (0.781335 0.072531 0) (0.757696 0.074948 0) (0.73309 0.0773982 0) (0.70757 0.0798645 0) (0.681205 0.0823281 0) (0.654072 0.0847682 0) (0.626262 0.0871627 0) (0.597875 0.0894876 0) (0.569021 0.0917178 0) (0.539817 0.0938273 0) (0.510384 0.0957894 0) (0.480851 0.0975774 0) (0.451344 0.099165 0) (0.421989 0.100527 0) (0.392913 0.10164 0) (0.364232 0.102481 0) (0.33606 0.103033 0) (0.308499 0.103278 0) (0.281643 0.103204 0) (0.255573 0.102799 0) (0.230357 0.102054 0) (0.206051 0.100961 0) (0.182695 0.0995124 0) (0.160314 0.0976946 0) (0.138918 0.0954877 0) (0.118497 0.0928575 0) (0.0990217 0.0897462 0) (0.0804445 0.0860599 0) (0.0627026 0.0816521 0) (0.0457334 0.0763039 0) (0.029504 0.0696997 0) (0.0140718 0.0613974 0) (-0.00030114 0.0508017 0) (-0.0129219 0.0371901 0) (-0.0222442 0.0200193 0) (-0.0258718 2.98156e-19 0) (-0.0222442 -0.0200193 0) (-0.0129219 -0.0371901 0) (-0.00030114 -0.0508017 0) (0.0140718 -0.0613974 0) (0.029504 -0.0696997 0) (0.0457334 -0.0763039 0) (0.0627026 -0.0816521 0) (0.0804445 -0.0860599 0) (0.0990217 -0.0897462 0) (0.118497 -0.0928575 0) (0.138918 -0.0954877 0) (0.160314 -0.0976946 0) (0.182695 -0.0995124 0) (0.206051 -0.100961 0) (0.230357 -0.102054 0) (0.255573 -0.102799 0) (0.281643 -0.103204 0) (0.308499 -0.103278 0) (0.33606 -0.103033 0) (0.364232 -0.102481 0) (0.392913 -0.10164 0) (0.421989 -0.100527 0) (0.451344 -0.099165 0) (0.480851 -0.0975774 0) (0.510384 -0.0957894 0) (0.539817 -0.0938273 0) (0.569021 -0.0917178 0) (0.597875 -0.0894876 0) (0.626262 -0.0871627 0) (0.654072 -0.0847682 0) (0.681205 -0.0823281 0) (0.70757 -0.0798645 0) (0.73309 -0.0773982 0) (0.757696 -0.074948 0) (0.781335 -0.072531 0) (0.803964 -0.0701621 0) (0.825553 -0.067854 0) (0.846087 -0.0656152 0) (0.865562 -0.063447 0) (0.883999 -0.0613371 0) (0.901441 -0.0592479 0) (0.91797 -0.0571009 0) (0.933715 -0.054758 0) (0.948845 -0.0519992 0) (0.963562 -0.0484959 0) (0.978063 -0.043743 0) (0.992446 -0.0369172 0) (1.0068 -0.0266002 0) (1.01721 -0.00991145 0) (1.00766 0.0272148 0) (0.993229 0.0379589 0) (0.978735 0.0451122 0) (0.964106 0.0501055 0) (0.949273 0.0537803 0) (0.934052 0.0566538 0) (0.918242 0.0590664 0) (0.901671 0.0612496 0) (0.884206 0.0633525 0) (0.865757 0.0654631 0) (0.846275 0.0676255 0) (0.825737 0.0698562 0) (0.804145 0.0721558 0) (0.781513 0.0745166 0) (0.757871 0.0769263 0) (0.73326 0.07937 0) (0.707737 0.0818306 0) (0.681367 0.0842891 0) (0.654229 0.0867248 0) (0.626413 0.0891154 0) (0.59802 0.0914369 0) (0.569159 0.0936642 0) (0.539947 0.0957713 0) (0.510506 0.0977312 0) (0.480962 0.0995174 0) (0.451443 0.101104 0) (0.422076 0.102464 0) (0.392985 0.103576 0) (0.364289 0.104416 0) (0.3361 0.104967 0) (0.308519 0.105212 0) (0.281642 0.105136 0) (0.255547 0.104729 0) (0.230305 0.103981 0) (0.205968 0.102885 0) (0.182578 0.101429 0) (0.160159 0.0996006 0) (0.138717 0.0973774 0) (0.118242 0.0947217 0) (0.0987023 0.0915709 0) (0.080047 0.087825 0) (0.0622128 0.0833302 0) (0.0451381 0.0778597 0) (0.0287957 0.0710902 0) (0.0132535 0.062574 0) (-0.00120957 0.0517146 0) (-0.0138803 0.0377988 0) (-0.0231994 0.0203124 0) (-0.0268097 2.71051e-19 0) (-0.0231994 -0.0203124 0) (-0.0138803 -0.0377988 0) (-0.00120957 -0.0517146 0) (0.0132535 -0.062574 0) (0.0287957 -0.0710902 0) (0.0451381 -0.0778597 0) (0.0622128 -0.0833302 0) (0.080047 -0.087825 0) (0.0987023 -0.0915709 0) (0.118242 -0.0947217 0) (0.138717 -0.0973774 0) (0.160159 -0.0996006 0) (0.182578 -0.101429 0) (0.205968 -0.102885 0) (0.230305 -0.103981 0) (0.255547 -0.104729 0) (0.281642 -0.105136 0) (0.308519 -0.105212 0) (0.3361 -0.104967 0) (0.364289 -0.104416 0) (0.392985 -0.103576 0) (0.422076 -0.102464 0) (0.451443 -0.101104 0) (0.480962 -0.0995174 0) (0.510506 -0.0977312 0) (0.539947 -0.0957713 0) (0.569159 -0.0936642 0) (0.59802 -0.0914369 0) (0.626413 -0.0891154 0) (0.654229 -0.0867248 0) (0.681367 -0.0842891 0) (0.707737 -0.0818306 0) (0.73326 -0.07937 0) (0.757871 -0.0769263 0) (0.781513 -0.0745166 0) (0.804145 -0.0721558 0) (0.825737 -0.0698562 0) (0.846275 -0.0676255 0) (0.865757 -0.0654631 0) (0.884206 -0.0633525 0) (0.901671 -0.0612496 0) (0.918242 -0.0590664 0) (0.934052 -0.0566538 0) (0.949273 -0.0537803 0) (0.964106 -0.0501055 0) (0.978735 -0.0451122 0) (0.993229 -0.0379589 0) (1.00766 -0.0272148 0) (1.01784 -0.0100574 0) (1.00853 0.0278191 0) (0.994036 0.0389957 0) (0.979435 0.0464839 0) (0.964677 0.0517264 0) (0.949726 0.0555815 0) (0.934408 0.058578 0) (0.918528 0.0610674 0) (0.901911 0.0632922 0) (0.884419 0.0654125 0) (0.865956 0.0675256 0) (0.846466 0.069683 0) (0.825924 0.0719055 0) (0.804329 0.0741962 0) (0.781693 0.0765485 0) (0.758048 0.0789505 0) (0.733434 0.0813873 0) (0.707907 0.0838418 0) (0.681532 0.0862949 0) (0.654389 0.0887259 0) (0.626568 0.0911123 0) (0.598168 0.0934303 0) (0.5693 0.0956545 0) (0.540079 0.0977588 0) (0.510629 0.0997165 0) (0.481075 0.101501 0) (0.451545 0.103085 0) (0.422165 0.104445 0) (0.39306 0.105555 0) (0.364347 0.106395 0) (0.33614 0.106944 0) (0.30854 0.107188 0) (0.28164 0.10711 0) (0.255521 0.106701 0) (0.230251 0.105951 0) (0.205884 0.104849 0) (0.182459 0.103386 0) (0.159999 0.101547 0) (0.138511 0.0993059 0) (0.11798 0.0966224 0) (0.0983721 0.0934291 0) (0.0796358 0.0896196 0) (0.0617061 0.0850327 0) (0.0445235 0.0794339 0) (0.0280666 0.072493 0) (0.0124145 0.063757 0) (-0.00213705 0.0526292 0) (-0.014855 0.0384064 0) (-0.0241683 0.0206041 0) (-0.0277602 2.84603e-19 0) (-0.0241683 -0.0206041 0) (-0.014855 -0.0384064 0) (-0.00213705 -0.0526292 0) (0.0124145 -0.063757 0) (0.0280666 -0.072493 0) (0.0445235 -0.0794339 0) (0.0617061 -0.0850327 0) (0.0796358 -0.0896196 0) (0.0983721 -0.0934291 0) (0.11798 -0.0966224 0) (0.138511 -0.0993059 0) (0.159999 -0.101547 0) (0.182459 -0.103386 0) (0.205884 -0.104849 0) (0.230251 -0.105951 0) (0.255521 -0.106701 0) (0.28164 -0.10711 0) (0.30854 -0.107188 0) (0.33614 -0.106944 0) (0.364347 -0.106395 0) (0.39306 -0.105555 0) (0.422165 -0.104445 0) (0.451545 -0.103085 0) (0.481075 -0.101501 0) (0.510629 -0.0997165 0) (0.540079 -0.0977588 0) (0.5693 -0.0956545 0) (0.598168 -0.0934303 0) (0.626568 -0.0911123 0) (0.654389 -0.0887259 0) (0.681532 -0.0862949 0) (0.707907 -0.0838418 0) (0.733434 -0.0813873 0) (0.758048 -0.0789505 0) (0.781693 -0.0765485 0) (0.804329 -0.0741962 0) (0.825924 -0.0719055 0) (0.846466 -0.069683 0) (0.865956 -0.0675256 0) (0.884419 -0.0654125 0) (0.901911 -0.0632922 0) (0.918528 -0.0610674 0) (0.934408 -0.058578 0) (0.949726 -0.0555815 0) (0.964677 -0.0517264 0) (0.979435 -0.0464839 0) (0.994036 -0.0389957 0) (1.00853 -0.0278191 0) (1.01849 -0.0101998 0) (1.00942 0.0284133 0) (0.994868 0.0400274 0) (0.980162 0.0478577 0) (0.965276 0.053358 0) (0.950203 0.0574023 0) (0.934784 0.06053 0) (0.918829 0.0631036 0) (0.902162 0.0653759 0) (0.88464 0.0675173 0) (0.86616 0.0696352 0) (0.846661 0.0717884 0) (0.826115 0.0740029 0) (0.804515 0.0762845 0) (0.781877 0.0786279 0) (0.758228 0.0810217 0) (0.733611 0.0834512 0) (0.70808 0.0858991 0) (0.6817 0.0883466 0) (0.654552 0.0907725 0) (0.626725 0.0931546 0) (0.598319 0.0954687 0) (0.569443 0.0976896 0) (0.540215 0.0997911 0) (0.510755 0.101746 0) (0.481191 0.103529 0) (0.451649 0.105111 0) (0.422256 0.106469 0) (0.393136 0.107578 0) (0.364407 0.108417 0) (0.336181 0.108965 0) (0.308561 0.109207 0) (0.281638 0.109128 0) (0.255494 0.108717 0) (0.230196 0.107963 0) (0.205797 0.106857 0) (0.182336 0.105386 0) (0.159835 0.103534 0) (0.138298 0.101274 0) (0.117708 0.0985603 0) (0.0980303 0.0953211 0) (0.0792099 0.0914436 0) (0.0611819 0.0867594 0) (0.0438889 0.0810265 0) (0.0273162 0.073908 0) (0.0115544 0.0649465 0) (-0.0030839 0.0535455 0) (-0.0158462 0.0390131 0) (-0.0251512 0.0208944 0) (-0.0287236 2.57498e-19 0) (-0.0251512 -0.0208944 0) (-0.0158462 -0.0390131 0) (-0.0030839 -0.0535455 0) (0.0115544 -0.0649465 0) (0.0273162 -0.073908 0) (0.0438889 -0.0810265 0) (0.0611819 -0.0867594 0) (0.0792099 -0.0914436 0) (0.0980303 -0.0953211 0) (0.117708 -0.0985603 0) (0.138298 -0.101274 0) (0.159835 -0.103534 0) (0.182336 -0.105386 0) (0.205797 -0.106857 0) (0.230196 -0.107963 0) (0.255494 -0.108717 0) (0.281638 -0.109128 0) (0.308561 -0.109207 0) (0.336181 -0.108965 0) (0.364407 -0.108417 0) (0.393136 -0.107578 0) (0.422256 -0.106469 0) (0.451649 -0.105111 0) (0.481191 -0.103529 0) (0.510755 -0.101746 0) (0.540215 -0.0997911 0) (0.569443 -0.0976896 0) (0.598319 -0.0954687 0) (0.626725 -0.0931546 0) (0.654552 -0.0907725 0) (0.6817 -0.0883466 0) (0.70808 -0.0858991 0) (0.733611 -0.0834512 0) (0.758228 -0.0810217 0) (0.781877 -0.0786279 0) (0.804515 -0.0762845 0) (0.826115 -0.0740029 0) (0.846661 -0.0717884 0) (0.86616 -0.0696352 0) (0.88464 -0.0675173 0) (0.902162 -0.0653759 0) (0.918829 -0.0631036 0) (0.934784 -0.06053 0) (0.950203 -0.0574023 0) (0.965276 -0.053358 0) (0.980162 -0.0478577 0) (0.994868 -0.0400274 0) (1.00942 -0.0284133 0) (1.01915 -0.0103391 0) (1.01033 0.0289977 0) (0.995726 0.0410539 0) (0.980918 0.0492333 0) (0.965903 0.0549999 0) (0.950707 0.059242 0) (0.935182 0.0625095 0) (0.919146 0.0651748 0) (0.902424 0.0675006 0) (0.884868 0.0696676 0) (0.866369 0.0717928 0) (0.84686 0.073943 0) (0.826308 0.0761497 0) (0.804705 0.078422 0) (0.782064 0.080756 0) (0.758412 0.0831412 0) (0.733791 0.0855629 0) (0.708255 0.088004 0) (0.681872 0.0904453 0) (0.654718 0.0928659 0) (0.626885 0.0952433 0) (0.598473 0.0975533 0) (0.56959 0.0997707 0) (0.540353 0.101869 0) (0.510884 0.103822 0) (0.481309 0.105602 0) (0.451755 0.107183 0) (0.422348 0.108539 0) (0.393213 0.109646 0) (0.364468 0.110484 0) (0.336223 0.111031 0) (0.308582 0.111272 0) (0.281636 0.111191 0) (0.255467 0.110777 0) (0.230139 0.11002 0) (0.205708 0.108908 0) (0.18221 0.107428 0) (0.159666 0.105563 0) (0.138078 0.103282 0) (0.117427 0.100536 0) (0.0976765 0.0972472 0) (0.0787689 0.0932972 0) (0.0606394 0.0885102 0) (0.0432338 0.0826372 0) (0.0265441 0.075335 0) (0.0106729 0.0661422 0) (-0.00405045 0.0544636 0) (-0.0168544 0.0396187 0) (-0.0261485 0.0211836 0) (-0.0297006 2.71051e-19 0) (-0.0261485 -0.0211836 0) (-0.0168544 -0.0396187 0) (-0.00405045 -0.0544636 0) (0.0106729 -0.0661422 0) (0.0265441 -0.075335 0) (0.0432338 -0.0826372 0) (0.0606394 -0.0885102 0) (0.0787689 -0.0932972 0) (0.0976765 -0.0972472 0) (0.117427 -0.100536 0) (0.138078 -0.103282 0) (0.159666 -0.105563 0) (0.18221 -0.107428 0) (0.205708 -0.108908 0) (0.230139 -0.11002 0) (0.255467 -0.110777 0) (0.281636 -0.111191 0) (0.308582 -0.111272 0) (0.336223 -0.111031 0) (0.364468 -0.110484 0) (0.393213 -0.109646 0) (0.422348 -0.108539 0) (0.451755 -0.107183 0) (0.481309 -0.105602 0) (0.510884 -0.103822 0) (0.540353 -0.101869 0) (0.56959 -0.0997707 0) (0.598473 -0.0975533 0) (0.626885 -0.0952433 0) (0.654718 -0.0928659 0) (0.681872 -0.0904453 0) (0.708255 -0.088004 0) (0.733791 -0.0855629 0) (0.758412 -0.0831412 0) (0.782064 -0.080756 0) (0.804705 -0.078422 0) (0.826308 -0.0761497 0) (0.84686 -0.073943 0) (0.866369 -0.0717928 0) (0.884868 -0.0696676 0) (0.902424 -0.0675006 0) (0.919146 -0.0651748 0) (0.935182 -0.0625095 0) (0.950707 -0.059242 0) (0.965903 -0.0549999 0) (0.980918 -0.0492333 0) (0.995726 -0.0410539 0) (1.01033 -0.0289977 0) (1.01982 -0.0104752 0) (1.01125 0.0295723 0) (0.996608 0.042075 0) (0.981702 0.0506104 0) (0.966559 0.0566515 0) (0.951237 0.0611002 0) (0.935602 0.0645159 0) (0.919481 0.0672807 0) (0.902698 0.0696664 0) (0.885104 0.0718636 0) (0.866584 0.073999 0) (0.847063 0.0761476 0) (0.826505 0.078347 0) (0.804898 0.0806097 0) (0.782253 0.0829341 0) (0.758598 0.0853102 0) (0.733974 0.0877237 0) (0.708434 0.0901574 0) (0.682046 0.0925923 0) (0.654888 0.0950073 0) (0.627049 0.0973797 0) (0.59863 0.0996854 0) (0.569739 0.101899 0) (0.540493 0.103994 0) (0.511015 0.105944 0) (0.481429 0.107722 0) (0.451863 0.1093 0) (0.422443 0.110655 0) (0.393293 0.111761 0) (0.36453 0.112597 0) (0.336266 0.113143 0) (0.308604 0.113382 0) (0.281635 0.113299 0) (0.255438 0.112883 0) (0.230082 0.112121 0) (0.205617 0.111003 0) (0.18208 0.109515 0) (0.159491 0.107634 0) (0.13785 0.10533 0) (0.117137 0.102549 0) (0.0973099 0.0992074 0) (0.078312 0.0951804 0) (0.0600781 0.0902852 0) (0.0425575 0.084266 0) (0.0257497 0.076774 0) (0.0097694 0.0673443 0) (-0.00503704 0.0553835 0) (-0.0178798 0.0402236 0) (-0.0271607 0.0214715 0) (-0.0306915 2.43945e-19 0) (-0.0271607 -0.0214715 0) (-0.0178798 -0.0402236 0) (-0.00503704 -0.0553835 0) (0.0097694 -0.0673443 0) (0.0257497 -0.076774 0) (0.0425575 -0.084266 0) (0.0600781 -0.0902852 0) (0.078312 -0.0951804 0) (0.0973099 -0.0992074 0) (0.117137 -0.102549 0) (0.13785 -0.10533 0) (0.159491 -0.107634 0) (0.18208 -0.109515 0) (0.205617 -0.111003 0) (0.230082 -0.112121 0) (0.255438 -0.112883 0) (0.281635 -0.113299 0) (0.308604 -0.113382 0) (0.336266 -0.113143 0) (0.36453 -0.112597 0) (0.393293 -0.111761 0) (0.422443 -0.110655 0) (0.451863 -0.1093 0) (0.481429 -0.107722 0) (0.511015 -0.105944 0) (0.540493 -0.103994 0) (0.569739 -0.101899 0) (0.59863 -0.0996854 0) (0.627049 -0.0973797 0) (0.654888 -0.0950073 0) (0.682046 -0.0925923 0) (0.708434 -0.0901574 0) (0.733974 -0.0877237 0) (0.758598 -0.0853102 0) (0.782253 -0.0829341 0) (0.804898 -0.0806097 0) (0.826505 -0.078347 0) (0.847063 -0.0761476 0) (0.866584 -0.073999 0) (0.885104 -0.0718636 0) (0.902698 -0.0696664 0) (0.919481 -0.0672807 0) (0.935602 -0.0645159 0) (0.951237 -0.0611002 0) (0.966559 -0.0566515 0) (0.981702 -0.0506104 0) (0.996608 -0.042075 0) (1.01125 -0.0295723 0) (1.02051 -0.0106083 0) (1.0122 0.0301373 0) (0.997515 0.0430906 0) (0.982515 0.0519886 0) (0.967245 0.0583125 0) (0.951795 0.0629763 0) (0.936046 0.0665488 0) (0.919834 0.0694209 0) (0.902987 0.0718732 0) (0.88535 0.0741058 0) (0.866805 0.0762546 0) (0.847271 0.0784033 0) (0.826705 0.0805959 0) (0.805094 0.0828491 0) (0.782446 0.0851635 0) (0.758788 0.08753 0) (0.73416 0.0899348 0) (0.708616 0.0923608 0) (0.682223 0.0947889 0) (0.65506 0.0971978 0) (0.627215 0.099565 0) (0.598789 0.101866 0) (0.569891 0.104076 0) (0.540637 0.106167 0) (0.511148 0.108114 0) (0.481552 0.109889 0) (0.451973 0.111466 0) (0.422539 0.112818 0) (0.393373 0.113923 0) (0.364593 0.114757 0) (0.33631 0.115302 0) (0.308626 0.115539 0) (0.281633 0.115454 0) (0.255409 0.115035 0) (0.230022 0.114269 0) (0.205523 0.113144 0) (0.181947 0.111645 0) (0.159311 0.109749 0) (0.137615 0.10742 0) (0.116836 0.1046 0) (0.09693 0.101202 0) (0.0778384 0.0970933 0) (0.0594972 0.0920842 0) (0.0418594 0.0859128 0) (0.0249325 0.0782248 0) (0.00884366 0.0685526 0) (-0.00604401 0.0563051 0) (-0.0189229 0.0408277 0) (-0.0281882 0.0217585 0) (-0.0316969 2.30393e-19 0) (-0.0281882 -0.0217585 0) (-0.0189229 -0.0408277 0) (-0.00604401 -0.0563051 0) (0.00884366 -0.0685526 0) (0.0249325 -0.0782248 0) (0.0418594 -0.0859128 0) (0.0594972 -0.0920842 0) (0.0778384 -0.0970933 0) (0.09693 -0.101202 0) (0.116836 -0.1046 0) (0.137615 -0.10742 0) (0.159311 -0.109749 0) (0.181947 -0.111645 0) (0.205523 -0.113144 0) (0.230022 -0.114269 0) (0.255409 -0.115035 0) (0.281633 -0.115454 0) (0.308626 -0.115539 0) (0.33631 -0.115302 0) (0.364593 -0.114757 0) (0.393373 -0.113923 0) (0.422539 -0.112818 0) (0.451973 -0.111466 0) (0.481552 -0.109889 0) (0.511148 -0.108114 0) (0.540637 -0.106167 0) (0.569891 -0.104076 0) (0.598789 -0.101866 0) (0.627215 -0.099565 0) (0.65506 -0.0971978 0) (0.682223 -0.0947889 0) (0.708616 -0.0923608 0) (0.73416 -0.0899348 0) (0.758788 -0.08753 0) (0.782446 -0.0851635 0) (0.805094 -0.0828491 0) (0.826705 -0.0805959 0) (0.847271 -0.0784033 0) (0.866805 -0.0762546 0) (0.88535 -0.0741058 0) (0.902987 -0.0718732 0) (0.919834 -0.0694209 0) (0.936046 -0.0665488 0) (0.951795 -0.0629763 0) (0.967245 -0.0583125 0) (0.982515 -0.0519886 0) (0.997515 -0.0430906 0) (1.0122 -0.0301373 0) (1.02121 -0.0107387 0) (1.01316 0.030693 0) (0.998447 0.0441006 0) (0.983357 0.0533676 0) (0.967961 0.0599824 0) (0.952382 0.0648698 0) (0.936516 0.0686076 0) (0.920208 0.0715951 0) (0.903289 0.074121 0) (0.885606 0.0763942 0) (0.867032 0.0785601 0) (0.847483 0.080711 0) (0.826909 0.0828977 0) (0.805293 0.0851415 0) (0.782641 0.0874454 0) (0.75898 0.0898019 0) (0.734349 0.0921976 0) (0.708801 0.0946155 0) (0.682404 0.0970363 0) (0.655235 0.0994388 0) (0.627384 0.1018 0) (0.598952 0.104097 0) (0.570046 0.106302 0) (0.540783 0.10839 0) (0.511285 0.110334 0) (0.481677 0.112106 0) (0.452086 0.11368 0) (0.422638 0.115031 0) (0.393456 0.116133 0) (0.364658 0.116966 0) (0.336355 0.117509 0) (0.308649 0.117744 0) (0.281631 0.117657 0) (0.255379 0.117234 0) (0.229961 0.116464 0) (0.205426 0.115332 0) (0.181809 0.113821 0) (0.159126 0.111908 0) (0.137372 0.109551 0) (0.116524 0.106691 0) (0.0965358 0.103232 0) (0.0773474 0.0990358 0) (0.058896 0.0939072 0) (0.0411389 0.0875774 0) (0.024092 0.0796873 0) (0.00789523 0.069767 0) (-0.00707171 0.0572285 0) (-0.0199839 0.0414311 0) (-0.0292314 0.0220444 0) (-0.0327173 2.71051e-19 0) (-0.0292314 -0.0220444 0) (-0.0199839 -0.0414311 0) (-0.00707171 -0.0572285 0) (0.00789523 -0.069767 0) (0.024092 -0.0796873 0) (0.0411389 -0.0875774 0) (0.058896 -0.0939072 0) (0.0773474 -0.0990358 0) (0.0965358 -0.103232 0) (0.116524 -0.106691 0) (0.137372 -0.109551 0) (0.159126 -0.111908 0) (0.181809 -0.113821 0) (0.205426 -0.115332 0) (0.229961 -0.116464 0) (0.255379 -0.117234 0) (0.281631 -0.117657 0) (0.308649 -0.117744 0) (0.336355 -0.117509 0) (0.364658 -0.116966 0) (0.393456 -0.116133 0) (0.422638 -0.115031 0) (0.452086 -0.11368 0) (0.481677 -0.112106 0) (0.511285 -0.110334 0) (0.540783 -0.10839 0) (0.570046 -0.106302 0) (0.598952 -0.104097 0) (0.627384 -0.1018 0) (0.655235 -0.0994388 0) (0.682404 -0.0970363 0) (0.708801 -0.0946155 0) (0.734349 -0.0921976 0) (0.75898 -0.0898019 0) (0.782641 -0.0874454 0) (0.805293 -0.0851415 0) (0.826909 -0.0828977 0) (0.847483 -0.080711 0) (0.867032 -0.0785601 0) (0.885606 -0.0763942 0) (0.903289 -0.074121 0) (0.920208 -0.0715951 0) (0.936516 -0.0686076 0) (0.952382 -0.0648698 0) (0.967961 -0.0599824 0) (0.983357 -0.0533676 0) (0.998447 -0.0441006 0) (1.01316 -0.030693 0) (1.02192 -0.0108663 0) (1.01413 0.0312394 0) (0.999405 0.0451048 0) (0.984228 0.0547471 0) (0.968708 0.0616607 0) (0.952998 0.0667802 0) (0.937011 0.0706919 0) (0.920602 0.0738029 0) (0.903608 0.0764096 0) (0.885873 0.0787292 0) (0.867267 0.0809163 0) (0.8477 0.0830717 0) (0.827116 0.0852535 0) (0.805495 0.087488 0) (0.78284 0.0897813 0) (0.759175 0.0921274 0) (0.734541 0.0945134 0) (0.708989 0.0969226 0) (0.682587 0.0993358 0) (0.655414 0.101732 0) (0.627557 0.104087 0) (0.599117 0.106378 0) (0.570204 0.108579 0) (0.540932 0.110663 0) (0.511424 0.112603 0) (0.481805 0.114373 0) (0.452201 0.115944 0) (0.422738 0.117293 0) (0.39354 0.118393 0) (0.364724 0.119224 0) (0.336401 0.119765 0) (0.308672 0.119998 0) (0.281628 0.119909 0) (0.255349 0.119482 0) (0.229898 0.118707 0) (0.205326 0.117567 0) (0.181667 0.116044 0) (0.158933 0.114111 0) (0.13712 0.111725 0) (0.116201 0.10882 0) (0.0961269 0.105296 0) (0.0768383 0.101008 0) (0.0582737 0.0957541 0) (0.0403954 0.0892597 0) (0.0232278 0.0811614 0) (0.00692371 0.0709875 0) (-0.00812051 0.0581538 0) (-0.0210634 0.042034 0) (-0.030291 0.0223295 0) (-0.0337531 2.30393e-19 0) (-0.030291 -0.0223295 0) (-0.0210634 -0.042034 0) (-0.00812051 -0.0581538 0) (0.00692371 -0.0709875 0) (0.0232278 -0.0811614 0) (0.0403954 -0.0892597 0) (0.0582737 -0.0957541 0) (0.0768383 -0.101008 0) (0.0961269 -0.105296 0) (0.116201 -0.10882 0) (0.13712 -0.111725 0) (0.158933 -0.114111 0) (0.181667 -0.116044 0) (0.205326 -0.117567 0) (0.229898 -0.118707 0) (0.255349 -0.119482 0) (0.281628 -0.119909 0) (0.308672 -0.119998 0) (0.336401 -0.119765 0) (0.364724 -0.119224 0) (0.39354 -0.118393 0) (0.422738 -0.117293 0) (0.452201 -0.115944 0) (0.481805 -0.114373 0) (0.511424 -0.112603 0) (0.540932 -0.110663 0) (0.570204 -0.108579 0) (0.599117 -0.106378 0) (0.627557 -0.104087 0) (0.655414 -0.101732 0) (0.682587 -0.0993358 0) (0.708989 -0.0969226 0) (0.734541 -0.0945134 0) (0.759175 -0.0921274 0) (0.78284 -0.0897813 0) (0.805495 -0.087488 0) (0.827116 -0.0852535 0) (0.8477 -0.0830717 0) (0.867267 -0.0809163 0) (0.885873 -0.0787292 0) (0.903608 -0.0764096 0) (0.920602 -0.0738029 0) (0.937011 -0.0706919 0) (0.952998 -0.0667802 0) (0.968708 -0.0616607 0) (0.984228 -0.0547471 0) (0.999405 -0.0451048 0) (1.01413 -0.0312394 0) (1.02266 -0.0109915 0) (1.01513 0.0317768 0) (1.00039 0.0461031 0) (0.985129 0.0561268 0) (0.969486 0.0633471 0) (0.953644 0.0687071 0) (0.937533 0.0728012 0) (0.921019 0.0760439 0) (0.903944 0.0787387 0) (0.886152 0.0811109 0) (0.867511 0.0833235 0) (0.847922 0.0854862 0) (0.827328 0.0876644 0) (0.8057 0.08989 0) (0.783042 0.0921726 0) (0.759374 0.0945078 0) (0.734736 0.0968837 0) (0.709181 0.0992838 0) (0.682774 0.101689 0) (0.655595 0.104077 0) (0.627733 0.106427 0) (0.599286 0.108712 0) (0.570365 0.110908 0) (0.541084 0.112988 0) (0.511566 0.114925 0) (0.481935 0.116691 0) (0.452318 0.11826 0) (0.422841 0.119606 0) (0.393626 0.120704 0) (0.364791 0.121533 0) (0.336447 0.122072 0) (0.308695 0.122303 0) (0.281626 0.12221 0) (0.255317 0.12178 0) (0.229833 0.120999 0) (0.205223 0.11985 0) (0.18152 0.118314 0) (0.158734 0.11636 0) (0.136859 0.113942 0) (0.115865 0.110989 0) (0.0957022 0.107395 0) (0.0763102 0.10301 0) (0.0576297 0.0976248 0) (0.0396282 0.0909596 0) (0.0223393 0.082647 0) (0.00592868 0.0722142 0) (-0.00919076 0.059081 0) (-0.0221616 0.0426363 0) (-0.0313671 0.0226137 0) (-0.034805 1.6263e-19 0) (-0.0313671 -0.0226137 0) (-0.0221616 -0.0426363 0) (-0.00919076 -0.059081 0) (0.00592868 -0.0722142 0) (0.0223393 -0.082647 0) (0.0396282 -0.0909596 0) (0.0576297 -0.0976248 0) (0.0763102 -0.10301 0) (0.0957022 -0.107395 0) (0.115865 -0.110989 0) (0.136859 -0.113942 0) (0.158734 -0.11636 0) (0.18152 -0.118314 0) (0.205223 -0.11985 0) (0.229833 -0.120999 0) (0.255317 -0.12178 0) (0.281626 -0.12221 0) (0.308695 -0.122303 0) (0.336447 -0.122072 0) (0.364791 -0.121533 0) (0.393626 -0.120704 0) (0.422841 -0.119606 0) (0.452318 -0.11826 0) (0.481935 -0.116691 0) (0.511566 -0.114925 0) (0.541084 -0.112988 0) (0.570365 -0.110908 0) (0.599286 -0.108712 0) (0.627733 -0.106427 0) (0.655595 -0.104077 0) (0.682774 -0.101689 0) (0.709181 -0.0992838 0) (0.734736 -0.0968837 0) (0.759374 -0.0945078 0) (0.783042 -0.0921726 0) (0.8057 -0.08989 0) (0.827328 -0.0876644 0) (0.847922 -0.0854862 0) (0.867511 -0.0833235 0) (0.886152 -0.0811109 0) (0.903944 -0.0787387 0) (0.921019 -0.0760439 0) (0.937533 -0.0728012 0) (0.953644 -0.0687071 0) (0.969486 -0.0633471 0) (0.985129 -0.0561268 0) (1.00039 -0.0461031 0) (1.01513 -0.0317768 0) (1.0234 -0.0111141 0) (1.01614 0.0323054 0) (1.0014 0.0470955 0) (0.98606 0.0575065 0) (0.970296 0.0650411 0) (0.954321 0.0706499 0) (0.938084 0.0749349 0) (0.92146 0.0783177 0) (0.904299 0.0811083 0) (0.886445 0.0835394 0) (0.867763 0.0857824 0) (0.848151 0.0879554 0) (0.827544 0.0901316 0) (0.805909 0.0923489 0) (0.783246 0.0946206 0) (0.759575 0.0969446 0) (0.734934 0.0993099 0) (0.709375 0.1017 0) (0.682964 0.104097 0) (0.65578 0.106478 0) (0.627911 0.10882 0) (0.599458 0.1111 0) (0.570529 0.113291 0) (0.541239 0.115366 0) (0.51171 0.117299 0) (0.482068 0.119062 0) (0.452437 0.120628 0) (0.422945 0.121971 0) (0.393714 0.123068 0) (0.36486 0.123894 0) (0.336495 0.124431 0) (0.308719 0.124659 0) (0.281623 0.124564 0) (0.255284 0.124129 0) (0.229766 0.123341 0) (0.205117 0.122183 0) (0.181368 0.120632 0) (0.158528 0.118655 0) (0.136588 0.116202 0) (0.115516 0.113198 0) (0.0952612 0.10953 0) (0.0757625 0.105042 0) (0.0569632 0.0995193 0) (0.0388368 0.0926771 0) (0.021426 0.0841441 0) (0.00490972 0.0734468 0) (-0.0102829 0.06001 0) (-0.0232789 0.0432382 0) (-0.0324605 0.0228972 0) (-0.0358734 1.21973e-19 0) (-0.0324605 -0.0228972 0) (-0.0232789 -0.0432382 0) (-0.0102829 -0.06001 0) (0.00490972 -0.0734468 0) (0.021426 -0.0841441 0) (0.0388368 -0.0926771 0) (0.0569632 -0.0995193 0) (0.0757625 -0.105042 0) (0.0952612 -0.10953 0) (0.115516 -0.113198 0) (0.136588 -0.116202 0) (0.158528 -0.118655 0) (0.181368 -0.120632 0) (0.205117 -0.122183 0) (0.229766 -0.123341 0) (0.255284 -0.124129 0) (0.281623 -0.124564 0) (0.308719 -0.124659 0) (0.336495 -0.124431 0) (0.36486 -0.123894 0) (0.393714 -0.123068 0) (0.422945 -0.121971 0) (0.452437 -0.120628 0) (0.482068 -0.119062 0) (0.51171 -0.117299 0) (0.541239 -0.115366 0) (0.570529 -0.113291 0) (0.599458 -0.1111 0) (0.627911 -0.10882 0) (0.65578 -0.106478 0) (0.682964 -0.104097 0) (0.709375 -0.1017 0) (0.734934 -0.0993099 0) (0.759575 -0.0969446 0) (0.783246 -0.0946206 0) (0.805909 -0.0923489 0) (0.827544 -0.0901316 0) (0.848151 -0.0879554 0) (0.867763 -0.0857824 0) (0.886445 -0.0835394 0) (0.904299 -0.0811083 0) (0.92146 -0.0783177 0) (0.938084 -0.0749349 0) (0.954321 -0.0706499 0) (0.970296 -0.0650411 0) (0.98606 -0.0575065 0) (1.0014 -0.0470955 0) (1.01614 -0.0323054 0) (1.02417 -0.0112344 0) (1.01717 0.0328253 0) (1.00243 0.0480819 0) (0.987021 0.0588859 0) (0.971138 0.0667423 0) (0.95503 0.0726082 0) (0.938663 0.0770926 0) (0.921926 0.0806238 0) (0.904673 0.083518 0) (0.886752 0.0860147 0) (0.868026 0.0882932 0) (0.848387 0.09048 0) (0.827764 0.0926562 0) (0.806122 0.094866 0) (0.783454 0.0971268 0) (0.75978 0.0994393 0) (0.735135 0.101793 0) (0.709573 0.104174 0) (0.683157 0.106561 0) (0.655968 0.108934 0) (0.628093 0.11127 0) (0.599633 0.113543 0) (0.570696 0.115729 0) (0.541397 0.117799 0) (0.511858 0.119728 0) (0.482203 0.121487 0) (0.452559 0.12305 0) (0.423052 0.12439 0) (0.393803 0.125484 0) (0.36493 0.126308 0) (0.336543 0.126843 0) (0.308743 0.127068 0) (0.28162 0.126969 0) (0.25525 0.12653 0) (0.229697 0.125735 0) (0.205007 0.124566 0) (0.18121 0.122999 0) (0.158314 0.120997 0) (0.136307 0.118506 0) (0.115154 0.115447 0) (0.094803 0.1117 0) (0.0751942 0.107104 0) (0.0562736 0.101437 0) (0.0380204 0.0944119 0) (0.0204873 0.0856525 0) (0.00386639 0.0746855 0) (-0.0113972 0.0609409 0) (-0.0244159 0.0438397 0) (-0.0335715 0.02318 0) (-0.0369588 9.48677e-20 0) (-0.0335715 -0.02318 0) (-0.0244159 -0.0438397 0) (-0.0113972 -0.0609409 0) (0.00386639 -0.0746855 0) (0.0204873 -0.0856525 0) (0.0380204 -0.0944119 0) (0.0562736 -0.101437 0) (0.0751942 -0.107104 0) (0.094803 -0.1117 0) (0.115154 -0.115447 0) (0.136307 -0.118506 0) (0.158314 -0.120997 0) (0.18121 -0.122999 0) (0.205007 -0.124566 0) (0.229697 -0.125735 0) (0.25525 -0.12653 0) (0.28162 -0.126969 0) (0.308743 -0.127068 0) (0.336543 -0.126843 0) (0.36493 -0.126308 0) (0.393803 -0.125484 0) (0.423052 -0.12439 0) (0.452559 -0.12305 0) (0.482203 -0.121487 0) (0.511858 -0.119728 0) (0.541397 -0.117799 0) (0.570696 -0.115729 0) (0.599633 -0.113543 0) (0.628093 -0.11127 0) (0.655968 -0.108934 0) (0.683157 -0.106561 0) (0.709573 -0.104174 0) (0.735135 -0.101793 0) (0.75978 -0.0994393 0) (0.783454 -0.0971268 0) (0.806122 -0.094866 0) (0.827764 -0.0926562 0) (0.848387 -0.09048 0) (0.868026 -0.0882932 0) (0.886752 -0.0860147 0) (0.904673 -0.083518 0) (0.921926 -0.0806238 0) (0.938663 -0.0770926 0) (0.95503 -0.0726082 0) (0.971138 -0.0667423 0) (0.987021 -0.0588859 0) (1.00243 -0.0480819 0) (1.01717 -0.0328253 0) (1.02495 -0.0113525 0) (1.01822 0.0333367 0) (1.00349 0.0490621 0) (0.988013 0.0602647 0) (0.972013 0.0684504 0) (0.955772 0.0745816 0) (0.939274 0.0792739 0) (0.922418 0.0829618 0) (0.905069 0.0859675 0) (0.887075 0.0885369 0) (0.868299 0.0908564 0) (0.84863 0.0930609 0) (0.82799 0.0952393 0) (0.806338 0.0974425 0) (0.783666 0.0996927 0) (0.759988 0.101993 0) (0.73534 0.104336 0) (0.709773 0.106705 0) (0.683354 0.109083 0) (0.656159 0.111448 0) (0.628279 0.113776 0) (0.599811 0.116043 0) (0.570866 0.118222 0) (0.541558 0.120288 0) (0.512008 0.122212 0) (0.482341 0.123968 0) (0.452683 0.125527 0) (0.423161 0.126865 0) (0.393894 0.127956 0) (0.365002 0.128777 0) (0.336593 0.129309 0) (0.308768 0.129532 0) (0.281616 0.129429 0) (0.255214 0.128984 0) (0.229625 0.128181 0) (0.204893 0.127001 0) (0.181047 0.125415 0) (0.158092 0.123386 0) (0.136014 0.120855 0) (0.114776 0.117736 0) (0.0943267 0.113905 0) (0.0746046 0.109195 0) (0.0555599 0.103379 0) (0.0371785 0.0961641 0) (0.0195228 0.0871722 0) (0.00279825 0.0759301 0) (-0.0125342 0.0618738 0) (-0.0255728 0.044441 0) (-0.0347006 0.0234621 0) (-0.0380618 1.21973e-19 0) (-0.0347006 -0.0234621 0) (-0.0255728 -0.044441 0) (-0.0125342 -0.0618738 0) (0.00279825 -0.0759301 0) (0.0195228 -0.0871722 0) (0.0371785 -0.0961641 0) (0.0555599 -0.103379 0) (0.0746046 -0.109195 0) (0.0943267 -0.113905 0) (0.114776 -0.117736 0) (0.136014 -0.120855 0) (0.158092 -0.123386 0) (0.181047 -0.125415 0) (0.204893 -0.127001 0) (0.229625 -0.128181 0) (0.255214 -0.128984 0) (0.281616 -0.129429 0) (0.308768 -0.129532 0) (0.336593 -0.129309 0) (0.365002 -0.128777 0) (0.393894 -0.127956 0) (0.423161 -0.126865 0) (0.452683 -0.125527 0) (0.482341 -0.123968 0) (0.512008 -0.122212 0) (0.541558 -0.120288 0) (0.570866 -0.118222 0) (0.599811 -0.116043 0) (0.628279 -0.113776 0) (0.656159 -0.111448 0) (0.683354 -0.109083 0) (0.709773 -0.106705 0) (0.73534 -0.104336 0) (0.759988 -0.101993 0) (0.783666 -0.0996927 0) (0.806338 -0.0974425 0) (0.82799 -0.0952393 0) (0.84863 -0.0930609 0) (0.868299 -0.0908564 0) (0.887075 -0.0885369 0) (0.905069 -0.0859675 0) (0.922418 -0.0829618 0) (0.939274 -0.0792739 0) (0.955772 -0.0745816 0) (0.972013 -0.0684504 0) (0.988013 -0.0602647 0) (1.00349 -0.0490621 0) (1.01822 -0.0333367 0) (1.02575 -0.0114684 0) (1.01929 0.0338398 0) (1.00458 0.0500362 0) (0.989036 0.0616428 0) (0.972922 0.0701651 0) (0.956548 0.0765695 0) (0.939915 0.0814782 0) (0.922938 0.0853314 0) (0.905486 0.0884567 0) (0.887415 0.0911058 0) (0.868585 0.0934722 0) (0.848881 0.0956986 0) (0.828221 0.0978819 0) (0.806559 0.10008 0) (0.78388 0.10232 0) (0.760198 0.104608 0) (0.735547 0.106939 0) (0.709977 0.109297 0) (0.683553 0.111665 0) (0.656354 0.11402 0) (0.628467 0.116341 0) (0.599993 0.1186 0) (0.571039 0.120774 0) (0.541721 0.122834 0) (0.512161 0.124754 0) (0.482482 0.126505 0) (0.45281 0.128061 0) (0.423271 0.129395 0) (0.393987 0.130484 0) (0.365074 0.131302 0) (0.336643 0.131831 0) (0.308792 0.13205 0) (0.281612 0.131943 0) (0.255177 0.131493 0) (0.22955 0.130681 0) (0.204775 0.129488 0) (0.180877 0.127883 0) (0.157861 0.125824 0) (0.135709 0.123249 0) (0.114384 0.120066 0) (0.0938315 0.116146 0) (0.0739928 0.111316 0) (0.0548215 0.105345 0) (0.0363104 0.0979335 0) (0.0185319 0.0887032 0) (0.00170486 0.0771807 0) (-0.0136942 0.0628087 0) (-0.0267502 0.045042 0) (-0.0358484 0.0237438 0) (-0.039183 1.21973e-19 0) (-0.0358484 -0.0237438 0) (-0.0267502 -0.045042 0) (-0.0136942 -0.0628087 0) (0.00170486 -0.0771807 0) (0.0185319 -0.0887032 0) (0.0363104 -0.0979335 0) (0.0548215 -0.105345 0) (0.0739928 -0.111316 0) (0.0938315 -0.116146 0) (0.114384 -0.120066 0) (0.135709 -0.123249 0) (0.157861 -0.125824 0) (0.180877 -0.127883 0) (0.204775 -0.129488 0) (0.22955 -0.130681 0) (0.255177 -0.131493 0) (0.281612 -0.131943 0) (0.308792 -0.13205 0) (0.336643 -0.131831 0) (0.365074 -0.131302 0) (0.393987 -0.130484 0) (0.423271 -0.129395 0) (0.45281 -0.128061 0) (0.482482 -0.126505 0) (0.512161 -0.124754 0) (0.541721 -0.122834 0) (0.571039 -0.120774 0) (0.599993 -0.1186 0) (0.628467 -0.116341 0) (0.656354 -0.11402 0) (0.683553 -0.111665 0) (0.709977 -0.109297 0) (0.735547 -0.106939 0) (0.760198 -0.104608 0) (0.78388 -0.10232 0) (0.806559 -0.10008 0) (0.828221 -0.0978819 0) (0.848881 -0.0956986 0) (0.868585 -0.0934722 0) (0.887415 -0.0911058 0) (0.905486 -0.0884567 0) (0.922938 -0.0853314 0) (0.939915 -0.0814782 0) (0.956548 -0.0765695 0) (0.972922 -0.0701651 0) (0.989036 -0.0616428 0) (1.00458 -0.0500362 0) (1.01929 -0.0338398 0) (1.02657 -0.0115822 0) (1.02038 0.0343348 0) (1.0057 0.0510039 0) (0.99009 0.0630199 0) (0.973864 0.0718859 0) (0.957357 0.0785717 0) (0.940589 0.0837051 0) (0.923487 0.087732 0) (0.905928 0.090985 0) (0.887774 0.0937214 0) (0.868884 0.0961409 0) (0.849142 0.0983939 0) (0.828459 0.100585 0) (0.806784 0.102779 0) (0.784099 0.105009 0) (0.760412 0.107286 0) (0.735758 0.109604 0) (0.710184 0.11195 0) (0.683756 0.114307 0) (0.656552 0.116654 0) (0.628659 0.118965 0) (0.600178 0.121218 0) (0.571216 0.123385 0) (0.541888 0.12544 0) (0.512317 0.127354 0) (0.482625 0.129101 0) (0.452939 0.130653 0) (0.423384 0.131984 0) (0.394082 0.133069 0) (0.365148 0.133885 0) (0.336694 0.13441 0) (0.308817 0.134626 0) (0.281607 0.134514 0) (0.255139 0.134057 0) (0.229473 0.133236 0) (0.204653 0.132028 0) (0.180701 0.130402 0) (0.157621 0.128311 0) (0.135392 0.125688 0) (0.113975 0.122437 0) (0.0933165 0.118423 0) (0.073358 0.113467 0) (0.0540577 0.107334 0) (0.0354154 0.09972 0) (0.0175141 0.0902453 0) (0.000585749 0.0784373 0) (-0.0148777 0.0637456 0) (-0.0279485 0.0456429 0) (-0.0370153 0.0240249 0) (-0.0403229 1.0842e-19 0) (-0.0370153 -0.0240249 0) (-0.0279485 -0.0456429 0) (-0.0148777 -0.0637456 0) (0.000585749 -0.0784373 0) (0.0175141 -0.0902453 0) (0.0354154 -0.09972 0) (0.0540577 -0.107334 0) (0.073358 -0.113467 0) (0.0933165 -0.118423 0) (0.113975 -0.122437 0) (0.135392 -0.125688 0) (0.157621 -0.128311 0) (0.180701 -0.130402 0) (0.204653 -0.132028 0) (0.229473 -0.133236 0) (0.255139 -0.134057 0) (0.281607 -0.134514 0) (0.308817 -0.134626 0) (0.336694 -0.13441 0) (0.365148 -0.133885 0) (0.394082 -0.133069 0) (0.423384 -0.131984 0) (0.452939 -0.130653 0) (0.482625 -0.129101 0) (0.512317 -0.127354 0) (0.541888 -0.12544 0) (0.571216 -0.123385 0) (0.600178 -0.121218 0) (0.628659 -0.118965 0) (0.656552 -0.116654 0) (0.683756 -0.114307 0) (0.710184 -0.11195 0) (0.735758 -0.109604 0) (0.760412 -0.107286 0) (0.784099 -0.105009 0) (0.806784 -0.102779 0) (0.828459 -0.100585 0) (0.849142 -0.0983939 0) (0.868884 -0.0961409 0) (0.887774 -0.0937214 0) (0.905928 -0.090985 0) (0.923487 -0.087732 0) (0.940589 -0.0837051 0) (0.957357 -0.0785717 0) (0.973864 -0.0718859 0) (0.99009 -0.0630199 0) (1.0057 -0.0510039 0) (1.02038 -0.0343348 0) (1.02741 -0.0116941 0) (1.02148 0.0348219 0) (1.00684 0.0519654 0) (0.991175 0.0643957 0) (0.974841 0.0736125 0) (0.958202 0.0805876 0) (0.941296 0.0859542 0) (0.924065 0.0901633 0) (0.906395 0.0935523 0) (0.888152 0.0963835 0) (0.869198 0.0988627 0) (0.849412 0.101147 0) (0.828704 0.10335 0) (0.807014 0.105542 0) (0.78432 0.107763 0) (0.76063 0.110027 0) (0.735971 0.112332 0) (0.710394 0.114667 0) (0.683962 0.117013 0) (0.656753 0.119349 0) (0.628854 0.121652 0) (0.600366 0.123897 0) (0.571395 0.126057 0) (0.542058 0.128105 0) (0.512476 0.130015 0) (0.482771 0.131757 0) (0.453071 0.133305 0) (0.423499 0.134632 0) (0.394178 0.135713 0) (0.365224 0.136526 0) (0.336745 0.137048 0) (0.308842 0.137259 0) (0.281601 0.137142 0) (0.255098 0.136678 0) (0.229392 0.135847 0) (0.204525 0.134624 0) (0.180517 0.132974 0) (0.15737 0.130848 0) (0.135061 0.128173 0) (0.11355 0.124849 0) (0.0927808 0.120736 0) (0.0726994 0.115648 0) (0.0532676 0.109346 0) (0.034493 0.101524 0) (0.0164688 0.0917985 0) (-0.000559541 0.0796998 0) (-0.0160852 0.0646846 0) (-0.0291682 0.0462438 0) (-0.0382019 0.0243056 0) (-0.041482 6.77626e-20 0) (-0.0382019 -0.0243056 0) (-0.0291682 -0.0462438 0) (-0.0160852 -0.0646846 0) (-0.000559541 -0.0796998 0) (0.0164688 -0.0917985 0) (0.034493 -0.101524 0) (0.0532676 -0.109346 0) (0.0726994 -0.115648 0) (0.0927808 -0.120736 0) (0.11355 -0.124849 0) (0.135061 -0.128173 0) (0.15737 -0.130848 0) (0.180517 -0.132974 0) (0.204525 -0.134624 0) (0.229392 -0.135847 0) (0.255098 -0.136678 0) (0.281601 -0.137142 0) (0.308842 -0.137259 0) (0.336745 -0.137048 0) (0.365224 -0.136526 0) (0.394178 -0.135713 0) (0.423499 -0.134632 0) (0.453071 -0.133305 0) (0.482771 -0.131757 0) (0.512476 -0.130015 0) (0.542058 -0.128105 0) (0.571395 -0.126057 0) (0.600366 -0.123897 0) (0.628854 -0.121652 0) (0.656753 -0.119349 0) (0.683962 -0.117013 0) (0.710394 -0.114667 0) (0.735971 -0.112332 0) (0.76063 -0.110027 0) (0.78432 -0.107763 0) (0.807014 -0.105542 0) (0.828704 -0.10335 0) (0.849412 -0.101147 0) (0.869198 -0.0988627 0) (0.888152 -0.0963835 0) (0.906395 -0.0935523 0) (0.924065 -0.0901633 0) (0.941296 -0.0859542 0) (0.958202 -0.0805876 0) (0.974841 -0.0736125 0) (0.991175 -0.0643957 0) (1.00684 -0.0519654 0) (1.02148 -0.0348219 0) (1.02826 -0.0118041 0) (1.02261 0.0353013 0) (1.008 0.0529205 0) (0.992292 0.0657702 0) (0.975853 0.0753447 0) (0.959082 0.0826168 0) (0.942038 0.088225 0) (0.924675 0.0926248 0) (0.906889 0.0961582 0) (0.888552 0.099092 0) (0.869528 0.101638 0) (0.849694 0.103959 0) (0.828956 0.106176 0) (0.807249 0.108369 0) (0.784546 0.110582 0) (0.76085 0.112834 0) (0.736188 0.115127 0) (0.710608 0.117448 0) (0.684172 0.119782 0) (0.656957 0.122108 0) (0.629052 0.124402 0) (0.600557 0.126638 0) (0.571578 0.128791 0) (0.542231 0.130833 0) (0.512637 0.132737 0) (0.48292 0.134474 0) (0.453205 0.136018 0) (0.423617 0.137341 0) (0.394276 0.138419 0) (0.365301 0.139227 0) (0.336797 0.139745 0) (0.308866 0.139952 0) (0.281595 0.13983 0) (0.255056 0.139358 0) (0.229308 0.138515 0) (0.204392 0.137275 0) (0.180326 0.135599 0) (0.157109 0.133434 0) (0.134716 0.130705 0) (0.113106 0.127303 0) (0.0922235 0.123084 0) (0.072016 0.117859 0) (0.0524506 0.111381 0) (0.0335424 0.103344 0) (0.0153955 0.0933627 0) (-0.00173149 0.0809682 0) (-0.017317 0.0656257 0) (-0.0304097 0.0468447 0) (-0.0394087 0.024586 0) (-0.042661 1.49078e-19 0) (-0.0394087 -0.024586 0) (-0.0304097 -0.0468447 0) (-0.017317 -0.0656257 0) (-0.00173149 -0.0809682 0) (0.0153955 -0.0933627 0) (0.0335424 -0.103344 0) (0.0524506 -0.111381 0) (0.072016 -0.117859 0) (0.0922235 -0.123084 0) (0.113106 -0.127303 0) (0.134716 -0.130705 0) (0.157109 -0.133434 0) (0.180326 -0.135599 0) (0.204392 -0.137275 0) (0.229308 -0.138515 0) (0.255056 -0.139358 0) (0.281595 -0.13983 0) (0.308866 -0.139952 0) (0.336797 -0.139745 0) (0.365301 -0.139227 0) (0.394276 -0.138419 0) (0.423617 -0.137341 0) (0.453205 -0.136018 0) (0.48292 -0.134474 0) (0.512637 -0.132737 0) (0.542231 -0.130833 0) (0.571578 -0.128791 0) (0.600557 -0.126638 0) (0.629052 -0.124402 0) (0.656957 -0.122108 0) (0.684172 -0.119782 0) (0.710608 -0.117448 0) (0.736188 -0.115127 0) (0.76085 -0.112834 0) (0.784546 -0.110582 0) (0.807249 -0.108369 0) (0.828956 -0.106176 0) (0.849694 -0.103959 0) (0.869528 -0.101638 0) (0.888552 -0.099092 0) (0.906889 -0.0961582 0) (0.924675 -0.0926248 0) (0.942038 -0.088225 0) (0.959082 -0.0826168 0) (0.975853 -0.0753447 0) (0.992292 -0.0657702 0) (1.008 -0.0529205 0) (1.02261 -0.0353013 0) (1.02914 -0.0119122 0) (1.02375 0.0357731 0) (1.0092 0.0538692 0) (0.993442 0.0671431 0) (0.9769 0.077082 0) (0.959999 0.0846591 0) (0.942815 0.0905171 0) (0.925317 0.0951161 0) (0.907411 0.0988022 0) (0.888974 0.101847 0) (0.869874 0.104466 0) (0.849988 0.10683 0) (0.829216 0.109067 0) (0.80749 0.111262 0) (0.784776 0.113468 0) (0.761074 0.115709 0) (0.736408 0.117988 0) (0.710824 0.120296 0) (0.684384 0.122618 0) (0.657165 0.124933 0) (0.629254 0.127216 0) (0.600751 0.129444 0) (0.571764 0.131589 0) (0.542408 0.133625 0) (0.512802 0.135522 0) (0.483072 0.137254 0) (0.453341 0.138793 0) (0.423736 0.140112 0) (0.394376 0.141186 0) (0.365378 0.141991 0) (0.33685 0.142504 0) (0.308891 0.142707 0) (0.281587 0.142577 0) (0.255011 0.142097 0) (0.22922 0.141242 0) (0.204253 0.139982 0) (0.180126 0.138278 0) (0.156836 0.136072 0) (0.134356 0.133283 0) (0.112643 0.129799 0) (0.0916438 0.125469 0) (0.071307 0.120099 0) (0.0516057 0.11344 0) (0.032563 0.105182 0) (0.0142936 0.094938 0) (-0.0029306 0.0822426 0) (-0.0185736 0.066569 0) (-0.0316735 0.0474458 0) (-0.0406363 0.0248661 0) (-0.0438604 1.89735e-19 0) (-0.0406363 -0.0248661 0) (-0.0316735 -0.0474458 0) (-0.0185736 -0.066569 0) (-0.0029306 -0.0822426 0) (0.0142936 -0.094938 0) (0.032563 -0.105182 0) (0.0516057 -0.11344 0) (0.071307 -0.120099 0) (0.0916438 -0.125469 0) (0.112643 -0.129799 0) (0.134356 -0.133283 0) (0.156836 -0.136072 0) (0.180126 -0.138278 0) (0.204253 -0.139982 0) (0.22922 -0.141242 0) (0.255011 -0.142097 0) (0.281587 -0.142577 0) (0.308891 -0.142707 0) (0.33685 -0.142504 0) (0.365378 -0.141991 0) (0.394376 -0.141186 0) (0.423736 -0.140112 0) (0.453341 -0.138793 0) (0.483072 -0.137254 0) (0.512802 -0.135522 0) (0.542408 -0.133625 0) (0.571764 -0.131589 0) (0.600751 -0.129444 0) (0.629254 -0.127216 0) (0.657165 -0.124933 0) (0.684384 -0.122618 0) (0.710824 -0.120296 0) (0.736408 -0.117988 0) (0.761074 -0.115709 0) (0.784776 -0.113468 0) (0.80749 -0.111262 0) (0.829216 -0.109067 0) (0.849988 -0.10683 0) (0.869874 -0.104466 0) (0.888974 -0.101847 0) (0.907411 -0.0988022 0) (0.925317 -0.0951161 0) (0.942815 -0.0905171 0) (0.959999 -0.0846591 0) (0.9769 -0.077082 0) (0.993442 -0.0671431 0) (1.0092 -0.0538692 0) (1.02375 -0.0357731 0) (1.03004 -0.0120187 0) (1.02492 0.0362377 0) (1.01042 0.0548115 0) (0.994624 0.0685141 0) (0.977983 0.0788243 0) (0.960953 0.086714 0) (0.943628 0.09283 0) (0.925993 0.0976368 0) (0.907962 0.101484 0) (0.889421 0.104647 0) (0.87024 0.107347 0) (0.850296 0.10976 0) (0.829486 0.112021 0) (0.807737 0.114222 0) (0.785011 0.116423 0) (0.761302 0.118653 0) (0.736632 0.120918 0) (0.711044 0.123213 0) (0.6846 0.125522 0) (0.657375 0.127825 0) (0.629459 0.130098 0) (0.600949 0.132316 0) (0.571954 0.134453 0) (0.542587 0.136482 0) (0.51297 0.138373 0) (0.483226 0.140099 0) (0.45348 0.141633 0) (0.423858 0.142947 0) (0.394478 0.144017 0) (0.365458 0.144817 0) (0.336904 0.145326 0) (0.308916 0.145523 0) (0.281578 0.145387 0) (0.254964 0.144897 0) (0.229128 0.144027 0) (0.204107 0.142747 0) (0.179917 0.141012 0) (0.15655 0.138762 0) (0.13398 0.135909 0) (0.112161 0.132336 0) (0.0910405 0.12789 0) (0.0705716 0.122369 0) (0.0507323 0.115523 0) (0.0315541 0.107036 0) (0.0131626 0.0965243 0) (-0.00415736 0.0835229 0) (-0.0198555 0.0675144 0) (-0.0329601 0.048047 0) (-0.0418853 0.025146 0) (-0.0450808 1.76183e-19 0) (-0.0418853 -0.025146 0) (-0.0329601 -0.048047 0) (-0.0198555 -0.0675144 0) (-0.00415736 -0.0835229 0) (0.0131626 -0.0965243 0) (0.0315541 -0.107036 0) (0.0507323 -0.115523 0) (0.0705716 -0.122369 0) (0.0910405 -0.12789 0) (0.112161 -0.132336 0) (0.13398 -0.135909 0) (0.15655 -0.138762 0) (0.179917 -0.141012 0) (0.204107 -0.142747 0) (0.229128 -0.144027 0) (0.254964 -0.144897 0) (0.281578 -0.145387 0) (0.308916 -0.145523 0) (0.336904 -0.145326 0) (0.365458 -0.144817 0) (0.394478 -0.144017 0) (0.423858 -0.142947 0) (0.45348 -0.141633 0) (0.483226 -0.140099 0) (0.51297 -0.138373 0) (0.542587 -0.136482 0) (0.571954 -0.134453 0) (0.600949 -0.132316 0) (0.629459 -0.130098 0) (0.657375 -0.127825 0) (0.6846 -0.125522 0) (0.711044 -0.123213 0) (0.736632 -0.120918 0) (0.761302 -0.118653 0) (0.785011 -0.116423 0) (0.807737 -0.114222 0) (0.829486 -0.112021 0) (0.850296 -0.10976 0) (0.87024 -0.107347 0) (0.889421 -0.104647 0) (0.907962 -0.101484 0) (0.925993 -0.0976368 0) (0.943628 -0.09283 0) (0.960953 -0.086714 0) (0.977983 -0.0788243 0) (0.994624 -0.0685141 0) (1.01042 -0.0548115 0) (1.02492 -0.0362377 0) (1.03096 -0.0121234 0) (1.02611 0.0366951 0) (1.01167 0.0557473 0) (0.995839 0.0698832 0) (0.979103 0.0805711 0) (0.961944 0.0887811 0) (0.944479 0.0951634 0) (0.926703 0.100186 0) (0.908544 0.104204 0) (0.889893 0.107494 0) (0.870625 0.110282 0) (0.850618 0.112751 0) (0.829765 0.115039 0) (0.807991 0.11725 0) (0.78525 0.119448 0) (0.761533 0.121667 0) (0.736858 0.123919 0) (0.711267 0.1262 0) (0.684819 0.128495 0) (0.65759 0.130786 0) (0.629667 0.133048 0) (0.60115 0.135257 0) (0.572146 0.137385 0) (0.542769 0.139406 0) (0.513141 0.14129 0) (0.483383 0.143011 0) (0.453622 0.144539 0) (0.423981 0.145849 0) (0.394581 0.146913 0) (0.365538 0.147709 0) (0.336958 0.148213 0) (0.30894 0.148404 0) (0.281568 0.14826 0) (0.254914 0.147759 0) (0.229031 0.146874 0) (0.203955 0.145571 0) (0.179698 0.143803 0) (0.156252 0.141503 0) (0.133587 0.138582 0) (0.111658 0.134916 0) (0.0904128 0.130347 0) (0.0698087 0.124669 0) (0.0498295 0.117628 0) (0.030515 0.108908 0) (0.0120018 0.0981215 0) (-0.00541229 0.0848091 0) (-0.0211633 0.0684621 0) (-0.0342701 0.0486484 0) (-0.0431561 0.0254257 0) (-0.0463229 1.76183e-19 0) (-0.0431561 -0.0254257 0) (-0.0342701 -0.0486484 0) (-0.0211633 -0.0684621 0) (-0.00541229 -0.0848091 0) (0.0120018 -0.0981215 0) (0.030515 -0.108908 0) (0.0498295 -0.117628 0) (0.0698087 -0.124669 0) (0.0904128 -0.130347 0) (0.111658 -0.134916 0) (0.133587 -0.138582 0) (0.156252 -0.141503 0) (0.179698 -0.143803 0) (0.203955 -0.145571 0) (0.229031 -0.146874 0) (0.254914 -0.147759 0) (0.281568 -0.14826 0) (0.30894 -0.148404 0) (0.336958 -0.148213 0) (0.365538 -0.147709 0) (0.394581 -0.146913 0) (0.423981 -0.145849 0) (0.453622 -0.144539 0) (0.483383 -0.143011 0) (0.513141 -0.14129 0) (0.542769 -0.139406 0) (0.572146 -0.137385 0) (0.60115 -0.135257 0) (0.629667 -0.133048 0) (0.65759 -0.130786 0) (0.684819 -0.128495 0) (0.711267 -0.1262 0) (0.736858 -0.123919 0) (0.761533 -0.121667 0) (0.78525 -0.119448 0) (0.807991 -0.11725 0) (0.829765 -0.115039 0) (0.850618 -0.112751 0) (0.870625 -0.110282 0) (0.889893 -0.107494 0) (0.908544 -0.104204 0) (0.926703 -0.100186 0) (0.944479 -0.0951634 0) (0.961944 -0.0887811 0) (0.979103 -0.0805711 0) (0.995839 -0.0698832 0) (1.01167 -0.0557473 0) (1.02611 -0.0366951 0) (1.0319 -0.0122266 0) (1.02731 0.0371456 0) (1.01295 0.0566766 0) (0.997088 0.0712502 0) (0.98026 0.0823223 0) (0.962975 0.09086 0) (0.945368 0.0975169 0) (0.92745 0.102765 0) (0.909159 0.10696 0) (0.890393 0.110386 0) (0.871032 0.11327 0) (0.850956 0.115801 0) (0.830057 0.118124 0) (0.808253 0.120347 0) (0.785495 0.122544 0) (0.761769 0.124753 0) (0.737088 0.126992 0) (0.711493 0.129259 0) (0.685041 0.13154 0) (0.657807 0.133818 0) (0.629879 0.136069 0) (0.601355 0.138267 0) (0.572342 0.140386 0) (0.542955 0.142399 0) (0.513314 0.144276 0) (0.483543 0.14599 0) (0.453766 0.147513 0) (0.424107 0.148817 0) (0.394687 0.149877 0) (0.365619 0.150667 0) (0.337013 0.151166 0) (0.308963 0.15135 0) (0.281556 0.151198 0) (0.254861 0.150685 0) (0.228929 0.149783 0) (0.203795 0.148455 0) (0.179468 0.14665 0) (0.155939 0.144298 0) (0.133175 0.141303 0) (0.111132 0.137539 0) (0.0897596 0.13284 0) (0.0690176 0.126999 0) (0.0488965 0.119757 0) (0.029445 0.110796 0) (0.0108106 0.0997296 0) (-0.00669592 0.0861012 0) (-0.0224973 0.0694121 0) (-0.035604 0.0492502 0) (-0.0444494 0.0257053 0) (-0.0475873 1.76183e-19 0) (-0.0444494 -0.0257053 0) (-0.035604 -0.0492502 0) (-0.0224973 -0.0694121 0) (-0.00669592 -0.0861012 0) (0.0108106 -0.0997296 0) (0.029445 -0.110796 0) (0.0488965 -0.119757 0) (0.0690176 -0.126999 0) (0.0897596 -0.13284 0) (0.111132 -0.137539 0) (0.133175 -0.141303 0) (0.155939 -0.144298 0) (0.179468 -0.14665 0) (0.203795 -0.148455 0) (0.228929 -0.149783 0) (0.254861 -0.150685 0) (0.281556 -0.151198 0) (0.308963 -0.15135 0) (0.337013 -0.151166 0) (0.365619 -0.150667 0) (0.394687 -0.149877 0) (0.424107 -0.148817 0) (0.453766 -0.147513 0) (0.483543 -0.14599 0) (0.513314 -0.144276 0) (0.542955 -0.142399 0) (0.572342 -0.140386 0) (0.601355 -0.138267 0) (0.629879 -0.136069 0) (0.657807 -0.133818 0) (0.685041 -0.13154 0) (0.711493 -0.129259 0) (0.737088 -0.126992 0) (0.761769 -0.124753 0) (0.785495 -0.122544 0) (0.808253 -0.120347 0) (0.830057 -0.118124 0) (0.850956 -0.115801 0) (0.871032 -0.11327 0) (0.890393 -0.110386 0) (0.909159 -0.10696 0) (0.92745 -0.102765 0) (0.945368 -0.0975169 0) (0.962975 -0.09086 0) (0.98026 -0.0823223 0) (0.997088 -0.0712502 0) (1.01295 -0.0566766 0) (1.02731 -0.0371456 0) (1.03287 -0.0123282 0) (1.02854 0.0375893 0) (1.01425 0.0575993 0) (0.99837 0.0726148 0) (0.981454 0.0840775 0) (0.964044 0.0929505 0) (0.946296 0.09989 0) (0.928234 0.105371 0) (0.909807 0.109753 0) (0.890921 0.113323 0) (0.871463 0.116312 0) (0.851312 0.118911 0) (0.830361 0.121274 0) (0.808523 0.123514 0) (0.785746 0.125712 0) (0.762009 0.127914 0) (0.737322 0.13014 0) (0.711722 0.132392 0) (0.685266 0.134659 0) (0.658028 0.136923 0) (0.630094 0.139162 0) (0.601563 0.141349 0) (0.572541 0.143459 0) (0.543144 0.145463 0) (0.513491 0.147333 0) (0.483706 0.14904 0) (0.453913 0.150556 0) (0.424235 0.151855 0) (0.394793 0.152909 0) (0.365702 0.153694 0) (0.337068 0.154186 0) (0.308987 0.154363 0) (0.281543 0.154202 0) (0.254804 0.153676 0) (0.228822 0.152755 0) (0.203627 0.151399 0) (0.179228 0.149554 0) (0.155611 0.147145 0) (0.132745 0.144073 0) (0.110584 0.140204 0) (0.08908 0.13537 0) (0.0681972 0.129359 0) (0.0479326 0.121909 0) (0.0283435 0.112701 0) (0.00958854 0.101349 0) (-0.00800879 0.0873994 0) (-0.0238582 0.0703644 0) (-0.0369623 0.0498524 0) (-0.0457659 0.0259849 0) (-0.0488745 1.76183e-19 0) (-0.0457659 -0.0259849 0) (-0.0369623 -0.0498524 0) (-0.0238582 -0.0703644 0) (-0.00800879 -0.0873994 0) (0.00958854 -0.101349 0) (0.0283435 -0.112701 0) (0.0479326 -0.121909 0) (0.0681972 -0.129359 0) (0.08908 -0.13537 0) (0.110584 -0.140204 0) (0.132745 -0.144073 0) (0.155611 -0.147145 0) (0.179228 -0.149554 0) (0.203627 -0.151399 0) (0.228822 -0.152755 0) (0.254804 -0.153676 0) (0.281543 -0.154202 0) (0.308987 -0.154363 0) (0.337068 -0.154186 0) (0.365702 -0.153694 0) (0.394793 -0.152909 0) (0.424235 -0.151855 0) (0.453913 -0.150556 0) (0.483706 -0.14904 0) (0.513491 -0.147333 0) (0.543144 -0.145463 0) (0.572541 -0.143459 0) (0.601563 -0.141349 0) (0.630094 -0.139162 0) (0.658028 -0.136923 0) (0.685266 -0.134659 0) (0.711722 -0.132392 0) (0.737322 -0.13014 0) (0.762009 -0.127914 0) (0.785746 -0.125712 0) (0.808523 -0.123514 0) (0.830361 -0.121274 0) (0.851312 -0.118911 0) (0.871463 -0.116312 0) (0.890921 -0.113323 0) (0.909807 -0.109753 0) (0.928234 -0.105371 0) (0.946296 -0.09989 0) (0.964044 -0.0929505 0) (0.981454 -0.0840775 0) (0.99837 -0.0726148 0) (1.01425 -0.0575993 0) (1.02854 -0.0375893 0) (1.03386 -0.0124284 0) (1.02979 0.0380265 0) (1.01559 0.0585156 0) (0.999686 0.073977 0) (0.982686 0.0858365 0) (0.965154 0.0950522 0) (0.947265 0.102282 0) (0.929057 0.108005 0) (0.91049 0.112583 0) (0.89148 0.116305 0) (0.871918 0.119406 0) (0.851687 0.122082 0) (0.830678 0.12449 0) (0.808803 0.126753 0) (0.786003 0.128955 0) (0.762253 0.13115 0) (0.737559 0.133364 0) (0.711954 0.135601 0) (0.685494 0.137853 0) (0.658251 0.140103 0) (0.630312 0.142329 0) (0.601774 0.144505 0) (0.572743 0.146605 0) (0.543336 0.148599 0) (0.513671 0.150461 0) (0.483871 0.152161 0) (0.454062 0.153671 0) (0.424365 0.154963 0) (0.394902 0.156012 0) (0.365785 0.156791 0) (0.337123 0.157277 0) (0.309009 0.157445 0) (0.281527 0.157273 0) (0.254744 0.156733 0) (0.228709 0.155791 0) (0.20345 0.154405 0) (0.178975 0.152517 0) (0.155267 0.150047 0) (0.132295 0.146891 0) (0.110012 0.142912 0) (0.088373 0.137936 0) (0.0673467 0.131748 0) (0.0469369 0.124084 0) (0.0272098 0.114622 0) (0.0083349 0.102978 0) (-0.00935144 0.0887034 0) (-0.0252464 0.0713192 0) (-0.0383457 0.0504551 0) (-0.0471061 0.0262645 0) (-0.0501853 2.03288e-19 0) (-0.0471061 -0.0262645 0) (-0.0383457 -0.0504551 0) (-0.0252464 -0.0713192 0) (-0.00935144 -0.0887034 0) (0.0083349 -0.102978 0) (0.0272098 -0.114622 0) (0.0469369 -0.124084 0) (0.0673467 -0.131748 0) (0.088373 -0.137936 0) (0.110012 -0.142912 0) (0.132295 -0.146891 0) (0.155267 -0.150047 0) (0.178975 -0.152517 0) (0.20345 -0.154405 0) (0.228709 -0.155791 0) (0.254744 -0.156733 0) (0.281527 -0.157273 0) (0.309009 -0.157445 0) (0.337123 -0.157277 0) (0.365785 -0.156791 0) (0.394902 -0.156012 0) (0.424365 -0.154963 0) (0.454062 -0.153671 0) (0.483871 -0.152161 0) (0.513671 -0.150461 0) (0.543336 -0.148599 0) (0.572743 -0.146605 0) (0.601774 -0.144505 0) (0.630312 -0.142329 0) (0.658251 -0.140103 0) (0.685494 -0.137853 0) (0.711954 -0.135601 0) (0.737559 -0.133364 0) (0.762253 -0.13115 0) (0.786003 -0.128955 0) (0.808803 -0.126753 0) (0.830678 -0.12449 0) (0.851687 -0.122082 0) (0.871918 -0.119406 0) (0.89148 -0.116305 0) (0.91049 -0.112583 0) (0.929057 -0.108005 0) (0.947265 -0.102282 0) (0.965154 -0.0950522 0) (0.982686 -0.0858365 0) (0.999686 -0.073977 0) (1.01559 -0.0585156 0) (1.02979 -0.0380265 0) (1.03487 -0.0125272 0) (1.03107 0.0384574 0) (1.01695 0.0594253 0) (1.00104 0.0753366 0) (0.983957 0.087599 0) (0.966305 0.0971648 0) (0.948274 0.104694 0) (0.929919 0.110666 0) (0.91121 0.115449 0) (0.892071 0.119331 0) (0.8724 0.122553 0) (0.852083 0.125313 0) (0.831011 0.127774 0) (0.809094 0.130063 0) (0.786268 0.132273 0) (0.762503 0.134464 0) (0.7378 0.136666 0) (0.71219 0.138889 0) (0.685726 0.141125 0) (0.658478 0.143361 0) (0.630533 0.145573 0) (0.601988 0.147737 0) (0.572949 0.149826 0) (0.543531 0.151811 0) (0.513854 0.153664 0) (0.48404 0.155356 0) (0.454213 0.156859 0) (0.424497 0.158145 0) (0.395012 0.159187 0) (0.36587 0.159959 0) (0.337178 0.160438 0) (0.30903 0.160598 0) (0.281509 0.160414 0) (0.254679 0.159858 0) (0.228589 0.158893 0) (0.203264 0.157474 0) (0.178709 0.155539 0) (0.154907 0.153003 0) (0.131823 0.149759 0) (0.109415 0.145663 0) (0.0876374 0.140539 0) (0.0664651 0.134167 0) (0.0459085 0.126282 0) (0.026043 0.116561 0) (0.00704907 0.104619 0) (-0.0107245 0.0900135 0) (-0.0266626 0.0722764 0) (-0.0397546 0.0510584 0) (-0.0484706 0.0265442 0) (-0.0515204 2.30393e-19 0) (-0.0484706 -0.0265442 0) (-0.0397546 -0.0510584 0) (-0.0266626 -0.0722764 0) (-0.0107245 -0.0900135 0) (0.00704907 -0.104619 0) (0.026043 -0.116561 0) (0.0459085 -0.126282 0) (0.0664651 -0.134167 0) (0.0876374 -0.140539 0) (0.109415 -0.145663 0) (0.131823 -0.149759 0) (0.154907 -0.153003 0) (0.178709 -0.155539 0) (0.203264 -0.157474 0) (0.228589 -0.158893 0) (0.254679 -0.159858 0) (0.281509 -0.160414 0) (0.30903 -0.160598 0) (0.337178 -0.160438 0) (0.36587 -0.159959 0) (0.395012 -0.159187 0) (0.424497 -0.158145 0) (0.454213 -0.156859 0) (0.48404 -0.155356 0) (0.513854 -0.153664 0) (0.543531 -0.151811 0) (0.572949 -0.149826 0) (0.601988 -0.147737 0) (0.630533 -0.145573 0) (0.658478 -0.143361 0) (0.685726 -0.141125 0) (0.71219 -0.138889 0) (0.7378 -0.136666 0) (0.762503 -0.134464 0) (0.786268 -0.132273 0) (0.809094 -0.130063 0) (0.831011 -0.127774 0) (0.852083 -0.125313 0) (0.8724 -0.122553 0) (0.892071 -0.119331 0) (0.91121 -0.115449 0) (0.929919 -0.110666 0) (0.948274 -0.104694 0) (0.966305 -0.0971648 0) (0.983957 -0.087599 0) (1.00104 -0.0753366 0) (1.01695 -0.0594253 0) (1.03107 -0.0384574 0) (1.03591 -0.0126247 0) (1.03237 0.0388821 0) (1.01835 0.0603285 0) (1.00242 0.0766935 0) (0.985267 0.0893648 0) (0.967497 0.0992878 0) (0.949326 0.107123 0) (0.930822 0.113355 0) (0.911968 0.11835 0) (0.892696 0.122402 0) (0.87291 0.125753 0) (0.852501 0.128605 0) (0.83136 0.131125 0) (0.809396 0.133446 0) (0.78654 0.135668 0) (0.762758 0.137856 0) (0.738045 0.140048 0) (0.71243 0.142256 0) (0.685961 0.144477 0) (0.658708 0.146698 0) (0.630758 0.148896 0) (0.602205 0.151047 0) (0.573158 0.153124 0) (0.54373 0.155099 0) (0.51404 0.156943 0) (0.484211 0.158627 0) (0.454367 0.160122 0) (0.424632 0.161401 0) (0.395123 0.162436 0) (0.365955 0.163201 0) (0.337233 0.163672 0) (0.30905 0.163822 0) (0.281488 0.163626 0) (0.25461 0.163051 0) (0.228461 0.162062 0) (0.203067 0.160606 0) (0.178428 0.15862 0) (0.154528 0.156015 0) (0.13133 0.152676 0) (0.108791 0.148457 0) (0.0868723 0.143178 0) (0.0655515 0.136616 0) (0.0448467 0.128503 0) (0.0248425 0.118516 0) (0.00573042 0.106271 0) (-0.0121284 0.0913296 0) (-0.0281073 0.0732361 0) (-0.0411897 0.0516623 0) (-0.0498602 0.026824 0) (-0.0528804 2.57498e-19 0) (-0.0498602 -0.026824 0) (-0.0411897 -0.0516623 0) (-0.0281073 -0.0732361 0) (-0.0121284 -0.0913296 0) (0.00573042 -0.106271 0) (0.0248425 -0.118516 0) (0.0448467 -0.128503 0) (0.0655515 -0.136616 0) (0.0868723 -0.143178 0) (0.108791 -0.148457 0) (0.13133 -0.152676 0) (0.154528 -0.156015 0) (0.178428 -0.15862 0) (0.203067 -0.160606 0) (0.228461 -0.162062 0) (0.25461 -0.163051 0) (0.281488 -0.163626 0) (0.30905 -0.163822 0) (0.337233 -0.163672 0) (0.365955 -0.163201 0) (0.395123 -0.162436 0) (0.424632 -0.161401 0) (0.454367 -0.160122 0) (0.484211 -0.158627 0) (0.51404 -0.156943 0) (0.54373 -0.155099 0) (0.573158 -0.153124 0) (0.602205 -0.151047 0) (0.630758 -0.148896 0) (0.658708 -0.146698 0) (0.685961 -0.144477 0) (0.71243 -0.142256 0) (0.738045 -0.140048 0) (0.762758 -0.137856 0) (0.78654 -0.135668 0) (0.809396 -0.133446 0) (0.83136 -0.131125 0) (0.852501 -0.128605 0) (0.87291 -0.125753 0) (0.892696 -0.122402 0) (0.911968 -0.11835 0) (0.930822 -0.113355 0) (0.949326 -0.107123 0) (0.967497 -0.0992878 0) (0.985267 -0.0893648 0) (1.00242 -0.0766935 0) (1.01835 -0.0603285 0) (1.03237 -0.0388821 0) (1.03698 -0.012721 0) (1.03369 0.0393009 0) (1.01977 0.0612252 0) (1.00384 0.0780475 0) (0.986616 0.0911336 0) (0.968731 0.101421 0) (0.95042 0.109571 0) (0.931767 0.11607 0) (0.912765 0.121286 0) (0.893356 0.125517 0) (0.87345 0.129006 0) (0.852943 0.131957 0) (0.831728 0.134543 0) (0.809711 0.136902 0) (0.786822 0.13914 0) (0.763019 0.141329 0) (0.738295 0.143511 0) (0.712672 0.145706 0) (0.686199 0.147911 0) (0.658942 0.150116 0) (0.630985 0.152299 0) (0.602426 0.154436 0) (0.57337 0.156502 0) (0.543931 0.158466 0) (0.514228 0.1603 0) (0.484385 0.161975 0) (0.454524 0.163463 0) (0.424768 0.164734 0) (0.395236 0.165761 0) (0.366041 0.166519 0) (0.337288 0.166981 0) (0.309069 0.16712 0) (0.281464 0.16691 0) (0.254535 0.166316 0) (0.228326 0.165298 0) (0.202859 0.163804 0) (0.178133 0.161762 0) (0.154129 0.159082 0) (0.130813 0.155643 0) (0.108141 0.151295 0) (0.0860765 0.145854 0) (0.0646048 0.139095 0) (0.0437505 0.130747 0) (0.0236075 0.120487 0) (0.00437828 0.107933 0) (-0.0135639 0.0926518 0) (-0.029581 0.0741984 0) (-0.0426516 0.052267 0) (-0.0512755 0.027104 0) (-0.054266 2.30393e-19 0) (-0.0512755 -0.027104 0) (-0.0426516 -0.052267 0) (-0.029581 -0.0741984 0) (-0.0135639 -0.0926518 0) (0.00437828 -0.107933 0) (0.0236075 -0.120487 0) (0.0437505 -0.130747 0) (0.0646048 -0.139095 0) (0.0860765 -0.145854 0) (0.108141 -0.151295 0) (0.130813 -0.155643 0) (0.154129 -0.159082 0) (0.178133 -0.161762 0) (0.202859 -0.163804 0) (0.228326 -0.165298 0) (0.254535 -0.166316 0) (0.281464 -0.16691 0) (0.309069 -0.16712 0) (0.337288 -0.166981 0) (0.366041 -0.166519 0) (0.395236 -0.165761 0) (0.424768 -0.164734 0) (0.454524 -0.163463 0) (0.484385 -0.161975 0) (0.514228 -0.1603 0) (0.543931 -0.158466 0) (0.57337 -0.156502 0) (0.602426 -0.154436 0) (0.630985 -0.152299 0) (0.658942 -0.150116 0) (0.686199 -0.147911 0) (0.712672 -0.145706 0) (0.738295 -0.143511 0) (0.763019 -0.141329 0) (0.786822 -0.13914 0) (0.809711 -0.136902 0) (0.831728 -0.134543 0) (0.852943 -0.131957 0) (0.87345 -0.129006 0) (0.893356 -0.125517 0) (0.912765 -0.121286 0) (0.931767 -0.11607 0) (0.95042 -0.109571 0) (0.968731 -0.101421 0) (0.986616 -0.0911336 0) (1.00384 -0.0780475 0) (1.01977 -0.0612252 0) (1.03369 -0.0393009 0) (1.03807 -0.0128161 0) (1.03504 0.0397139 0) (1.02123 0.0621154 0) (1.0053 0.0793985 0) (0.988006 0.0929052 0) (0.970008 0.103564 0) (0.951559 0.112037 0) (0.932755 0.118811 0) (0.913603 0.124258 0) (0.894052 0.128676 0) (0.874022 0.132311 0) (0.853411 0.13537 0) (0.832116 0.13803 0) (0.810041 0.140433 0) (0.787113 0.142691 0) (0.763287 0.144884 0) (0.73855 0.147059 0) (0.712919 0.14924 0) (0.68644 0.151429 0) (0.659178 0.153617 0) (0.631216 0.155785 0) (0.60265 0.157909 0) (0.573585 0.159961 0) (0.544135 0.161914 0) (0.51442 0.163738 0) (0.484561 0.165404 0) (0.454682 0.166882 0) (0.424906 0.168145 0) (0.39535 0.169165 0) (0.366128 0.169914 0) (0.337342 0.170366 0) (0.309085 0.170494 0) (0.281436 0.170268 0) (0.254454 0.169652 0) (0.228182 0.168604 0) (0.202638 0.167067 0) (0.177822 0.164966 0) (0.153711 0.162204 0) (0.130271 0.158659 0) (0.107461 0.154177 0) (0.0852491 0.148567 0) (0.0636241 0.141604 0) (0.0426192 0.133015 0) (0.0223374 0.122475 0) (0.00299199 0.109607 0) (-0.0150316 0.09398 0) (-0.0310844 0.0751634 0) (-0.0441409 0.0528725 0) (-0.0527172 0.0273843 0) (-0.0556779 2.03288e-19 0) (-0.0527172 -0.0273843 0) (-0.0441409 -0.0528725 0) (-0.0310844 -0.0751634 0) (-0.0150316 -0.09398 0) (0.00299199 -0.109607 0) (0.0223374 -0.122475 0) (0.0426192 -0.133015 0) (0.0636241 -0.141604 0) (0.0852491 -0.148567 0) (0.107461 -0.154177 0) (0.130271 -0.158659 0) (0.153711 -0.162204 0) (0.177822 -0.164966 0) (0.202638 -0.167067 0) (0.228182 -0.168604 0) (0.254454 -0.169652 0) (0.281436 -0.170268 0) (0.309085 -0.170494 0) (0.337342 -0.170366 0) (0.366128 -0.169914 0) (0.39535 -0.169165 0) (0.424906 -0.168145 0) (0.454682 -0.166882 0) (0.484561 -0.165404 0) (0.51442 -0.163738 0) (0.544135 -0.161914 0) (0.573585 -0.159961 0) (0.60265 -0.157909 0) (0.631216 -0.155785 0) (0.659178 -0.153617 0) (0.68644 -0.151429 0) (0.712919 -0.14924 0) (0.73855 -0.147059 0) (0.763287 -0.144884 0) (0.787113 -0.142691 0) (0.810041 -0.140433 0) (0.832116 -0.13803 0) (0.853411 -0.13537 0) (0.874022 -0.132311 0) (0.894052 -0.128676 0) (0.913603 -0.124258 0) (0.932755 -0.118811 0) (0.951559 -0.112037 0) (0.970008 -0.103564 0) (0.988006 -0.0929052 0) (1.0053 -0.0793985 0) (1.02123 -0.0621154 0) (1.03504 -0.0397139 0) (1.03919 -0.0129101 0) (1.03641 0.0401215 0) (1.02271 0.0629991 0) (1.00679 0.0807464 0) (0.989437 0.0946794 0) (0.971328 0.105717 0) (0.952742 0.114521 0) (0.933788 0.121578 0) (0.914483 0.127264 0) (0.894787 0.131878 0) (0.874627 0.135668 0) (0.853906 0.138844 0) (0.832525 0.141585 0) (0.810387 0.144038 0) (0.787416 0.146322 0) (0.763563 0.148522 0) (0.738809 0.150691 0) (0.71317 0.15286 0) (0.686684 0.155034 0) (0.659418 0.157205 0) (0.63145 0.159357 0) (0.602877 0.161466 0) (0.573803 0.163504 0) (0.544343 0.165445 0) (0.514615 0.167258 0) (0.48474 0.168914 0) (0.454843 0.170384 0) (0.425046 0.171638 0) (0.395465 0.172649 0) (0.366214 0.173389 0) (0.337396 0.17383 0) (0.3091 0.173945 0) (0.281404 0.173701 0) (0.254367 0.173062 0) (0.228028 0.17198 0) (0.202405 0.170396 0) (0.177493 0.168231 0) (0.153271 0.165384 0) (0.129703 0.161727 0) (0.106752 0.157102 0) (0.0843888 0.151317 0) (0.0626085 0.144143 0) (0.0414518 0.135305 0) (0.0210312 0.12448 0) (0.00157085 0.111291 0) (-0.0165321 0.0953143 0) (-0.0326181 0.076131 0) (-0.0456584 0.0534788 0) (-0.0541859 0.0276649 0) (-0.0571169 1.76183e-19 0) (-0.0541859 -0.0276649 0) (-0.0456584 -0.0534788 0) (-0.0326181 -0.076131 0) (-0.0165321 -0.0953143 0) (0.00157085 -0.111291 0) (0.0210312 -0.12448 0) (0.0414518 -0.135305 0) (0.0626085 -0.144143 0) (0.0843888 -0.151317 0) (0.106752 -0.157102 0) (0.129703 -0.161727 0) (0.153271 -0.165384 0) (0.177493 -0.168231 0) (0.202405 -0.170396 0) (0.228028 -0.17198 0) (0.254367 -0.173062 0) (0.281404 -0.173701 0) (0.3091 -0.173945 0) (0.337396 -0.17383 0) (0.366214 -0.173389 0) (0.395465 -0.172649 0) (0.425046 -0.171638 0) (0.454843 -0.170384 0) (0.48474 -0.168914 0) (0.514615 -0.167258 0) (0.544343 -0.165445 0) (0.573803 -0.163504 0) (0.602877 -0.161466 0) (0.63145 -0.159357 0) (0.659418 -0.157205 0) (0.686684 -0.155034 0) (0.71317 -0.15286 0) (0.738809 -0.150691 0) (0.763563 -0.148522 0) (0.787416 -0.146322 0) (0.810387 -0.144038 0) (0.832525 -0.141585 0) (0.853906 -0.138844 0) (0.874627 -0.135668 0) (0.894787 -0.131878 0) (0.914483 -0.127264 0) (0.933788 -0.121578 0) (0.952742 -0.114521 0) (0.971328 -0.105717 0) (0.989437 -0.0946794 0) (1.00679 -0.0807464 0) (1.02271 -0.0629991 0) (1.03641 -0.0401215 0) (1.04034 -0.013003 0) (1.0378 0.0405237 0) (1.02423 0.0638764 0) (1.00832 0.0820911 0) (0.990908 0.0964559 0) (0.972694 0.107879 0) (0.953971 0.117021 0) (0.934866 0.12437 0) (0.915406 0.130304 0) (0.895562 0.135123 0) (0.875267 0.139077 0) (0.854431 0.142378 0) (0.832957 0.145208 0) (0.81075 0.147719 0) (0.787731 0.150034 0) (0.763847 0.152244 0) (0.739075 0.154411 0) (0.713424 0.156568 0) (0.686933 0.158727 0) (0.65966 0.160881 0) (0.631687 0.163016 0) (0.603107 0.165109 0) (0.574025 0.167134 0) (0.544553 0.169062 0) (0.514812 0.170863 0) (0.484922 0.172509 0) (0.455007 0.173968 0) (0.425187 0.175213 0) (0.395582 0.176215 0) (0.366301 0.176945 0) (0.337448 0.177374 0) (0.309112 0.177475 0) (0.281368 0.177212 0) (0.254273 0.176546 0) (0.227864 0.175428 0) (0.202157 0.173793 0) (0.177146 0.171559 0) (0.152808 0.16862 0) (0.129108 0.164845 0) (0.106012 0.160071 0) (0.0834945 0.154104 0) (0.0615568 0.146711 0) (0.0402474 0.137619 0) (0.0196882 0.126502 0) (0.000114166 0.112986 0) (-0.0180661 0.0966548 0) (-0.0341828 0.0771015 0) (-0.0472046 0.0540861 0) (-0.0556825 0.0279459 0) (-0.0585837 1.49078e-19 0) (-0.0556825 -0.0279459 0) (-0.0472046 -0.0540861 0) (-0.0341828 -0.0771015 0) (-0.0180661 -0.0966548 0) (0.000114166 -0.112986 0) (0.0196882 -0.126502 0) (0.0402474 -0.137619 0) (0.0615568 -0.146711 0) (0.0834945 -0.154104 0) (0.106012 -0.160071 0) (0.129108 -0.164845 0) (0.152808 -0.16862 0) (0.177146 -0.171559 0) (0.202157 -0.173793 0) (0.227864 -0.175428 0) (0.254273 -0.176546 0) (0.281368 -0.177212 0) (0.309112 -0.177475 0) (0.337448 -0.177374 0) (0.366301 -0.176945 0) (0.395582 -0.176215 0) (0.425187 -0.175213 0) (0.455007 -0.173968 0) (0.484922 -0.172509 0) (0.514812 -0.170863 0) (0.544553 -0.169062 0) (0.574025 -0.167134 0) (0.603107 -0.165109 0) (0.631687 -0.163016 0) (0.65966 -0.160881 0) (0.686933 -0.158727 0) (0.713424 -0.156568 0) (0.739075 -0.154411 0) (0.763847 -0.152244 0) (0.787731 -0.150034 0) (0.81075 -0.147719 0) (0.832957 -0.145208 0) (0.854431 -0.142378 0) (0.875267 -0.139077 0) (0.895562 -0.135123 0) (0.915406 -0.130304 0) (0.934866 -0.12437 0) (0.953971 -0.117021 0) (0.972694 -0.107879 0) (0.990908 -0.0964559 0) (1.00832 -0.0820911 0) (1.02423 -0.0638764 0) (1.0378 -0.0405237 0) (1.04152 -0.0130951 0) (1.03923 0.0409207 0) (1.02578 0.0647473 0) (1.00989 0.0834324 0) (0.992422 0.0982346 0) (0.974104 0.110051 0) (0.955247 0.119538 0) (0.93599 0.127188 0) (0.916375 0.133378 0) (0.896379 0.138411 0) (0.875944 0.142538 0) (0.854987 0.145973 0) (0.833415 0.1489 0) (0.811132 0.151476 0) (0.78806 0.153828 0) (0.76414 0.156053 0) (0.739347 0.15822 0) (0.713684 0.160367 0) (0.687184 0.16251 0) (0.659906 0.164648 0) (0.631927 0.166766 0) (0.60334 0.168843 0) (0.574249 0.170853 0) (0.544767 0.172767 0) (0.515012 0.174556 0) (0.485106 0.17619 0) (0.455172 0.177639 0) (0.425331 0.178874 0) (0.395699 0.179865 0) (0.366388 0.180584 0) (0.337499 0.181001 0) (0.309121 0.181085 0) (0.281326 0.180801 0) (0.25417 0.180106 0) (0.227688 0.178948 0) (0.201894 0.177258 0) (0.176779 0.17495 0) (0.15232 0.171914 0) (0.128485 0.168014 0) (0.10524 0.163084 0) (0.0825652 0.156928 0) (0.0604681 0.14931 0) (0.0390052 0.139955 0) (0.0183076 0.12854 0) (-0.00137879 0.114692 0) (-0.0196341 0.0980014 0) (-0.0357791 0.0780748 0) (-0.0487803 0.0546945 0) (-0.0572077 0.0282273 0) (-0.0600792 1.76183e-19 0) (-0.0572077 -0.0282273 0) (-0.0487803 -0.0546945 0) (-0.0357791 -0.0780748 0) (-0.0196341 -0.0980014 0) (-0.00137879 -0.114692 0) (0.0183076 -0.12854 0) (0.0390052 -0.139955 0) (0.0604681 -0.14931 0) (0.0825652 -0.156928 0) (0.10524 -0.163084 0) (0.128485 -0.168014 0) (0.15232 -0.171914 0) (0.176779 -0.17495 0) (0.201894 -0.177258 0) (0.227688 -0.178948 0) (0.25417 -0.180106 0) (0.281326 -0.180801 0) (0.309121 -0.181085 0) (0.337499 -0.181001 0) (0.366388 -0.180584 0) (0.395699 -0.179865 0) (0.425331 -0.178874 0) (0.455172 -0.177639 0) (0.485106 -0.17619 0) (0.515012 -0.174556 0) (0.544767 -0.172767 0) (0.574249 -0.170853 0) (0.60334 -0.168843 0) (0.631927 -0.166766 0) (0.659906 -0.164648 0) (0.687184 -0.16251 0) (0.713684 -0.160367 0) (0.739347 -0.15822 0) (0.76414 -0.156053 0) (0.78806 -0.153828 0) (0.811132 -0.151476 0) (0.833415 -0.1489 0) (0.854987 -0.145973 0) (0.875944 -0.142538 0) (0.896379 -0.138411 0) (0.916375 -0.133378 0) (0.93599 -0.127188 0) (0.955247 -0.119538 0) (0.974104 -0.110051 0) (0.992422 -0.0982346 0) (1.00989 -0.0834324 0) (1.02578 -0.0647473 0) (1.03923 -0.0409207 0) (1.04272 -0.0131862 0) (1.04068 0.0413129 0) (1.02736 0.0656118 0) (1.01149 0.0847703 0) (0.993979 0.100015 0) (0.97556 0.112231 0) (0.95657 0.122072 0) (0.937163 0.130031 0) (0.917389 0.136486 0) (0.897239 0.141741 0) (0.87666 0.14605 0) (0.855577 0.149628 0) (0.833899 0.152661 0) (0.811535 0.155309 0) (0.788404 0.157704 0) (0.764445 0.15995 0) (0.739627 0.16212 0) (0.713948 0.164259 0) (0.68744 0.166388 0) (0.660155 0.168508 0) (0.63217 0.170608 0) (0.603576 0.172668 0) (0.574476 0.174662 0) (0.544983 0.176562 0) (0.515215 0.178338 0) (0.485293 0.17996 0) (0.455339 0.181398 0) (0.425475 0.182622 0) (0.395817 0.183602 0) (0.366475 0.184309 0) (0.337549 0.184712 0) (0.309126 0.184778 0) (0.281279 0.184471 0) (0.254059 0.183744 0) (0.227501 0.182542 0) (0.201614 0.180793 0) (0.176391 0.178406 0) (0.151808 0.175266 0) (0.127832 0.171234 0) (0.104435 0.166142 0) (0.0815997 0.159789 0) (0.0593414 0.151939 0) (0.0377242 0.142315 0) (0.0168887 0.130595 0) (-0.00290874 0.116409 0) (-0.021237 0.0993543 0) (-0.0374077 0.079051 0) (-0.0503863 0.0553041 0) (-0.0587622 0.0285092 0) (-0.061604 2.30393e-19 0) (-0.0587622 -0.0285092 0) (-0.0503863 -0.0553041 0) (-0.0374077 -0.079051 0) (-0.021237 -0.0993543 0) (-0.00290874 -0.116409 0) (0.0168887 -0.130595 0) (0.0377242 -0.142315 0) (0.0593414 -0.151939 0) (0.0815997 -0.159789 0) (0.104435 -0.166142 0) (0.127832 -0.171234 0) (0.151808 -0.175266 0) (0.176391 -0.178406 0) (0.201614 -0.180793 0) (0.227501 -0.182542 0) (0.254059 -0.183744 0) (0.281279 -0.184471 0) (0.309126 -0.184778 0) (0.337549 -0.184712 0) (0.366475 -0.184309 0) (0.395817 -0.183602 0) (0.425475 -0.182622 0) (0.455339 -0.181398 0) (0.485293 -0.17996 0) (0.515215 -0.178338 0) (0.544983 -0.176562 0) (0.574476 -0.174662 0) (0.603576 -0.172668 0) (0.63217 -0.170608 0) (0.660155 -0.168508 0) (0.68744 -0.166388 0) (0.713948 -0.164259 0) (0.739627 -0.16212 0) (0.764445 -0.15995 0) (0.788404 -0.157704 0) (0.811535 -0.155309 0) (0.833899 -0.152661 0) (0.855577 -0.149628 0) (0.87666 -0.14605 0) (0.897239 -0.141741 0) (0.917389 -0.136486 0) (0.937163 -0.130031 0) (0.95657 -0.122072 0) (0.97556 -0.112231 0) (0.993979 -0.100015 0) (1.01149 -0.0847703 0) (1.02736 -0.0656118 0) (1.04068 -0.0413129 0) (1.04396 -0.0132765 0) (1.04216 0.0417004 0) (1.02897 0.06647 0) (1.01314 0.0861046 0) (0.995579 0.101797 0) (0.977063 0.114419 0) (0.957942 0.124622 0) (0.938384 0.132898 0) (0.918452 0.139627 0) (0.898144 0.145114 0) (0.877417 0.149613 0) (0.856202 0.153343 0) (0.834413 0.15649 0) (0.811961 0.159218 0) (0.788764 0.161663 0) (0.764761 0.163935 0) (0.739914 0.166111 0) (0.714219 0.168245 0) (0.687699 0.17036 0) (0.660407 0.172464 0) (0.632416 0.174546 0) (0.603814 0.176588 0) (0.574706 0.178566 0) (0.545202 0.180451 0) (0.51542 0.182213 0) (0.485482 0.183822 0) (0.455509 0.185248 0) (0.425621 0.18646 0) (0.395936 0.187428 0) (0.366561 0.188121 0) (0.337596 0.188509 0) (0.309127 0.188556 0) (0.281224 0.188222 0) (0.253938 0.187461 0) (0.227299 0.186211 0) (0.201317 0.184398 0) (0.175981 0.181926 0) (0.151268 0.178677 0) (0.127148 0.174507 0) (0.103595 0.169244 0) (0.0805967 0.162687 0) (0.0581755 0.154598 0) (0.0364034 0.144698 0) (0.0154304 0.132666 0) (-0.00447646 0.118137 0) (-0.0228754 0.100713 0) (-0.0390693 0.0800301 0) (-0.0520231 0.0559148 0) (-0.0603469 0.0287916 0) (-0.063159 2.03288e-19 0) (-0.0603469 -0.0287916 0) (-0.0520231 -0.0559148 0) (-0.0390693 -0.0800301 0) (-0.0228754 -0.100713 0) (-0.00447646 -0.118137 0) (0.0154304 -0.132666 0) (0.0364034 -0.144698 0) (0.0581755 -0.154598 0) (0.0805967 -0.162687 0) (0.103595 -0.169244 0) (0.127148 -0.174507 0) (0.151268 -0.178677 0) (0.175981 -0.181926 0) (0.201317 -0.184398 0) (0.227299 -0.186211 0) (0.253938 -0.187461 0) (0.281224 -0.188222 0) (0.309127 -0.188556 0) (0.337596 -0.188509 0) (0.366561 -0.188121 0) (0.395936 -0.187428 0) (0.425621 -0.18646 0) (0.455509 -0.185248 0) (0.485482 -0.183822 0) (0.51542 -0.182213 0) (0.545202 -0.180451 0) (0.574706 -0.178566 0) (0.603814 -0.176588 0) (0.632416 -0.174546 0) (0.660407 -0.172464 0) (0.687699 -0.17036 0) (0.714219 -0.168245 0) (0.739914 -0.166111 0) (0.764761 -0.163935 0) (0.788764 -0.161663 0) (0.811961 -0.159218 0) (0.834413 -0.15649 0) (0.856202 -0.153343 0) (0.877417 -0.149613 0) (0.898144 -0.145114 0) (0.918452 -0.139627 0) (0.938384 -0.132898 0) (0.957942 -0.124622 0) (0.977063 -0.114419 0) (0.995579 -0.101797 0) (1.01314 -0.0861046 0) (1.02897 -0.06647 0) (1.04216 -0.0417004 0) (1.04524 -0.0133661 0) (1.04367 0.0420833 0) (1.03062 0.0673219 0) (1.01482 0.0874354 0) (0.997222 0.103581 0) (0.978614 0.116616 0) (0.959364 0.127188 0) (0.939655 0.135789 0) (0.919563 0.142801 0) (0.899095 0.148528 0) (0.878216 0.153228 0) (0.856864 0.157118 0) (0.834958 0.160388 0) (0.812411 0.163204 0) (0.789144 0.165707 0) (0.76509 0.168009 0) (0.740211 0.170197 0) (0.714495 0.172327 0) (0.687963 0.174431 0) (0.660663 0.176518 0) (0.632664 0.178582 0) (0.604056 0.180606 0) (0.574939 0.182566 0) (0.545424 0.184435 0) (0.515628 0.186182 0) (0.485673 0.187778 0) (0.45568 0.189191 0) (0.425768 0.19039 0) (0.396054 0.191345 0) (0.366646 0.192024 0) (0.337641 0.192394 0) (0.309124 0.192419 0) (0.281163 0.192058 0) (0.253807 0.191258 0) (0.227083 0.189957 0) (0.201 0.188074 0) (0.175547 0.185511 0) (0.1507 0.182146 0) (0.126432 0.177831 0) (0.102719 0.172391 0) (0.0795552 0.165623 0) (0.0569695 0.157286 0) (0.035042 0.147104 0) (0.0139321 0.134755 0) (-0.00608272 0.119876 0) (-0.0245501 0.102079 0) (-0.0407647 0.0810124 0) (-0.0536917 0.0565269 0) (-0.0619625 0.0290747 0) (-0.064745 2.30393e-19 0) (-0.0619625 -0.0290747 0) (-0.0536917 -0.0565269 0) (-0.0407647 -0.0810124 0) (-0.0245501 -0.102079 0) (-0.00608272 -0.119876 0) (0.0139321 -0.134755 0) (0.035042 -0.147104 0) (0.0569695 -0.157286 0) (0.0795552 -0.165623 0) (0.102719 -0.172391 0) (0.126432 -0.177831 0) (0.1507 -0.182146 0) (0.175547 -0.185511 0) (0.201 -0.188074 0) (0.227083 -0.189957 0) (0.253807 -0.191258 0) (0.281163 -0.192058 0) (0.309124 -0.192419 0) (0.337641 -0.192394 0) (0.366646 -0.192024 0) (0.396054 -0.191345 0) (0.425768 -0.19039 0) (0.45568 -0.189191 0) (0.485673 -0.187778 0) (0.515628 -0.186182 0) (0.545424 -0.184435 0) (0.574939 -0.182566 0) (0.604056 -0.180606 0) (0.632664 -0.178582 0) (0.660663 -0.176518 0) (0.687963 -0.174431 0) (0.714495 -0.172327 0) (0.740211 -0.170197 0) (0.76509 -0.168009 0) (0.789144 -0.165707 0) (0.812411 -0.163204 0) (0.834958 -0.160388 0) (0.856864 -0.157118 0) (0.878216 -0.153228 0) (0.899095 -0.148528 0) (0.919563 -0.142801 0) (0.939655 -0.135789 0) (0.959364 -0.127188 0) (0.978614 -0.116616 0) (0.997222 -0.103581 0) (1.01482 -0.0874354 0) (1.03062 -0.0673219 0) (1.04367 -0.0420833 0) (1.04654 -0.013455 0) (1.04521 0.042462 0) (1.0323 0.0681677 0) (1.01654 0.0887624 0) (0.99891 0.105366 0) (0.980212 0.118821 0) (0.960836 0.12977 0) (0.940978 0.138704 0) (0.920725 0.146007 0) (0.900094 0.151985 0) (0.879059 0.156893 0) (0.857565 0.160953 0) (0.835536 0.164356 0) (0.812888 0.167268 0) (0.789543 0.169835 0) (0.765434 0.172175 0) (0.740517 0.174378 0) (0.714778 0.176508 0) (0.688232 0.178601 0) (0.660922 0.180672 0) (0.632916 0.182718 0) (0.6043 0.184723 0) (0.575174 0.186665 0) (0.545648 0.188517 0) (0.515838 0.190249 0) (0.485866 0.19183 0) (0.455852 0.193229 0) (0.425916 0.194415 0) (0.396173 0.195355 0) (0.36673 0.196018 0) (0.337683 0.19637 0) (0.309115 0.196371 0) (0.281093 0.195978 0) (0.253663 0.195137 0) (0.226851 0.193779 0) (0.200663 0.191822 0) (0.175088 0.189163 0) (0.150103 0.185674 0) (0.125682 0.181207 0) (0.101805 0.175583 0) (0.0784738 0.168596 0) (0.0557222 0.160006 0) (0.0336389 0.149533 0) (0.0123928 0.136859 0) (-0.00772832 0.121625 0) (-0.0262618 0.103451 0) (-0.0424945 0.0819978 0) (-0.0553928 0.0571404 0) (-0.0636099 0.0293584 0) (-0.0663629 2.57498e-19 0) (-0.0636099 -0.0293584 0) (-0.0553928 -0.0571404 0) (-0.0424945 -0.0819978 0) (-0.0262618 -0.103451 0) (-0.00772832 -0.121625 0) (0.0123928 -0.136859 0) (0.0336389 -0.149533 0) (0.0557222 -0.160006 0) (0.0784738 -0.168596 0) (0.101805 -0.175583 0) (0.125682 -0.181207 0) (0.150103 -0.185674 0) (0.175088 -0.189163 0) (0.200663 -0.191822 0) (0.226851 -0.193779 0) (0.253663 -0.195137 0) (0.281093 -0.195978 0) (0.309115 -0.196371 0) (0.337683 -0.19637 0) (0.36673 -0.196018 0) (0.396173 -0.195355 0) (0.425916 -0.194415 0) (0.455852 -0.193229 0) (0.485866 -0.19183 0) (0.515838 -0.190249 0) (0.545648 -0.188517 0) (0.575174 -0.186665 0) (0.6043 -0.184723 0) (0.632916 -0.182718 0) (0.660922 -0.180672 0) (0.688232 -0.178601 0) (0.714778 -0.176508 0) (0.740517 -0.174378 0) (0.765434 -0.172175 0) (0.789543 -0.169835 0) (0.812888 -0.167268 0) (0.835536 -0.164356 0) (0.857565 -0.160953 0) (0.879059 -0.156893 0) (0.900094 -0.151985 0) (0.920725 -0.146007 0) (0.940978 -0.138704 0) (0.960836 -0.12977 0) (0.980212 -0.118821 0) (0.99891 -0.105366 0) (1.01654 -0.0887624 0) (1.0323 -0.0681677 0) (1.04521 -0.042462 0) (1.04788 -0.0135434 0) (1.04678 0.0428366 0) (1.03401 0.0690073 0) (1.0183 0.0900857 0) (1.00064 0.107153 0) (0.98186 0.121033 0) (0.96236 0.132367 0) (0.942353 0.141643 0) (0.921938 0.149246 0) (0.901143 0.155482 0) (0.879949 0.160609 0) (0.858307 0.164848 0) (0.836149 0.168392 0) (0.813394 0.171409 0) (0.789965 0.174049 0) (0.765795 0.176432 0) (0.740836 0.178656 0) (0.715069 0.180789 0) (0.688506 0.182874 0) (0.661185 0.18493 0) (0.633171 0.186957 0) (0.604547 0.188943 0) (0.575412 0.190866 0) (0.545874 0.192701 0) (0.516051 0.194416 0) (0.486061 0.195981 0) (0.456026 0.197365 0) (0.426065 0.198536 0) (0.396291 0.199461 0) (0.366812 0.200107 0) (0.337721 0.200438 0) (0.3091 0.200413 0) (0.281014 0.199986 0) (0.253507 0.199098 0) (0.226602 0.19768 0) (0.200304 0.195643 0) (0.174602 0.192881 0) (0.149474 0.189263 0) (0.124896 0.184636 0) (0.100853 0.17882 0) (0.0773514 0.171607 0) (0.0544325 0.162755 0) (0.0321932 0.151986 0) (0.0108117 0.138981 0) (-0.00941407 0.123386 0) (-0.0280112 0.104829 0) (-0.0442596 0.0829864 0) (-0.0571272 0.0577553 0) (-0.06529 0.0296429 0) (-0.0680136 2.30393e-19 0) (-0.06529 -0.0296429 0) (-0.0571272 -0.0577553 0) (-0.0442596 -0.0829864 0) (-0.0280112 -0.104829 0) (-0.00941407 -0.123386 0) (0.0108117 -0.138981 0) (0.0321932 -0.151986 0) (0.0544325 -0.162755 0) (0.0773514 -0.171607 0) (0.100853 -0.17882 0) (0.124896 -0.184636 0) (0.149474 -0.189263 0) (0.174602 -0.192881 0) (0.200304 -0.195643 0) (0.226602 -0.19768 0) (0.253507 -0.199098 0) (0.281014 -0.199986 0) (0.3091 -0.200413 0) (0.337721 -0.200438 0) (0.366812 -0.200107 0) (0.396291 -0.199461 0) (0.426065 -0.198536 0) (0.456026 -0.197365 0) (0.486061 -0.195981 0) (0.516051 -0.194416 0) (0.545874 -0.192701 0) (0.575412 -0.190866 0) (0.604547 -0.188943 0) (0.633171 -0.186957 0) (0.661185 -0.18493 0) (0.688506 -0.182874 0) (0.715069 -0.180789 0) (0.740836 -0.178656 0) (0.765795 -0.176432 0) (0.789965 -0.174049 0) (0.813394 -0.171409 0) (0.836149 -0.168392 0) (0.858307 -0.164848 0) (0.879949 -0.160609 0) (0.901143 -0.155482 0) (0.921938 -0.149246 0) (0.942353 -0.141643 0) (0.96236 -0.132367 0) (0.98186 -0.121033 0) (1.00064 -0.107153 0) (1.0183 -0.0900857 0) (1.03401 -0.0690073 0) (1.04678 -0.0428366 0) (1.04926 -0.0136313 0) (1.04838 0.0432073 0) (1.03577 0.069841 0) (1.02011 0.0914052 0) (1.00242 0.10894 0) (0.983558 0.123253 0) (0.963936 0.134978 0) (0.943782 0.144605 0) (0.923205 0.152516 0) (0.902243 0.15902 0) (0.880887 0.164375 0) (0.859093 0.168803 0) (0.8368 0.172497 0) (0.813931 0.175628 0) (0.790412 0.178348 0) (0.766173 0.180782 0) (0.741167 0.183032 0) (0.715369 0.185172 0) (0.688786 0.187251 0) (0.661452 0.189293 0) (0.633429 0.191302 0) (0.604796 0.193269 0) (0.575652 0.195173 0) (0.546103 0.196988 0) (0.516265 0.198686 0) (0.486258 0.200235 0) (0.456201 0.201603 0) (0.426214 0.202758 0) (0.396409 0.203666 0) (0.366891 0.204293 0) (0.337755 0.204601 0) (0.309079 0.204547 0) (0.280925 0.204082 0) (0.253336 0.203145 0) (0.226334 0.20166 0) (0.199922 0.199538 0) (0.174088 0.196666 0) (0.148813 0.192911 0) (0.124074 0.188118 0) (0.0998611 0.182103 0) (0.0761867 0.174656 0) (0.0530992 0.165535 0) (0.0307038 0.154461 0) (0.00918776 0.14112 0) (-0.0111408 0.125158 0) (-0.0297993 0.106214 0) (-0.0460608 0.0839783 0) (-0.0588958 0.0583719 0) (-0.0670035 0.0299282 0) (-0.0696979 1.76183e-19 0) (-0.0670035 -0.0299282 0) (-0.0588958 -0.0583719 0) (-0.0460608 -0.0839783 0) (-0.0297993 -0.106214 0) (-0.0111408 -0.125158 0) (0.00918776 -0.14112 0) (0.0307038 -0.154461 0) (0.0530992 -0.165535 0) (0.0761867 -0.174656 0) (0.0998611 -0.182103 0) (0.124074 -0.188118 0) (0.148813 -0.192911 0) (0.174088 -0.196666 0) (0.199922 -0.199538 0) (0.226334 -0.20166 0) (0.253336 -0.203145 0) (0.280925 -0.204082 0) (0.309079 -0.204547 0) (0.337755 -0.204601 0) (0.366891 -0.204293 0) (0.396409 -0.203666 0) (0.426214 -0.202758 0) (0.456201 -0.201603 0) (0.486258 -0.200235 0) (0.516265 -0.198686 0) (0.546103 -0.196988 0) (0.575652 -0.195173 0) (0.604796 -0.193269 0) (0.633429 -0.191302 0) (0.661452 -0.189293 0) (0.688786 -0.187251 0) (0.715369 -0.185172 0) (0.741167 -0.183032 0) (0.766173 -0.180782 0) (0.790412 -0.178348 0) (0.813931 -0.175628 0) (0.8368 -0.172497 0) (0.859093 -0.168803 0) (0.880887 -0.164375 0) (0.902243 -0.15902 0) (0.923205 -0.152516 0) (0.943782 -0.144605 0) (0.963936 -0.134978 0) (0.983558 -0.123253 0) (1.00242 -0.10894 0) (1.02011 -0.0914052 0) (1.03577 -0.069841 0) (1.04838 -0.0432073 0) (1.05067 -0.0137187 0) (1.05001 0.0435744 0) (1.03755 0.0706686 0) (1.02195 0.0927207 0) (1.00425 0.110728 0) (0.985307 0.12548 0) (0.965566 0.137605 0) (0.945266 0.14759 0) (0.924527 0.155819 0) (0.903397 0.1626 0) (0.881874 0.168192 0) (0.859924 0.172817 0) (0.83749 0.17667 0) (0.814501 0.179925 0) (0.790884 0.182733 0) (0.766572 0.185225 0) (0.741512 0.187507 0) (0.715679 0.189659 0) (0.689073 0.191736 0) (0.661724 0.193765 0) (0.63369 0.195757 0) (0.605049 0.197703 0) (0.575894 0.199587 0) (0.546333 0.201383 0) (0.516481 0.203062 0) (0.486456 0.204593 0) (0.456377 0.205944 0) (0.426363 0.207082 0) (0.396525 0.207972 0) (0.366968 0.208577 0) (0.337783 0.20886 0) (0.309049 0.208775 0) (0.280824 0.208268 0) (0.25315 0.207276 0) (0.226046 0.205721 0) (0.199515 0.203507 0) (0.173545 0.200519 0) (0.148117 0.196621 0) (0.123213 0.191653 0) (0.0988276 0.185431 0) (0.0749784 0.177742 0) (0.0517213 0.168345 0) (0.0291697 0.15696 0) (0.00752012 0.143275 0) (-0.0129094 0.126942 0) (-0.0316268 0.107605 0) (-0.0478988 0.0849736 0) (-0.0606994 0.0589901 0) (-0.0687516 0.0302143 0) (-0.0714169 1.76183e-19 0) (-0.0687516 -0.0302143 0) (-0.0606994 -0.0589901 0) (-0.0478988 -0.0849736 0) (-0.0316268 -0.107605 0) (-0.0129094 -0.126942 0) (0.00752012 -0.143275 0) (0.0291697 -0.15696 0) (0.0517213 -0.168345 0) (0.0749784 -0.177742 0) (0.0988276 -0.185431 0) (0.123213 -0.191653 0) (0.148117 -0.196621 0) (0.173545 -0.200519 0) (0.199515 -0.203507 0) (0.226046 -0.205721 0) (0.25315 -0.207276 0) (0.280824 -0.208268 0) (0.309049 -0.208775 0) (0.337783 -0.20886 0) (0.366968 -0.208577 0) (0.396525 -0.207972 0) (0.426363 -0.207082 0) (0.456377 -0.205944 0) (0.486456 -0.204593 0) (0.516481 -0.203062 0) (0.546333 -0.201383 0) (0.575894 -0.199587 0) (0.605049 -0.197703 0) (0.63369 -0.195757 0) (0.661724 -0.193765 0) (0.689073 -0.191736 0) (0.715679 -0.189659 0) (0.741512 -0.187507 0) (0.766572 -0.185225 0) (0.790884 -0.182733 0) (0.814501 -0.179925 0) (0.83749 -0.17667 0) (0.859924 -0.172817 0) (0.881874 -0.168192 0) (0.903397 -0.1626 0) (0.924527 -0.155819 0) (0.945266 -0.14759 0) (0.965566 -0.137605 0) (0.985307 -0.12548 0) (1.00425 -0.110728 0) (1.02195 -0.0927207 0) (1.03755 -0.0706686 0) (1.05001 -0.0435744 0) (1.05212 -0.0138058 0) (1.05168 0.0439381 0) (1.03938 0.0714905 0) (1.02384 0.0940323 0) (1.00612 0.112517 0) (0.987107 0.127714 0) (0.96725 0.140246 0) (0.946805 0.150598 0) (0.925904 0.159152 0) (0.904605 0.166219 0) (0.882913 0.172058 0) (0.860802 0.17689 0) (0.838222 0.180913 0) (0.815107 0.1843 0) (0.791386 0.187205 0) (0.766992 0.189763 0) (0.741873 0.192083 0) (0.715999 0.194252 0) (0.689367 0.196329 0) (0.662001 0.198348 0) (0.633955 0.200322 0) (0.605303 0.202249 0) (0.576139 0.204112 0) (0.546566 0.205887 0) (0.516699 0.207547 0) (0.486655 0.209059 0) (0.456554 0.210392 0) (0.426511 0.211511 0) (0.39664 0.21238 0) (0.367041 0.212963 0) (0.337806 0.213218 0) (0.30901 0.213098 0) (0.280711 0.212546 0) (0.252947 0.211495 0) (0.225736 0.209864 0) (0.199081 0.207552 0) (0.172969 0.204441 0) (0.147385 0.200391 0) (0.122312 0.195241 0) (0.0977513 0.188804 0) (0.0737253 0.180867 0) (0.0502976 0.171185 0) (0.0275898 0.159483 0) (0.0058078 0.145447 0) (-0.0147208 0.128736 0) (-0.0334946 0.109003 0) (-0.0497747 0.0859724 0) (-0.0625389 0.0596101 0) (-0.070535 0.0305013 0) (-0.0731714 2.03288e-19 0) (-0.070535 -0.0305013 0) (-0.0625389 -0.0596101 0) (-0.0497747 -0.0859724 0) (-0.0334946 -0.109003 0) (-0.0147208 -0.128736 0) (0.0058078 -0.145447 0) (0.0275898 -0.159483 0) (0.0502976 -0.171185 0) (0.0737253 -0.180867 0) (0.0977513 -0.188804 0) (0.122312 -0.195241 0) (0.147385 -0.200391 0) (0.172969 -0.204441 0) (0.199081 -0.207552 0) (0.225736 -0.209864 0) (0.252947 -0.211495 0) (0.280711 -0.212546 0) (0.30901 -0.213098 0) (0.337806 -0.213218 0) (0.367041 -0.212963 0) (0.39664 -0.21238 0) (0.426511 -0.211511 0) (0.456554 -0.210392 0) (0.486655 -0.209059 0) (0.516699 -0.207547 0) (0.546566 -0.205887 0) (0.576139 -0.204112 0) (0.605303 -0.202249 0) (0.633955 -0.200322 0) (0.662001 -0.198348 0) (0.689367 -0.196329 0) (0.715999 -0.194252 0) (0.741873 -0.192083 0) (0.766992 -0.189763 0) (0.791386 -0.187205 0) (0.815107 -0.1843 0) (0.838222 -0.180913 0) (0.860802 -0.17689 0) (0.882913 -0.172058 0) (0.904605 -0.166219 0) (0.925904 -0.159152 0) (0.946805 -0.150598 0) (0.96725 -0.140246 0) (0.987107 -0.127714 0) (1.00612 -0.112517 0) (1.02384 -0.0940323 0) (1.03938 -0.0714905 0) (1.05168 -0.0439381 0) (1.0536 -0.0138927 0) (1.05338 0.0442985 0) (1.04124 0.0723065 0) (1.02577 0.09534 0) (1.00805 0.114306 0) (0.98896 0.129955 0) (0.96899 0.142901 0) (0.948402 0.153628 0) (0.92734 0.162517 0) (0.905869 0.169879 0) (0.884006 0.175973 0) (0.86173 0.181023 0) (0.838998 0.185224 0) (0.81575 0.188753 0) (0.791918 0.191764 0) (0.767437 0.194396 0) (0.742253 0.196761 0) (0.716332 0.198952 0) (0.689669 0.201033 0) (0.662283 0.203043 0) (0.634224 0.205002 0) (0.605561 0.206909 0) (0.576385 0.208751 0) (0.5468 0.210505 0) (0.516918 0.212144 0) (0.486855 0.213637 0) (0.45673 0.214949 0) (0.426659 0.216048 0) (0.396752 0.216895 0) (0.36711 0.217453 0) (0.337821 0.217677 0) (0.308961 0.217519 0) (0.280584 0.216917 0) (0.252725 0.215803 0) (0.225403 0.214089 0) (0.198619 0.211672 0) (0.172361 0.208431 0) (0.146615 0.204223 0) (0.12137 0.198883 0) (0.0966307 0.192223 0) (0.0724259 0.184029 0) (0.0488268 0.174056 0) (0.0259631 0.162029 0) (0.00404982 0.147636 0) (-0.0165758 0.130541 0) (-0.0354035 0.110408 0) (-0.0516891 0.0869748 0) (-0.0644152 0.0602319 0) (-0.0723547 0.0307894 0) (-0.0749624 2.57498e-19 0) (-0.0723547 -0.0307894 0) (-0.0644152 -0.0602319 0) (-0.0516891 -0.0869748 0) (-0.0354035 -0.110408 0) (-0.0165758 -0.130541 0) (0.00404982 -0.147636 0) (0.0259631 -0.162029 0) (0.0488268 -0.174056 0) (0.0724259 -0.184029 0) (0.0966307 -0.192223 0) (0.12137 -0.198883 0) (0.146615 -0.204223 0) (0.172361 -0.208431 0) (0.198619 -0.211672 0) (0.225403 -0.214089 0) (0.252725 -0.215803 0) (0.280584 -0.216917 0) (0.308961 -0.217519 0) (0.337821 -0.217677 0) (0.36711 -0.217453 0) (0.396752 -0.216895 0) (0.426659 -0.216048 0) (0.45673 -0.214949 0) (0.486855 -0.213637 0) (0.516918 -0.212144 0) (0.5468 -0.210505 0) (0.576385 -0.208751 0) (0.605561 -0.206909 0) (0.634224 -0.205002 0) (0.662283 -0.203043 0) (0.689669 -0.201033 0) (0.716332 -0.198952 0) (0.742253 -0.196761 0) (0.767437 -0.194396 0) (0.791918 -0.191764 0) (0.81575 -0.188753 0) (0.838998 -0.185224 0) (0.86173 -0.181023 0) (0.884006 -0.175973 0) (0.905869 -0.169879 0) (0.92734 -0.162517 0) (0.948402 -0.153628 0) (0.96899 -0.142901 0) (0.98896 -0.129955 0) (1.00805 -0.114306 0) (1.02577 -0.09534 0) (1.04124 -0.0723065 0) (1.05338 -0.0442985 0) (1.05513 -0.0139794 0) (1.05512 0.044656 0) (1.04314 0.073117 0) (1.02774 0.0966436 0) (1.01002 0.116096 0) (0.990866 0.132203 0) (0.970787 0.145571 0) (0.950058 0.15668 0) (0.928834 0.165913 0) (0.907191 0.173579 0) (0.885154 0.179938 0) (0.86271 0.185215 0) (0.839821 0.189604 0) (0.816434 0.193284 0) (0.792484 0.196411 0) (0.767908 0.199124 0) (0.742651 0.201542 0) (0.71668 0.203761 0) (0.689981 0.20585 0) (0.662572 0.207855 0) (0.634496 0.2098 0) (0.605821 0.211687 0) (0.576634 0.213507 0) (0.547036 0.215239 0) (0.517138 0.216856 0) (0.487055 0.218328 0) (0.456906 0.219619 0) (0.426805 0.220695 0) (0.396861 0.221519 0) (0.367173 0.222049 0) (0.337829 0.22224 0) (0.308901 0.222039 0) (0.280441 0.221384 0) (0.252484 0.2202 0) (0.225045 0.218397 0) (0.198127 0.21587 0) (0.171718 0.212491 0) (0.145806 0.208117 0) (0.120385 0.202579 0) (0.0954643 0.195689 0) (0.0710791 0.18723 0) (0.0473078 0.176958 0) (0.0242885 0.164598 0) (0.00224517 0.149842 0) (-0.0184754 0.132358 0) (-0.0373545 0.11182 0) (-0.0536431 0.0879809 0) (-0.0663294 0.0608557 0) (-0.0742118 0.0310784 0) (-0.0767909 2.57498e-19 0) (-0.0742118 -0.0310784 0) (-0.0663294 -0.0608557 0) (-0.0536431 -0.0879809 0) (-0.0373545 -0.11182 0) (-0.0184754 -0.132358 0) (0.00224517 -0.149842 0) (0.0242885 -0.164598 0) (0.0473078 -0.176958 0) (0.0710791 -0.18723 0) (0.0954643 -0.195689 0) (0.120385 -0.202579 0) (0.145806 -0.208117 0) (0.171718 -0.212491 0) (0.198127 -0.21587 0) (0.225045 -0.218397 0) (0.252484 -0.2202 0) (0.280441 -0.221384 0) (0.308901 -0.222039 0) (0.337829 -0.22224 0) (0.367173 -0.222049 0) (0.396861 -0.221519 0) (0.426805 -0.220695 0) (0.456906 -0.219619 0) (0.487055 -0.218328 0) (0.517138 -0.216856 0) (0.547036 -0.215239 0) (0.576634 -0.213507 0) (0.605821 -0.211687 0) (0.634496 -0.2098 0) (0.662572 -0.207855 0) (0.689981 -0.20585 0) (0.71668 -0.203761 0) (0.742651 -0.201542 0) (0.767908 -0.199124 0) (0.792484 -0.196411 0) (0.816434 -0.193284 0) (0.839821 -0.189604 0) (0.86271 -0.185215 0) (0.885154 -0.179938 0) (0.907191 -0.173579 0) (0.928834 -0.165913 0) (0.950058 -0.15668 0) (0.970787 -0.145571 0) (0.990866 -0.132203 0) (1.01002 -0.116096 0) (1.02774 -0.0966436 0) (1.04314 -0.073117 0) (1.05512 -0.044656 0) (1.05669 -0.014066 0) (1.0569 0.0450107 0) (1.04509 0.0739219 0) (1.02976 0.0979432 0) (1.01204 0.117886 0) (0.992827 0.134457 0) (0.972641 0.148254 0) (0.951773 0.159754 0) (0.930388 0.169339 0) (0.908573 0.177319 0) (0.886359 0.183953 0) (0.863743 0.189465 0) (0.840693 0.194053 0) (0.81716 0.197893 0) (0.793085 0.201145 0) (0.768407 0.203949 0) (0.743072 0.206427 0) (0.717043 0.20868 0) (0.690304 0.210782 0) (0.662868 0.212785 0) (0.634774 0.214717 0) (0.606084 0.216585 0) (0.576885 0.218384 0) (0.547273 0.220093 0) (0.517358 0.221687 0) (0.487256 0.223136 0) (0.457082 0.224404 0) (0.426949 0.225456 0) (0.396966 0.226254 0) (0.367231 0.226753 0) (0.337828 0.226907 0) (0.308828 0.22666 0) (0.280281 0.225947 0) (0.252221 0.224688 0) (0.224661 0.22279 0) (0.197602 0.220145 0) (0.171038 0.216622 0) (0.144956 0.212073 0) (0.119356 0.20633 0) (0.0942506 0.199201 0) (0.0696833 0.190469 0) (0.0457392 0.179891 0) (0.0225647 0.167191 0) (0.000392817 0.152065 0) (-0.0204206 0.134186 0) (-0.0393484 0.113238 0) (-0.0556376 0.0889907 0) (-0.0682823 0.0614816 0) (-0.0761072 0.0313686 0) (-0.078658 2.30393e-19 0) (-0.0761072 -0.0313686 0) (-0.0682823 -0.0614816 0) (-0.0556376 -0.0889907 0) (-0.0393484 -0.113238 0) (-0.0204206 -0.134186 0) (0.000392817 -0.152065 0) (0.0225647 -0.167191 0) (0.0457392 -0.179891 0) (0.0696833 -0.190469 0) (0.0942506 -0.199201 0) (0.119356 -0.20633 0) (0.144956 -0.212073 0) (0.171038 -0.216622 0) (0.197602 -0.220145 0) (0.224661 -0.22279 0) (0.252221 -0.224688 0) (0.280281 -0.225947 0) (0.308828 -0.22666 0) (0.337828 -0.226907 0) (0.367231 -0.226753 0) (0.396966 -0.226254 0) (0.426949 -0.225456 0) (0.457082 -0.224404 0) (0.487256 -0.223136 0) (0.517358 -0.221687 0) (0.547273 -0.220093 0) (0.576885 -0.218384 0) (0.606084 -0.216585 0) (0.634774 -0.214717 0) (0.662868 -0.212785 0) (0.690304 -0.210782 0) (0.717043 -0.20868 0) (0.743072 -0.206427 0) (0.768407 -0.203949 0) (0.793085 -0.201145 0) (0.81716 -0.197893 0) (0.840693 -0.194053 0) (0.863743 -0.189465 0) (0.886359 -0.183953 0) (0.908573 -0.177319 0) (0.930388 -0.169339 0) (0.951773 -0.159754 0) (0.972641 -0.148254 0) (0.992827 -0.134457 0) (1.01204 -0.117886 0) (1.02976 -0.0979432 0) (1.04509 -0.0739219 0) (1.0569 -0.0450107 0) (1.0583 -0.0141526 0) (1.05871 0.0453628 0) (1.04707 0.0747215 0) (1.03182 0.0992387 0) (1.01411 0.119675 0) (0.994844 0.136717 0) (0.974554 0.15095 0) (0.953549 0.16285 0) (0.932005 0.172796 0) (0.910016 0.181098 0) (0.887624 0.188016 0) (0.864832 0.193774 0) (0.841615 0.19857 0) (0.817931 0.202581 0) (0.793725 0.205967 0) (0.768938 0.20887 0) (0.743517 0.211417 0) (0.717424 0.21371 0) (0.690639 0.21583 0) (0.663172 0.217835 0) (0.635056 0.219756 0) (0.606351 0.221607 0) (0.577137 0.223384 0) (0.547511 0.22507 0) (0.517579 0.22664 0) (0.487456 0.228064 0) (0.457256 0.229308 0) (0.42709 0.230334 0) (0.397067 0.231103 0) (0.367281 0.231569 0) (0.337817 0.231683 0) (0.308741 0.231385 0) (0.280103 0.230608 0) (0.251934 0.229268 0) (0.224247 0.22727 0) (0.197045 0.224498 0) (0.170319 0.220823 0) (0.144063 0.216092 0) (0.11828 0.210135 0) (0.0929881 0.202759 0) (0.0682372 0.193747 0) (0.0441199 0.182855 0) (0.0207908 0.169808 0) (-0.00150831 0.154305 0) (-0.0224124 0.136026 0) (-0.0413863 0.114663 0) (-0.0576736 0.0900045 0) (-0.070275 0.0621097 0) (-0.0780421 0.0316599 0) (-0.0805648 2.84603e-19 0) (-0.0780421 -0.0316599 0) (-0.070275 -0.0621097 0) (-0.0576736 -0.0900045 0) (-0.0413863 -0.114663 0) (-0.0224124 -0.136026 0) (-0.00150831 -0.154305 0) (0.0207908 -0.169808 0) (0.0441199 -0.182855 0) (0.0682372 -0.193747 0) (0.0929881 -0.202759 0) (0.11828 -0.210135 0) (0.144063 -0.216092 0) (0.170319 -0.220823 0) (0.197045 -0.224498 0) (0.224247 -0.22727 0) (0.251934 -0.229268 0) (0.280103 -0.230608 0) (0.308741 -0.231385 0) (0.337817 -0.231683 0) (0.367281 -0.231569 0) (0.397067 -0.231103 0) (0.42709 -0.230334 0) (0.457256 -0.229308 0) (0.487456 -0.228064 0) (0.517579 -0.22664 0) (0.547511 -0.22507 0) (0.577137 -0.223384 0) (0.606351 -0.221607 0) (0.635056 -0.219756 0) (0.663172 -0.217835 0) (0.690639 -0.21583 0) (0.717424 -0.21371 0) (0.743517 -0.211417 0) (0.768938 -0.20887 0) (0.793725 -0.205967 0) (0.817931 -0.202581 0) (0.841615 -0.19857 0) (0.864832 -0.193774 0) (0.887624 -0.188016 0) (0.910016 -0.181098 0) (0.932005 -0.172796 0) (0.953549 -0.16285 0) (0.974554 -0.15095 0) (0.994844 -0.136717 0) (1.01411 -0.119675 0) (1.03182 -0.0992387 0) (1.04707 -0.0747215 0) (1.05871 -0.0453628 0) (1.05996 -0.0142393 0) (1.06056 0.0457126 0) (1.04909 0.0755158 0) (1.03393 0.10053 0) (1.01623 0.121465 0) (0.996916 0.138982 0) (0.976528 0.15366 0) (0.955388 0.165967 0) (0.933684 0.176282 0) (0.911522 0.184916 0) (0.88895 0.192128 0) (0.865979 0.198142 0) (0.842591 0.203156 0) (0.81875 0.207347 0) (0.794406 0.210876 0) (0.769502 0.213889 0) (0.743988 0.216512 0) (0.717824 0.218853 0) (0.690988 0.220998 0) (0.663485 0.223008 0) (0.635344 0.224921 0) (0.606621 0.226756 0) (0.577392 0.228511 0) (0.54775 0.230173 0) (0.517801 0.231718 0) (0.487655 0.233116 0) (0.457428 0.234333 0) (0.427228 0.235331 0) (0.397162 0.236069 0) (0.367323 0.236498 0) (0.337794 0.236568 0) (0.308639 0.236215 0) (0.279905 0.235368 0) (0.251622 0.233942 0) (0.223804 0.231835 0) (0.196451 0.228931 0) (0.16956 0.225095 0) (0.143126 0.220175 0) (0.117156 0.213996 0) (0.0916752 0.206365 0) (0.0667394 0.197064 0) (0.0424485 0.185849 0) (0.0189654 0.172448 0) (-0.0034593 0.156563 0) (-0.0244518 0.137877 0) (-0.0434692 0.116096 0) (-0.059752 0.0910222 0) (-0.0723085 0.06274 0) (-0.0800174 0.0319525 0) (-0.0825123 3.11708e-19 0) (-0.0800174 -0.0319525 0) (-0.0723085 -0.06274 0) (-0.059752 -0.0910222 0) (-0.0434692 -0.116096 0) (-0.0244518 -0.137877 0) (-0.0034593 -0.156563 0) (0.0189654 -0.172448 0) (0.0424485 -0.185849 0) (0.0667394 -0.197064 0) (0.0916752 -0.206365 0) (0.117156 -0.213996 0) (0.143126 -0.220175 0) (0.16956 -0.225095 0) (0.196451 -0.228931 0) (0.223804 -0.231835 0) (0.251622 -0.233942 0) (0.279905 -0.235368 0) (0.308639 -0.236215 0) (0.337794 -0.236568 0) (0.367323 -0.236498 0) (0.397162 -0.236069 0) (0.427228 -0.235331 0) (0.457428 -0.234333 0) (0.487655 -0.233116 0) (0.517801 -0.231718 0) (0.54775 -0.230173 0) (0.577392 -0.228511 0) (0.606621 -0.226756 0) (0.635344 -0.224921 0) (0.663485 -0.223008 0) (0.690988 -0.220998 0) (0.717824 -0.218853 0) (0.743988 -0.216512 0) (0.769502 -0.213889 0) (0.794406 -0.210876 0) (0.81875 -0.207347 0) (0.842591 -0.203156 0) (0.865979 -0.198142 0) (0.88895 -0.192128 0) (0.911522 -0.184916 0) (0.933684 -0.176282 0) (0.955388 -0.165967 0) (0.976528 -0.15366 0) (0.996916 -0.138982 0) (1.01623 -0.121465 0) (1.03393 -0.10053 0) (1.04909 -0.0755158 0) (1.06056 -0.0457126 0) (1.06165 -0.0143262 0) (1.06246 0.0460603 0) (1.05116 0.076305 0) (1.03609 0.101817 0) (1.01841 0.123255 0) (0.999046 0.141254 0) (0.978562 0.156382 0) (0.95729 0.169105 0) (0.935429 0.179799 0) (0.913093 0.188773 0) (0.890339 0.196288 0) (0.867186 0.202568 0) (0.843623 0.207809 0) (0.819619 0.212191 0) (0.79513 0.215875 0) (0.770103 0.219006 0) (0.744488 0.221714 0) (0.718246 0.22411 0) (0.691353 0.226285 0) (0.663809 0.228305 0) (0.63564 0.230214 0) (0.606895 0.232034 0) (0.577648 0.233768 0) (0.54799 0.235405 0) (0.518022 0.236924 0) (0.487853 0.238295 0) (0.457597 0.239484 0) (0.427362 0.240451 0) (0.39725 0.241154 0) (0.367356 0.241544 0) (0.337758 0.241565 0) (0.308519 0.241152 0) (0.279685 0.240231 0) (0.251283 0.238711 0) (0.223327 0.236489 0) (0.19582 0.233444 0) (0.168758 0.22944 0) (0.142142 0.224321 0) (0.115982 0.217912 0) (0.0903104 0.210017 0) (0.0651883 0.20042 0) (0.0407237 0.188875 0) (0.0170874 0.175113 0) (-0.00546127 0.158837 0) (-0.0265398 0.13974 0) (-0.045598 0.117535 0) (-0.0618739 0.0920439 0) (-0.0743839 0.0633726 0) (-0.0820344 0.0322463 0) (-0.0845016 3.11708e-19 0) (-0.0820344 -0.0322463 0) (-0.0743839 -0.0633726 0) (-0.0618739 -0.0920439 0) (-0.045598 -0.117535 0) (-0.0265398 -0.13974 0) (-0.00546127 -0.158837 0) (0.0170874 -0.175113 0) (0.0407237 -0.188875 0) (0.0651883 -0.20042 0) (0.0903104 -0.210017 0) (0.115982 -0.217912 0) (0.142142 -0.224321 0) (0.168758 -0.22944 0) (0.19582 -0.233444 0) (0.223327 -0.236489 0) (0.251283 -0.238711 0) (0.279685 -0.240231 0) (0.308519 -0.241152 0) (0.337758 -0.241565 0) (0.367356 -0.241544 0) (0.39725 -0.241154 0) (0.427362 -0.240451 0) (0.457597 -0.239484 0) (0.487853 -0.238295 0) (0.518022 -0.236924 0) (0.54799 -0.235405 0) (0.577648 -0.233768 0) (0.606895 -0.232034 0) (0.63564 -0.230214 0) (0.663809 -0.228305 0) (0.691353 -0.226285 0) (0.718246 -0.22411 0) (0.744488 -0.221714 0) (0.770103 -0.219006 0) (0.79513 -0.215875 0) (0.819619 -0.212191 0) (0.843623 -0.207809 0) (0.867186 -0.202568 0) (0.890339 -0.196288 0) (0.913093 -0.188773 0) (0.935429 -0.179799 0) (0.95729 -0.169105 0) (0.978562 -0.156382 0) (0.999046 -0.141254 0) (1.01841 -0.123255 0) (1.03609 -0.101817 0) (1.05116 -0.076305 0) (1.06246 -0.0460603 0) (1.06339 -0.0144133 0) (1.0644 0.0464063 0) (1.05327 0.0770903 0) (1.0383 0.103102 0) (1.02064 0.125045 0) (1.00124 0.143532 0) (0.980659 0.159119 0) (0.959258 0.172265 0) (0.93724 0.183346 0) (0.91473 0.19267 0) (0.891793 0.200498 0) (0.868455 0.207053 0) (0.844713 0.212532 0) (0.820542 0.217115 0) (0.795901 0.220962 0) (0.770743 0.22422 0) (0.74502 0.227023 0) (0.718693 0.229483 0) (0.691735 0.231695 0) (0.664145 0.23373 0) (0.635942 0.235637 0) (0.607174 0.237444 0) (0.577908 0.239158 0) (0.54823 0.240771 0) (0.518242 0.242262 0) (0.488049 0.243604 0) (0.457763 0.244762 0) (0.42749 0.245697 0) (0.397331 0.246362 0) (0.367378 0.246708 0) (0.337707 0.246676 0) (0.30838 0.246199 0) (0.27944 0.245196 0) (0.250914 0.243576 0) (0.222816 0.241232 0) (0.195148 0.238039 0) (0.167911 0.233858 0) (0.141109 0.228532 0) (0.114757 0.221884 0) (0.0888917 0.213718 0) (0.0635823 0.203815 0) (0.0389438 0.191933 0) (0.0151551 0.177802 0) (-0.00751587 0.16113 0) (-0.0286781 0.141616 0) (-0.0477746 0.118983 0) (-0.0640412 0.0930707 0) (-0.0765034 0.0640083 0) (-0.0840952 0.0325417 0) (-0.0865349 2.57498e-19 0) (-0.0840952 -0.0325417 0) (-0.0765034 -0.0640083 0) (-0.0640412 -0.0930707 0) (-0.0477746 -0.118983 0) (-0.0286781 -0.141616 0) (-0.00751587 -0.16113 0) (0.0151551 -0.177802 0) (0.0389438 -0.191933 0) (0.0635823 -0.203815 0) (0.0888917 -0.213718 0) (0.114757 -0.221884 0) (0.141109 -0.228532 0) (0.167911 -0.233858 0) (0.195148 -0.238039 0) (0.222816 -0.241232 0) (0.250914 -0.243576 0) (0.27944 -0.245196 0) (0.30838 -0.246199 0) (0.337707 -0.246676 0) (0.367378 -0.246708 0) (0.397331 -0.246362 0) (0.42749 -0.245697 0) (0.457763 -0.244762 0) (0.488049 -0.243604 0) (0.518242 -0.242262 0) (0.54823 -0.240771 0) (0.577908 -0.239158 0) (0.607174 -0.237444 0) (0.635942 -0.235637 0) (0.664145 -0.23373 0) (0.691735 -0.231695 0) (0.718693 -0.229483 0) (0.74502 -0.227023 0) (0.770743 -0.22422 0) (0.795901 -0.220962 0) (0.820542 -0.217115 0) (0.844713 -0.212532 0) (0.868455 -0.207053 0) (0.891793 -0.200498 0) (0.91473 -0.19267 0) (0.93724 -0.183346 0) (0.959258 -0.172265 0) (0.980659 -0.159119 0) (1.00124 -0.143532 0) (1.02064 -0.125045 0) (1.0383 -0.103102 0) (1.05327 -0.0770903 0) (1.0644 -0.0464063 0) (1.06518 -0.0145002 0) (1.06638 0.0467506 0) (1.05543 0.0778718 0) (1.04056 0.104383 0) (1.02292 0.126837 0) (1.00348 0.145817 0) (0.98282 0.161868 0) (0.961292 0.175446 0) (0.939119 0.186923 0) (0.916436 0.196607 0) (0.893315 0.204757 0) (0.86979 0.211597 0) (0.845864 0.217324 0) (0.821519 0.222117 0) (0.79672 0.226138 0) (0.771424 0.229534 0) (0.745586 0.23244 0) (0.719166 0.234972 0) (0.692138 0.237228 0) (0.664495 0.239284 0) (0.636254 0.241194 0) (0.607458 0.24299 0) (0.578169 0.244685 0) (0.548472 0.246272 0) (0.518461 0.247736 0) (0.488243 0.249047 0) (0.457924 0.250173 0) (0.427611 0.251071 0) (0.397403 0.251696 0) (0.367387 0.251994 0) (0.33764 0.251904 0) (0.30822 0.251356 0) (0.279169 0.250266 0) (0.250514 0.248539 0) (0.222267 0.246065 0) (0.194435 0.242716 0) (0.167018 0.23835 0) (0.140026 0.232808 0) (0.113478 0.225913 0) (0.0874175 0.217467 0) (0.0619199 0.207251 0) (0.0371075 0.195023 0) (0.0131673 0.180516 0) (-0.00962432 0.163441 0) (-0.030868 0.143504 0) (-0.0500001 0.120439 0) (-0.0662552 0.0941025 0) (-0.0786681 0.064647 0) (-0.0862009 0.0328387 0) (-0.0886133 3.65918e-19 0) (-0.0862009 -0.0328387 0) (-0.0786681 -0.064647 0) (-0.0662552 -0.0941025 0) (-0.0500001 -0.120439 0) (-0.030868 -0.143504 0) (-0.00962432 -0.163441 0) (0.0131673 -0.180516 0) (0.0371075 -0.195023 0) (0.0619199 -0.207251 0) (0.0874175 -0.217467 0) (0.113478 -0.225913 0) (0.140026 -0.232808 0) (0.167018 -0.23835 0) (0.194435 -0.242716 0) (0.222267 -0.246065 0) (0.250514 -0.248539 0) (0.279169 -0.250266 0) (0.30822 -0.251356 0) (0.33764 -0.251904 0) (0.367387 -0.251994 0) (0.397403 -0.251696 0) (0.427611 -0.251071 0) (0.457924 -0.250173 0) (0.488243 -0.249047 0) (0.518461 -0.247736 0) (0.548472 -0.246272 0) (0.578169 -0.244685 0) (0.607458 -0.24299 0) (0.636254 -0.241194 0) (0.664495 -0.239284 0) (0.692138 -0.237228 0) (0.719166 -0.234972 0) (0.745586 -0.23244 0) (0.771424 -0.229534 0) (0.79672 -0.226138 0) (0.821519 -0.222117 0) (0.845864 -0.217324 0) (0.86979 -0.211597 0) (0.893315 -0.204757 0) (0.916436 -0.196607 0) (0.939119 -0.186923 0) (0.961292 -0.175446 0) (0.98282 -0.161868 0) (1.00348 -0.145817 0) (1.02292 -0.126837 0) (1.04056 -0.104383 0) (1.05543 -0.0778718 0) (1.06638 -0.0467506 0) (1.06702 -0.0145869 0) (1.06841 0.0470934 0) (1.05763 0.0786496 0) (1.04286 0.105662 0) (1.02526 0.128628 0) (1.00579 0.148108 0) (0.985046 0.164632 0) (0.963394 0.178649 0) (0.941068 0.19053 0) (0.918211 0.200582 0) (0.894905 0.209064 0) (0.871191 0.216199 0) (0.847078 0.222185 0) (0.822555 0.227199 0) (0.797592 0.231403 0) (0.772151 0.234947 0) (0.746189 0.237966 0) (0.719669 0.240578 0) (0.692562 0.242885 0) (0.66486 0.244968 0) (0.636577 0.246886 0) (0.607748 0.248674 0) (0.578434 0.250351 0) (0.548713 0.251914 0) (0.518679 0.253349 0) (0.488433 0.254628 0) (0.458081 0.255718 0) (0.427726 0.256577 0) (0.397464 0.257158 0) (0.367383 0.257404 0) (0.337555 0.257251 0) (0.308037 0.256626 0) (0.27887 0.255443 0) (0.250079 0.253602 0) (0.221679 0.250989 0) (0.193677 0.247475 0) (0.166076 0.242916 0) (0.13889 0.237151 0) (0.112144 0.229999 0) (0.0858861 0.221264 0) (0.0601993 0.210727 0) (0.0352131 0.198146 0) (0.0111225 0.183255 0) (-0.0117879 0.165771 0) (-0.0331105 0.145405 0) (-0.0522757 0.121903 0) (-0.0685169 0.0951394 0) (-0.0808792 0.0652888 0) (-0.0883528 0.0331374 0) (-0.0907381 4.20128e-19 0) (-0.0883528 -0.0331374 0) (-0.0808792 -0.0652888 0) (-0.0685169 -0.0951394 0) (-0.0522757 -0.121903 0) (-0.0331105 -0.145405 0) (-0.0117879 -0.165771 0) (0.0111225 -0.183255 0) (0.0352131 -0.198146 0) (0.0601993 -0.210727 0) (0.0858861 -0.221264 0) (0.112144 -0.229999 0) (0.13889 -0.237151 0) (0.166076 -0.242916 0) (0.193677 -0.247475 0) (0.221679 -0.250989 0) (0.250079 -0.253602 0) (0.27887 -0.255443 0) (0.308037 -0.256626 0) (0.337555 -0.257251 0) (0.367383 -0.257404 0) (0.397464 -0.257158 0) (0.427726 -0.256577 0) (0.458081 -0.255718 0) (0.488433 -0.254628 0) (0.518679 -0.253349 0) (0.548713 -0.251914 0) (0.578434 -0.250351 0) (0.607748 -0.248674 0) (0.636577 -0.246886 0) (0.66486 -0.244968 0) (0.692562 -0.242885 0) (0.719669 -0.240578 0) (0.746189 -0.237966 0) (0.772151 -0.234947 0) (0.797592 -0.231403 0) (0.822555 -0.227199 0) (0.847078 -0.222185 0) (0.871191 -0.216199 0) (0.894905 -0.209064 0) (0.918211 -0.200582 0) (0.941068 -0.19053 0) (0.963394 -0.178649 0) (0.985046 -0.164632 0) (1.00579 -0.148108 0) (1.02526 -0.128628 0) (1.04286 -0.105662 0) (1.05763 -0.0786496 0) (1.06841 -0.0470934 0) (1.06891 -0.0146734 0) (1.07049 0.0474348 0) (1.05988 0.0794238 0) (1.04522 0.106938 0) (1.02766 0.130421 0) (1.00817 0.150405 0) (0.987339 0.167408 0) (0.965566 0.181873 0) (0.943089 0.194167 0) (0.920059 0.204597 0) (0.896567 0.213421 0) (0.872661 0.220861 0) (0.848358 0.227114 0) (0.823652 0.232359 0) (0.798519 0.236758 0) (0.772926 0.24046 0) (0.746833 0.243602 0) (0.720203 0.246303 0) (0.693011 0.24867 0) (0.665243 0.250786 0) (0.636911 0.252715 0) (0.608045 0.2545 0) (0.578702 0.25616 0) (0.548956 0.257699 0) (0.518895 0.259104 0) (0.48862 0.260349 0) (0.458231 0.261402 0) (0.427831 0.262219 0) (0.397513 0.262751 0) (0.367362 0.26294 0) (0.337449 0.262719 0) (0.307828 0.262012 0) (0.27854 0.260728 0) (0.249609 0.258765 0) (0.22105 0.256006 0) (0.192872 0.252319 0) (0.165083 0.247558 0) (0.1377 0.241559 0) (0.110753 0.234143 0) (0.0842958 0.225111 0) (0.0584191 0.214244 0) (0.0332594 0.201302 0) (0.00901947 0.18602 0) (-0.0140078 0.16812 0) (-0.035407 0.147319 0) (-0.0546025 0.123376 0) (-0.0708276 0.0961817 0) (-0.0831379 0.0659339 0) (-0.0905521 0.0334377 0) (-0.0929105 4.20128e-19 0) (-0.0905521 -0.0334377 0) (-0.0831379 -0.0659339 0) (-0.0708276 -0.0961817 0) (-0.0546025 -0.123376 0) (-0.035407 -0.147319 0) (-0.0140078 -0.16812 0) (0.00901947 -0.18602 0) (0.0332594 -0.201302 0) (0.0584191 -0.214244 0) (0.0842958 -0.225111 0) (0.110753 -0.234143 0) (0.1377 -0.241559 0) (0.165083 -0.247558 0) (0.192872 -0.252319 0) (0.22105 -0.256006 0) (0.249609 -0.258765 0) (0.27854 -0.260728 0) (0.307828 -0.262012 0) (0.337449 -0.262719 0) (0.367362 -0.26294 0) (0.397513 -0.262751 0) (0.427831 -0.262219 0) (0.458231 -0.261402 0) (0.48862 -0.260349 0) (0.518895 -0.259104 0) (0.548956 -0.257699 0) (0.578702 -0.25616 0) (0.608045 -0.2545 0) (0.636911 -0.252715 0) (0.665243 -0.250786 0) (0.693011 -0.24867 0) (0.720203 -0.246303 0) (0.746833 -0.243602 0) (0.772926 -0.24046 0) (0.798519 -0.236758 0) (0.823652 -0.232359 0) (0.848358 -0.227114 0) (0.872661 -0.220861 0) (0.896567 -0.213421 0) (0.920059 -0.204597 0) (0.943089 -0.194167 0) (0.965566 -0.181873 0) (0.987339 -0.167408 0) (1.00817 -0.150405 0) (1.02766 -0.130421 0) (1.04522 -0.106938 0) (1.05988 -0.0794238 0) (1.07049 -0.0474348 0) (1.07084 -0.0147599 0) (1.07261 0.0477751 0) (1.06218 0.0801946 0) (1.04764 0.108211 0) (1.03012 0.132214 0) (1.0106 0.152708 0) (0.989699 0.170198 0) (0.967809 0.185118 0) (0.945182 0.197834 0) (0.921981 0.208651 0) (0.898303 0.217825 0) (0.874203 0.22558 0) (0.849706 0.232113 0) (0.824812 0.237599 0) (0.799503 0.242203 0) (0.773751 0.246073 0) (0.747519 0.249347 0) (0.720773 0.252147 0) (0.693486 0.254581 0) (0.665646 0.256738 0) (0.637258 0.258685 0) (0.608351 0.260469 0) (0.578974 0.262115 0) (0.549199 0.263631 0) (0.519109 0.265005 0) (0.488801 0.266215 0) (0.458374 0.267227 0) (0.427926 0.267999 0) (0.397549 0.268478 0) (0.367324 0.268605 0) (0.337321 0.268311 0) (0.307592 0.267514 0) (0.278177 0.266122 0) (0.2491 0.264029 0) (0.220377 0.261116 0) (0.192019 0.257248 0) (0.164037 0.252276 0) (0.136453 0.246035 0) (0.109302 0.238345 0) (0.0826447 0.229007 0) (0.0565776 0.217802 0) (0.0312447 0.20449 0) (0.00685673 0.18881 0) (-0.0162854 0.170487 0) (-0.0377586 0.149246 0) (-0.0569818 0.124857 0) (-0.0731884 0.0972292 0) (-0.0854455 0.0665823 0) (-0.0928002 0.0337398 0) (-0.0951319 3.65918e-19 0) (-0.0928002 -0.0337398 0) (-0.0854455 -0.0665823 0) (-0.0731884 -0.0972292 0) (-0.0569818 -0.124857 0) (-0.0377586 -0.149246 0) (-0.0162854 -0.170487 0) (0.00685673 -0.18881 0) (0.0312447 -0.20449 0) (0.0565776 -0.217802 0) (0.0826447 -0.229007 0) (0.109302 -0.238345 0) (0.136453 -0.246035 0) (0.164037 -0.252276 0) (0.192019 -0.257248 0) (0.220377 -0.261116 0) (0.2491 -0.264029 0) (0.278177 -0.266122 0) (0.307592 -0.267514 0) (0.337321 -0.268311 0) (0.367324 -0.268605 0) (0.397549 -0.268478 0) (0.427926 -0.267999 0) (0.458374 -0.267227 0) (0.488801 -0.266215 0) (0.519109 -0.265005 0) (0.549199 -0.263631 0) (0.578974 -0.262115 0) (0.608351 -0.260469 0) (0.637258 -0.258685 0) (0.665646 -0.256738 0) (0.693486 -0.254581 0) (0.720773 -0.252147 0) (0.747519 -0.249347 0) (0.773751 -0.246073 0) (0.799503 -0.242203 0) (0.824812 -0.237599 0) (0.849706 -0.232113 0) (0.874203 -0.22558 0) (0.898303 -0.217825 0) (0.921981 -0.208651 0) (0.945182 -0.197834 0) (0.967809 -0.185118 0) (0.989699 -0.170198 0) (1.0106 -0.152708 0) (1.03012 -0.132214 0) (1.04764 -0.108211 0) (1.06218 -0.0801946 0) (1.07261 -0.0477751 0) (1.07284 -0.0148463 0) (1.07479 0.0481143 0) (1.06453 0.0809621 0) (1.0501 0.109481 0) (1.03264 0.134007 0) (1.0131 0.155018 0) (0.992129 0.173 0) (0.970124 0.188384 0) (0.947351 0.201531 0) (0.923978 0.212744 0) (0.900113 0.222279 0) (0.875819 0.230359 0) (0.851125 0.23718 0) (0.826039 0.242919 0) (0.800548 0.247738 0) (0.774629 0.251787 0) (0.748251 0.255203 0) (0.72138 0.258112 0) (0.693992 0.260622 0) (0.666071 0.262826 0) (0.63762 0.264796 0) (0.608665 0.266584 0) (0.579251 0.268219 0) (0.549442 0.269712 0) (0.519321 0.271056 0) (0.488978 0.272229 0) (0.458509 0.273198 0) (0.428009 0.27392 0) (0.397569 0.274343 0) (0.367266 0.274403 0) (0.337168 0.274028 0) (0.307326 0.273135 0) (0.277778 0.271628 0) (0.248549 0.269397 0) (0.219657 0.266321 0) (0.191114 0.262262 0) (0.162936 0.25707 0) (0.135147 0.250578 0) (0.10779 0.242606 0) (0.0809311 0.232953 0) (0.054673 0.221401 0) (0.0291675 0.207712 0) (0.00463284 0.191626 0) (-0.018622 0.172873 0) (-0.0401666 0.151186 0) (-0.0594148 0.126347 0) (-0.0756007 0.0982822 0) (-0.0878033 0.0672341 0) (-0.0950983 0.0340437 0) (-0.0974036 3.65918e-19 0) (-0.0950983 -0.0340437 0) (-0.0878033 -0.0672341 0) (-0.0756007 -0.0982822 0) (-0.0594148 -0.126347 0) (-0.0401666 -0.151186 0) (-0.018622 -0.172873 0) (0.00463284 -0.191626 0) (0.0291675 -0.207712 0) (0.054673 -0.221401 0) (0.0809311 -0.232953 0) (0.10779 -0.242606 0) (0.135147 -0.250578 0) (0.162936 -0.25707 0) (0.191114 -0.262262 0) (0.219657 -0.266321 0) (0.248549 -0.269397 0) (0.277778 -0.271628 0) (0.307326 -0.273135 0) (0.337168 -0.274028 0) (0.367266 -0.274403 0) (0.397569 -0.274343 0) (0.428009 -0.27392 0) (0.458509 -0.273198 0) (0.488978 -0.272229 0) (0.519321 -0.271056 0) (0.549442 -0.269712 0) (0.579251 -0.268219 0) (0.608665 -0.266584 0) (0.63762 -0.264796 0) (0.666071 -0.262826 0) (0.693992 -0.260622 0) (0.72138 -0.258112 0) (0.748251 -0.255203 0) (0.774629 -0.251787 0) (0.800548 -0.247738 0) (0.826039 -0.242919 0) (0.851125 -0.23718 0) (0.875819 -0.230359 0) (0.900113 -0.222279 0) (0.923978 -0.212744 0) (0.947351 -0.201531 0) (0.970124 -0.188384 0) (0.992129 -0.173 0) (1.0131 -0.155018 0) (1.03264 -0.134007 0) (1.0501 -0.109481 0) (1.06453 -0.0809621 0) (1.07479 -0.0481143 0) (1.07488 -0.0149329 0) (1.07702 0.0484527 0) (1.06693 0.0817264 0) (1.05263 0.110748 0) (1.03521 0.135801 0) (1.01567 0.157332 0) (0.994629 0.175815 0) (0.972513 0.19167 0) (0.949595 0.205256 0) (0.926053 0.216875 0) (0.902001 0.226781 0) (0.87751 0.235196 0) (0.852617 0.242316 0) (0.827334 0.248318 0) (0.801656 0.253363 0) (0.775565 0.257601 0) (0.749032 0.26117 0) (0.722029 0.264197 0) (0.694529 0.266792 0) (0.666519 0.269052 0) (0.637999 0.271052 0) (0.60899 0.272848 0) (0.579532 0.274475 0) (0.549687 0.275946 0) (0.519529 0.277259 0) (0.489148 0.278393 0) (0.458634 0.279317 0) (0.42808 0.279986 0) (0.397572 0.280347 0) (0.367186 0.280334 0) (0.336988 0.279873 0) (0.307027 0.278877 0) (0.277341 0.277246 0) (0.247955 0.274869 0) (0.218888 0.271621 0) (0.190155 0.267362 0) (0.161776 0.261941 0) (0.13378 0.25519 0) (0.106215 0.246925 0) (0.079153 0.236949 0) (0.0527038 0.225042 0) (0.0270262 0.210966 0) (0.00234633 0.194468 0) (-0.0210191 0.175278 0) (-0.0426325 0.153139 0) (-0.0619029 0.127846 0) (-0.0780658 0.0993408 0) (-0.0902127 0.0678894 0) (-0.0974479 0.0343495 0) (-0.099727 2.03288e-19 0) (-0.0974479 -0.0343495 0) (-0.0902127 -0.0678894 0) (-0.0780658 -0.0993408 0) (-0.0619029 -0.127846 0) (-0.0426325 -0.153139 0) (-0.0210191 -0.175278 0) (0.00234633 -0.194468 0) (0.0270262 -0.210966 0) (0.0527038 -0.225042 0) (0.079153 -0.236949 0) (0.106215 -0.246925 0) (0.13378 -0.25519 0) (0.161776 -0.261941 0) (0.190155 -0.267362 0) (0.218888 -0.271621 0) (0.247955 -0.274869 0) (0.277341 -0.277246 0) (0.307027 -0.278877 0) (0.336988 -0.279873 0) (0.367186 -0.280334 0) (0.397572 -0.280347 0) (0.42808 -0.279986 0) (0.458634 -0.279317 0) (0.489148 -0.278393 0) (0.519529 -0.277259 0) (0.549687 -0.275946 0) (0.579532 -0.274475 0) (0.60899 -0.272848 0) (0.637999 -0.271052 0) (0.666519 -0.269052 0) (0.694529 -0.266792 0) (0.722029 -0.264197 0) (0.749032 -0.26117 0) (0.775565 -0.257601 0) (0.801656 -0.253363 0) (0.827334 -0.248318 0) (0.852617 -0.242316 0) (0.87751 -0.235196 0) (0.902001 -0.226781 0) (0.926053 -0.216875 0) (0.949595 -0.205256 0) (0.972513 -0.19167 0) (0.994629 -0.175815 0) (1.01567 -0.157332 0) (1.03521 -0.135801 0) (1.05263 -0.110748 0) (1.06693 -0.0817264 0) (1.07702 -0.0484527 0) (1.07699 -0.0150195 0) (1.0793 0.0487905 0) (1.06939 0.0824876 0) (1.05521 0.112012 0) (1.03785 0.137595 0) (1.0183 0.159653 0) (0.997201 0.178642 0) (0.974978 0.194977 0) (0.951918 0.209011 0) (0.928207 0.221045 0) (0.903969 0.231331 0) (0.87928 0.240092 0) (0.854184 0.247521 0) (0.828701 0.253796 0) (0.802831 0.259078 0) (0.77656 0.263516 0) (0.749865 0.267249 0) (0.722721 0.270404 0) (0.695102 0.273094 0) (0.666995 0.275417 0) (0.638398 0.277454 0) (0.609327 0.279264 0) (0.57982 0.280885 0) (0.549932 0.282337 0) (0.519735 0.283618 0) (0.489311 0.284713 0) (0.458748 0.285588 0) (0.428135 0.2862 0) (0.397555 0.286494 0) (0.367082 0.286403 0) (0.336779 0.285848 0) (0.306693 0.284741 0) (0.276863 0.282979 0) (0.247314 0.280447 0) (0.218067 0.277018 0) (0.18914 0.27255 0) (0.160556 0.266891 0) (0.13235 0.25987 0) (0.104575 0.251304 0) (0.0773085 0.240995 0) (0.0506679 0.228724 0) (0.0248191 0.214255 0) (-4.34595e-06 0.197335 0) (-0.023478 0.177702 0) (-0.0451575 0.155106 0) (-0.0644474 0.129353 0) (-0.080585 0.100405 0) (-0.092675 0.0685483 0) (-0.0998504 0.0346572 0) (-0.102103 1.49078e-19 0) (-0.0998504 -0.0346572 0) (-0.092675 -0.0685483 0) (-0.080585 -0.100405 0) (-0.0644474 -0.129353 0) (-0.0451575 -0.155106 0) (-0.023478 -0.177702 0) (-4.34595e-06 -0.197335 0) (0.0248191 -0.214255 0) (0.0506679 -0.228724 0) (0.0773085 -0.240995 0) (0.104575 -0.251304 0) (0.13235 -0.25987 0) (0.160556 -0.266891 0) (0.18914 -0.27255 0) (0.218067 -0.277018 0) (0.247314 -0.280447 0) (0.276863 -0.282979 0) (0.306693 -0.284741 0) (0.336779 -0.285848 0) (0.367082 -0.286403 0) (0.397555 -0.286494 0) (0.428135 -0.2862 0) (0.458748 -0.285588 0) (0.489311 -0.284713 0) (0.519735 -0.283618 0) (0.549932 -0.282337 0) (0.57982 -0.280885 0) (0.609327 -0.279264 0) (0.638398 -0.277454 0) (0.666995 -0.275417 0) (0.695102 -0.273094 0) (0.722721 -0.270404 0) (0.749865 -0.267249 0) (0.77656 -0.263516 0) (0.802831 -0.259078 0) (0.828701 -0.253796 0) (0.854184 -0.247521 0) (0.87928 -0.240092 0) (0.903969 -0.231331 0) (0.928207 -0.221045 0) (0.951918 -0.209011 0) (0.974978 -0.194977 0) (0.997201 -0.178642 0) (1.0183 -0.159653 0) (1.03785 -0.137595 0) (1.05521 -0.112012 0) (1.06939 -0.0824876 0) (1.0793 -0.0487905 0) (1.07915 -0.0151065 0) (1.08164 0.0491277 0) (1.0719 0.083246 0) (1.05785 0.113274 0) (1.04056 0.139389 0) (1.02101 0.161978 0) (0.999846 0.181481 0) (0.97752 0.198304 0) (0.95432 0.212795 0) (0.930443 0.225253 0) (0.906018 0.23593 0) (0.88113 0.245046 0) (0.85583 0.252795 0) (0.830143 0.259354 0) (0.804075 0.264884 0) (0.777618 0.269532 0) (0.750754 0.27344 0) (0.72346 0.276733 0) (0.695713 0.279527 0) (0.6675 0.281923 0) (0.638817 0.284003 0) (0.609678 0.285832 0) (0.580115 0.287452 0) (0.550179 0.288886 0) (0.519936 0.290137 0) (0.489465 0.29119 0) (0.458849 0.292014 0) (0.428173 0.292565 0) (0.397517 0.292787 0) (0.366951 0.29261 0) (0.336537 0.291955 0) (0.306322 0.290729 0) (0.276342 0.288827 0) (0.246624 0.286132 0) (0.217192 0.282512 0) (0.188066 0.277827 0) (0.159274 0.271919 0) (0.130855 0.264619 0) (0.102867 0.255743 0) (0.0753956 0.245092 0) (0.0485638 0.232448 0) (0.0225446 0.217577 0) (-0.00242077 0.200228 0) (-0.0260004 0.180146 0) (-0.0477431 0.157086 0) (-0.0670497 0.130869 0) (-0.0831598 0.101475 0) (-0.0951916 0.0692109 0) (-0.102307 0.0349668 0) (-0.104535 9.48677e-20 0) (-0.102307 -0.0349668 0) (-0.0951916 -0.0692109 0) (-0.0831598 -0.101475 0) (-0.0670497 -0.130869 0) (-0.0477431 -0.157086 0) (-0.0260004 -0.180146 0) (-0.00242077 -0.200228 0) (0.0225446 -0.217577 0) (0.0485638 -0.232448 0) (0.0753956 -0.245092 0) (0.102867 -0.255743 0) (0.130855 -0.264619 0) (0.159274 -0.271919 0) (0.188066 -0.277827 0) (0.217192 -0.282512 0) (0.246624 -0.286132 0) (0.276342 -0.288827 0) (0.306322 -0.290729 0) (0.336537 -0.291955 0) (0.366951 -0.29261 0) (0.397517 -0.292787 0) (0.428173 -0.292565 0) (0.458849 -0.292014 0) (0.489465 -0.29119 0) (0.519936 -0.290137 0) (0.550179 -0.288886 0) (0.580115 -0.287452 0) (0.609678 -0.285832 0) (0.638817 -0.284003 0) (0.6675 -0.281923 0) (0.695713 -0.279527 0) (0.72346 -0.276733 0) (0.750754 -0.27344 0) (0.777618 -0.269532 0) (0.804075 -0.264884 0) (0.830143 -0.259354 0) (0.85583 -0.252795 0) (0.88113 -0.245046 0) (0.906018 -0.23593 0) (0.930443 -0.225253 0) (0.95432 -0.212795 0) (0.97752 -0.198304 0) (0.999846 -0.181481 0) (1.02101 -0.161978 0) (1.04056 -0.139389 0) (1.05785 -0.113274 0) (1.0719 -0.083246 0) (1.08164 -0.0491277 0) (1.08137 -0.0151937 0) (1.08404 0.0494646 0) (1.07447 0.0840016 0) (1.06054 0.114532 0) (1.04333 0.141183 0) (1.02378 0.164309 0) (1.00257 0.184333 0) (0.980141 0.201651 0) (0.956805 0.216608 0) (0.932762 0.229499 0) (0.908151 0.240576 0) (0.883063 0.250058 0) (0.857556 0.258138 0) (0.831662 0.264992 0) (0.805391 0.27078 0) (0.778743 0.275651 0) (0.751702 0.279743 0) (0.724249 0.283185 0) (0.696366 0.286094 0) (0.668038 0.288571 0) (0.63926 0.290702 0) (0.610044 0.292556 0) (0.580418 0.294179 0) (0.550427 0.295598 0) (0.520134 0.296818 0) (0.489611 0.297828 0) (0.458937 0.298598 0) (0.428193 0.299084 0) (0.397454 0.299228 0) (0.366791 0.29896 0) (0.33626 0.298197 0) (0.305909 0.296844 0) (0.275773 0.294793 0) (0.245882 0.291925 0) (0.21626 0.288106 0) (0.18693 0.283192 0) (0.157926 0.277026 0) (0.129291 0.269438 0) (0.10109 0.260242 0) (0.0734124 0.24924 0) (0.0463894 0.236214 0) (0.0202009 0.220933 0) (-0.00490456 0.203148 0) (-0.0285876 0.182608 0) (-0.0503908 0.15908 0) (-0.0697113 0.132395 0) (-0.0857915 0.102551 0) (-0.0977642 0.0698774 0) (-0.10482 0.0352785 0) (-0.107022 2.03288e-19 0) (-0.10482 -0.0352785 0) (-0.0977642 -0.0698774 0) (-0.0857915 -0.102551 0) (-0.0697113 -0.132395 0) (-0.0503908 -0.15908 0) (-0.0285876 -0.182608 0) (-0.00490456 -0.203148 0) (0.0202009 -0.220933 0) (0.0463894 -0.236214 0) (0.0734124 -0.24924 0) (0.10109 -0.260242 0) (0.129291 -0.269438 0) (0.157926 -0.277026 0) (0.18693 -0.283192 0) (0.21626 -0.288106 0) (0.245882 -0.291925 0) (0.275773 -0.294793 0) (0.305909 -0.296844 0) (0.33626 -0.298197 0) (0.366791 -0.29896 0) (0.397454 -0.299228 0) (0.428193 -0.299084 0) (0.458937 -0.298598 0) (0.489611 -0.297828 0) (0.520134 -0.296818 0) (0.550427 -0.295598 0) (0.580418 -0.294179 0) (0.610044 -0.292556 0) (0.63926 -0.290702 0) (0.668038 -0.288571 0) (0.696366 -0.286094 0) (0.724249 -0.283185 0) (0.751702 -0.279743 0) (0.778743 -0.275651 0) (0.805391 -0.27078 0) (0.831662 -0.264992 0) (0.857556 -0.258138 0) (0.883063 -0.250058 0) (0.908151 -0.240576 0) (0.932762 -0.229499 0) (0.956805 -0.216608 0) (0.980141 -0.201651 0) (1.00257 -0.184333 0) (1.02378 -0.164309 0) (1.04333 -0.141183 0) (1.06054 -0.114532 0) (1.07447 -0.0840016 0) (1.08404 -0.0494646 0) (1.08365 -0.0152814 0) (1.08649 0.0498013 0) (1.07709 0.0847548 0) (1.0633 0.115789 0) (1.04616 0.142978 0) (1.02662 0.166645 0) (1.00536 0.187196 0) (0.982843 0.205017 0) (0.959373 0.220449 0) (0.935167 0.233783 0) (0.91037 0.24527 0) (0.885082 0.255128 0) (0.859366 0.26355 0) (0.833261 0.27071 0) (0.806783 0.276767 0) (0.779936 0.281871 0) (0.752711 0.286159 0) (0.725092 0.289761 0) (0.697063 0.292794 0) (0.66861 0.295361 0) (0.639729 0.297552 0) (0.610427 0.299437 0) (0.58073 0.301068 0) (0.550678 0.302473 0) (0.520328 0.303664 0) (0.489747 0.30463 0) (0.459009 0.305343 0) (0.428191 0.305759 0) (0.397366 0.30582 0) (0.366598 0.305454 0) (0.335945 0.304576 0) (0.305452 0.303087 0) (0.275155 0.300879 0) (0.245085 0.297827 0) (0.215267 0.293799 0) (0.18573 0.288647 0) (0.156511 0.282214 0) (0.127658 0.274327 0) (0.0992403 0.264802 0) (0.0713566 0.253439 0) (0.0441428 0.240023 0) (0.0177861 0.224322 0) (-0.0074574 0.206094 0) (-0.0312414 0.185091 0) (-0.0531021 0.161087 0) (-0.0724336 0.13393 0) (-0.0884819 0.103633 0) (-0.100394 0.0705477 0) (-0.10739 0.0355922 0) (-0.109567 9.48677e-20 0) (-0.10739 -0.0355922 0) (-0.100394 -0.0705477 0) (-0.0884819 -0.103633 0) (-0.0724336 -0.13393 0) (-0.0531021 -0.161087 0) (-0.0312414 -0.185091 0) (-0.0074574 -0.206094 0) (0.0177861 -0.224322 0) (0.0441428 -0.240023 0) (0.0713566 -0.253439 0) (0.0992403 -0.264802 0) (0.127658 -0.274327 0) (0.156511 -0.282214 0) (0.18573 -0.288647 0) (0.215267 -0.293799 0) (0.245085 -0.297827 0) (0.275155 -0.300879 0) (0.305452 -0.303087 0) (0.335945 -0.304576 0) (0.366598 -0.305454 0) (0.397366 -0.30582 0) (0.428191 -0.305759 0) (0.459009 -0.305343 0) (0.489747 -0.30463 0) (0.520328 -0.303664 0) (0.550678 -0.302473 0) (0.58073 -0.301068 0) (0.610427 -0.299437 0) (0.639729 -0.297552 0) (0.66861 -0.295361 0) (0.697063 -0.292794 0) (0.725092 -0.289761 0) (0.752711 -0.286159 0) (0.779936 -0.281871 0) (0.806783 -0.276767 0) (0.833261 -0.27071 0) (0.859366 -0.26355 0) (0.885082 -0.255128 0) (0.91037 -0.24527 0) (0.935167 -0.233783 0) (0.959373 -0.220449 0) (0.982843 -0.205017 0) (1.00536 -0.187196 0) (1.02662 -0.166645 0) (1.04616 -0.142978 0) (1.0633 -0.115789 0) (1.07709 -0.0847548 0) (1.08649 -0.0498013 0) (1.08599 -0.0153695 0) (1.08901 0.0501382 0) (1.07978 0.0855055 0) (1.06613 0.117042 0) (1.04906 0.144772 0) (1.02954 0.168986 0) (1.00824 0.190071 0) (0.985627 0.208404 0) (0.962026 0.224319 0) (0.937659 0.238106 0) (0.912678 0.250013 0) (0.887189 0.260257 0) (0.861263 0.269031 0) (0.834943 0.276507 0) (0.808254 0.282845 0) (0.781203 0.288193 0) (0.753786 0.292689 0) (0.725993 0.296461 0) (0.697809 0.299628 0) (0.669221 0.302295 0) (0.640226 0.304554 0) (0.61083 0.306477 0) (0.581053 0.30812 0) (0.550932 0.309516 0) (0.520517 0.310678 0) (0.489872 0.311599 0) (0.459064 0.312252 0) (0.428167 0.312594 0) (0.397248 0.312566 0) (0.366371 0.312095 0) (0.335589 0.311093 0) (0.304948 0.30946 0) (0.274484 0.307084 0) (0.244229 0.303841 0) (0.214211 0.299593 0) (0.184463 0.294194 0) (0.155025 0.287482 0) (0.125951 0.279287 0) (0.0973169 0.269423 0) (0.0692263 0.25769 0) (0.041822 0.243874 0) (0.0152986 0.227747 0) (-0.010081 0.209066 0) (-0.0339632 0.187592 0) (-0.0558785 0.163108 0) (-0.0752182 0.135474 0) (-0.0912322 0.104722 0) (-0.103083 0.0712221 0) (-0.11002 0.0359082 0) (-0.112171 -1.35525e-20 0) (-0.11002 -0.0359082 0) (-0.103083 -0.0712221 0) (-0.0912322 -0.104722 0) (-0.0752182 -0.135474 0) (-0.0558785 -0.163108 0) (-0.0339632 -0.187592 0) (-0.010081 -0.209066 0) (0.0152986 -0.227747 0) (0.041822 -0.243874 0) (0.0692263 -0.25769 0) (0.0973169 -0.269423 0) (0.125951 -0.279287 0) (0.155025 -0.287482 0) (0.184463 -0.294194 0) (0.214211 -0.299593 0) (0.244229 -0.303841 0) (0.274484 -0.307084 0) (0.304948 -0.30946 0) (0.335589 -0.311093 0) (0.366371 -0.312095 0) (0.397248 -0.312566 0) (0.428167 -0.312594 0) (0.459064 -0.312252 0) (0.489872 -0.311599 0) (0.520517 -0.310678 0) (0.550932 -0.309516 0) (0.581053 -0.30812 0) (0.61083 -0.306477 0) (0.640226 -0.304554 0) (0.669221 -0.302295 0) (0.697809 -0.299628 0) (0.725993 -0.296461 0) (0.753786 -0.292689 0) (0.781203 -0.288193 0) (0.808254 -0.282845 0) (0.834943 -0.276507 0) (0.861263 -0.269031 0) (0.887189 -0.260257 0) (0.912678 -0.250013 0) (0.937659 -0.238106 0) (0.962026 -0.224319 0) (0.985627 -0.208404 0) (1.00824 -0.190071 0) (1.02954 -0.168986 0) (1.04906 -0.144772 0) (1.06613 -0.117042 0) (1.07978 -0.0855055 0) (1.08901 -0.0501382 0) (1.0884 -0.0154582 0) (1.09159 0.0504753 0) (1.08253 0.0862541 0) (1.06901 0.118293 0) (1.05203 0.146566 0) (1.03253 0.171332 0) (1.01119 0.192957 0) (0.988495 0.211809 0) (0.964767 0.228217 0) (0.94024 0.242466 0) (0.915076 0.254803 0) (0.889386 0.265444 0) (0.863248 0.274581 0) (0.836711 0.282385 0) (0.809806 0.289015 0) (0.782545 0.294618 0) (0.75493 0.299332 0) (0.726953 0.303286 0) (0.698605 0.306597 0) (0.669874 0.309374 0) (0.640756 0.311709 0) (0.611255 0.313677 0) (0.581388 0.315338 0) (0.551189 0.316728 0) (0.520703 0.317862 0) (0.489985 0.318737 0) (0.459101 0.319327 0) (0.428117 0.319591 0) (0.397099 0.319468 0) (0.366105 0.318884 0) (0.335189 0.317751 0) (0.304393 0.315965 0) (0.273757 0.313412 0) (0.243311 0.309967 0) (0.213089 0.30549 0) (0.183125 0.299832 0) (0.153466 0.292832 0) (0.124169 0.284319 0) (0.0953169 0.274105 0) (0.0670191 0.261993 0) (0.0394251 0.247769 0) (0.0127363 0.231205 0) (-0.0127772 0.212066 0) (-0.0367549 0.190114 0) (-0.0587217 0.165144 0) (-0.0780667 0.137027 0) (-0.0940444 0.105816 0) (-0.105833 0.0719006 0) (-0.11271 0.0362263 0) (-0.114836 -1.76183e-19 0) (-0.11271 -0.0362263 0) (-0.105833 -0.0719006 0) (-0.0940444 -0.105816 0) (-0.0780667 -0.137027 0) (-0.0587217 -0.165144 0) (-0.0367549 -0.190114 0) (-0.0127772 -0.212066 0) (0.0127363 -0.231205 0) (0.0394251 -0.247769 0) (0.0670191 -0.261993 0) (0.0953169 -0.274105 0) (0.124169 -0.284319 0) (0.153466 -0.292832 0) (0.183125 -0.299832 0) (0.213089 -0.30549 0) (0.243311 -0.309967 0) (0.273757 -0.313412 0) (0.304393 -0.315965 0) (0.335189 -0.317751 0) (0.366105 -0.318884 0) (0.397099 -0.319468 0) (0.428117 -0.319591 0) (0.459101 -0.319327 0) (0.489985 -0.318737 0) (0.520703 -0.317862 0) (0.551189 -0.316728 0) (0.581388 -0.315338 0) (0.611255 -0.313677 0) (0.640756 -0.311709 0) (0.669874 -0.309374 0) (0.698605 -0.306597 0) (0.726953 -0.303286 0) (0.75493 -0.299332 0) (0.782545 -0.294618 0) (0.809806 -0.289015 0) (0.836711 -0.282385 0) (0.863248 -0.274581 0) (0.889386 -0.265444 0) (0.915076 -0.254803 0) (0.94024 -0.242466 0) (0.964767 -0.228217 0) (0.988495 -0.211809 0) (1.01119 -0.192957 0) (1.03253 -0.171332 0) (1.05203 -0.146566 0) (1.06901 -0.118293 0) (1.08253 -0.0862541 0) (1.09159 -0.0504753 0) (1.09088 -0.0155477 0) (1.09424 0.0508129 0) (1.08534 0.0870007 0) (1.07197 0.119542 0) (1.05508 0.148361 0) (1.0356 0.173682 0) (1.01423 0.195855 0) (0.991449 0.215234 0) (0.967597 0.232143 0) (0.942914 0.246863 0) (0.917567 0.259641 0) (0.891677 0.27069 0) (0.865325 0.2802 0) (0.838568 0.288342 0) (0.811442 0.295276 0) (0.783966 0.301145 0) (0.756146 0.306089 0) (0.727978 0.310235 0) (0.699456 0.313703 0) (0.670571 0.316599 0) (0.641319 0.319018 0) (0.611703 0.32104 0) (0.581737 0.322724 0) (0.551451 0.324111 0) (0.520883 0.325219 0) (0.490086 0.326047 0) (0.459118 0.326572 0) (0.428041 0.326753 0) (0.396915 0.326529 0) (0.365799 0.325825 0) (0.334741 0.324551 0) (0.303785 0.322603 0) (0.27297 0.319864 0) (0.242329 0.316206 0) (0.211897 0.311489 0) (0.181714 0.305563 0) (0.15183 0.298265 0) (0.122309 0.289422 0) (0.0932379 0.27885 0) (0.0647328 0.266349 0) (0.0369499 0.251707 0) (0.0100973 0.234699 0) (-0.0155477 0.215092 0) (-0.0396181 0.192656 0) (-0.0616334 0.167193 0) (-0.0809807 0.13859 0) (-0.0969198 0.106917 0) (-0.108645 0.0725833 0) (-0.115462 0.0365467 0) (-0.117565 -3.93023e-19 0) (-0.115462 -0.0365467 0) (-0.108645 -0.0725833 0) (-0.0969198 -0.106917 0) (-0.0809807 -0.13859 0) (-0.0616334 -0.167193 0) (-0.0396181 -0.192656 0) (-0.0155477 -0.215092 0) (0.0100973 -0.234699 0) (0.0369499 -0.251707 0) (0.0647328 -0.266349 0) (0.0932379 -0.27885 0) (0.122309 -0.289422 0) (0.15183 -0.298265 0) (0.181714 -0.305563 0) (0.211897 -0.311489 0) (0.242329 -0.316206 0) (0.27297 -0.319864 0) (0.303785 -0.322603 0) (0.334741 -0.324551 0) (0.365799 -0.325825 0) (0.396915 -0.326529 0) (0.428041 -0.326753 0) (0.459118 -0.326572 0) (0.490086 -0.326047 0) (0.520883 -0.325219 0) (0.551451 -0.324111 0) (0.581737 -0.322724 0) (0.611703 -0.32104 0) (0.641319 -0.319018 0) (0.670571 -0.316599 0) (0.699456 -0.313703 0) (0.727978 -0.310235 0) (0.756146 -0.306089 0) (0.783966 -0.301145 0) (0.811442 -0.295276 0) (0.838568 -0.288342 0) (0.865325 -0.2802 0) (0.891677 -0.27069 0) (0.917567 -0.259641 0) (0.942914 -0.246863 0) (0.967597 -0.232143 0) (0.991449 -0.215234 0) (1.01423 -0.195855 0) (1.0356 -0.173682 0) (1.05508 -0.148361 0) (1.07197 -0.119542 0) (1.08534 -0.0870007 0) (1.09424 -0.0508129 0) (1.09342 -0.0156378 0) (1.09695 0.0511512 0) (1.08821 0.0877455 0) (1.07499 0.120789 0) (1.05819 0.150155 0) (1.03875 0.176037 0) (1.01735 0.198764 0) (0.99449 0.218678 0) (0.970519 0.236096 0) (0.945682 0.251298 0) (0.920154 0.264526 0) (0.894062 0.275993 0) (0.867496 0.285888 0) (0.840517 0.29438 0) (0.813167 0.301628 0) (0.78547 0.307776 0) (0.757437 0.312961 0) (0.72907 0.317311 0) (0.700365 0.320944 0) (0.671316 0.32397 0) (0.641919 0.326483 0) (0.612177 0.328565 0) (0.582102 0.330279 0) (0.551718 0.331666 0) (0.521059 0.332751 0) (0.490173 0.333532 0) (0.459113 0.333989 0) (0.427934 0.334082 0) (0.396695 0.333751 0) (0.365448 0.33292 0) (0.334242 0.331497 0) (0.303119 0.329377 0) (0.272119 0.326441 0) (0.241278 0.32256 0) (0.210632 0.317593 0) (0.180227 0.311387 0) (0.150116 0.30378 0) (0.120368 0.294599 0) (0.0910774 0.283657 0) (0.0623651 0.270758 0) (0.0343942 0.255688 0) (0.0073796 0.238227 0) (-0.0183946 0.218145 0) (-0.0425547 0.195217 0) (-0.0646152 0.169257 0) (-0.0839621 0.140163 0) (-0.0998604 0.108025 0) (-0.111521 0.0732705 0) (-0.118279 0.0368695 0) (-0.120357 -7.18284e-19 0) (-0.118279 -0.0368695 0) (-0.111521 -0.0732705 0) (-0.0998604 -0.108025 0) (-0.0839621 -0.140163 0) (-0.0646152 -0.169257 0) (-0.0425547 -0.195217 0) (-0.0183946 -0.218145 0) (0.0073796 -0.238227 0) (0.0343942 -0.255688 0) (0.0623651 -0.270758 0) (0.0910774 -0.283657 0) (0.120368 -0.294599 0) (0.150116 -0.30378 0) (0.180227 -0.311387 0) (0.210632 -0.317593 0) (0.241278 -0.32256 0) (0.272119 -0.326441 0) (0.303119 -0.329377 0) (0.334242 -0.331497 0) (0.365448 -0.33292 0) (0.396695 -0.333751 0) (0.427934 -0.334082 0) (0.459113 -0.333989 0) (0.490173 -0.333532 0) (0.521059 -0.332751 0) (0.551718 -0.331666 0) (0.582102 -0.330279 0) (0.612177 -0.328565 0) (0.641919 -0.326483 0) (0.671316 -0.32397 0) (0.700365 -0.320944 0) (0.72907 -0.317311 0) (0.757437 -0.312961 0) (0.78547 -0.307776 0) (0.813167 -0.301628 0) (0.840517 -0.29438 0) (0.867496 -0.285888 0) (0.894062 -0.275993 0) (0.920154 -0.264526 0) (0.945682 -0.251298 0) (0.970519 -0.236096 0) (0.99449 -0.218678 0) (1.01735 -0.198764 0) (1.03875 -0.176037 0) (1.05819 -0.150155 0) (1.07499 -0.120789 0) (1.08821 -0.0877455 0) (1.09695 -0.0511512 0) (1.09604 -0.0157289 0) (1.09973 0.0514903 0) (1.09116 0.0884888 0) (1.07808 0.122033 0) (1.06138 0.151949 0) (1.04197 0.178397 0) (1.02055 0.201683 0) (0.997622 0.22214 0) (0.973534 0.240078 0) (0.948545 0.255771 0) (0.922839 0.269459 0) (0.896546 0.281355 0) (0.869764 0.291645 0) (0.842561 0.300499 0) (0.814982 0.308072 0) (0.787059 0.31451 0) (0.758808 0.319947 0) (0.730233 0.324512 0) (0.701336 0.328323 0) (0.672113 0.331488 0) (0.64256 0.334105 0) (0.61268 0.336255 0) (0.582484 0.338004 0) (0.55199 0.339397 0) (0.521231 0.340459 0) (0.490247 0.341193 0) (0.459084 0.34158 0) (0.427796 0.34158 0) (0.396434 0.341136 0) (0.365049 0.340169 0) (0.333688 0.338589 0) (0.302393 0.336287 0) (0.271202 0.333145 0) (0.240155 0.329031 0) (0.209292 0.323802 0) (0.178661 0.317306 0) (0.14832 0.30938 0) (0.118344 0.299849 0) (0.0888327 0.288528 0) (0.0599136 0.275219 0) (0.0317558 0.259714 0) (0.00458109 0.241791 0) (-0.0213196 0.221225 0) (-0.0455664 0.197799 0) (-0.0676691 0.171335 0) (-0.0870124 0.141746 0) (-0.102868 0.109139 0) (-0.114464 0.0739621 0) (-0.121162 0.0371946 0) (-0.123216 -9.89334e-19 0) (-0.121162 -0.0371946 0) (-0.114464 -0.0739621 0) (-0.102868 -0.109139 0) (-0.0870124 -0.141746 0) (-0.0676691 -0.171335 0) (-0.0455664 -0.197799 0) (-0.0213196 -0.221225 0) (0.00458109 -0.241791 0) (0.0317558 -0.259714 0) (0.0599136 -0.275219 0) (0.0888327 -0.288528 0) (0.118344 -0.299849 0) (0.14832 -0.30938 0) (0.178661 -0.317306 0) (0.209292 -0.323802 0) (0.240155 -0.329031 0) (0.271202 -0.333145 0) (0.302393 -0.336287 0) (0.333688 -0.338589 0) (0.365049 -0.340169 0) (0.396434 -0.341136 0) (0.427796 -0.34158 0) (0.459084 -0.34158 0) (0.490247 -0.341193 0) (0.521231 -0.340459 0) (0.55199 -0.339397 0) (0.582484 -0.338004 0) (0.61268 -0.336255 0) (0.64256 -0.334105 0) (0.672113 -0.331488 0) (0.701336 -0.328323 0) (0.730233 -0.324512 0) (0.758808 -0.319947 0) (0.787059 -0.31451 0) (0.814982 -0.308072 0) (0.842561 -0.300499 0) (0.869764 -0.291645 0) (0.896546 -0.281355 0) (0.922839 -0.269459 0) (0.948545 -0.255771 0) (0.973534 -0.240078 0) (0.997622 -0.22214 0) (1.02055 -0.201683 0) (1.04197 -0.178397 0) (1.06138 -0.151949 0) (1.07808 -0.122033 0) (1.09116 -0.0884888 0) (1.09973 -0.0514903 0) (1.09873 -0.0158209 0) (1.10258 0.0518306 0) (1.09417 0.0892307 0) (1.08124 0.123275 0) (1.06465 0.153743 0) (1.04528 0.18076 0) (1.02385 0.204614 0) (1.00085 0.225622 0) (0.976645 0.244087 0) (0.951508 0.26028 0) (0.925623 0.274439 0) (0.899131 0.286774 0) (0.872132 0.297471 0) (0.844702 0.306697 0) (0.816892 0.314608 0) (0.788738 0.321347 0) (0.760261 0.327048 0) (0.731471 0.331839 0) (0.702372 0.335838 0) (0.672963 0.339154 0) (0.643243 0.341883 0) (0.613214 0.344109 0) (0.582885 0.3459 0) (0.552271 0.347303 0) (0.521399 0.348345 0) (0.490305 0.349032 0) (0.459031 0.349346 0) (0.427623 0.34925 0) (0.396131 0.348686 0) (0.3646 0.347577 0) (0.333076 0.345829 0) (0.301601 0.343336 0) (0.270214 0.339977 0) (0.238957 0.335619 0) (0.207872 0.330118 0) (0.177011 0.323321 0) (0.146438 0.315064 0) (0.116234 0.305172 0) (0.0865014 0.293462 0) (0.0573758 0.279735 0) (0.0290324 0.263783 0) (0.00169965 0.24539 0) (-0.0243249 0.224332 0) (-0.0486553 0.200401 0) (-0.0707968 0.173427 0) (-0.0901337 0.143339 0) (-0.105944 0.11026 0) (-0.117474 0.0746583 0) (-0.124113 0.0375223 0) (-0.126144 -1.36881e-18 0) (-0.124113 -0.0375223 0) (-0.117474 -0.0746583 0) (-0.105944 -0.11026 0) (-0.0901337 -0.143339 0) (-0.0707968 -0.173427 0) (-0.0486553 -0.200401 0) (-0.0243249 -0.224332 0) (0.00169965 -0.24539 0) (0.0290324 -0.263783 0) (0.0573758 -0.279735 0) (0.0865014 -0.293462 0) (0.116234 -0.305172 0) (0.146438 -0.315064 0) (0.177011 -0.323321 0) (0.207872 -0.330118 0) (0.238957 -0.335619 0) (0.270214 -0.339977 0) (0.301601 -0.343336 0) (0.333076 -0.345829 0) (0.3646 -0.347577 0) (0.396131 -0.348686 0) (0.427623 -0.34925 0) (0.459031 -0.349346 0) (0.490305 -0.349032 0) (0.521399 -0.348345 0) (0.552271 -0.347303 0) (0.582885 -0.3459 0) (0.613214 -0.344109 0) (0.643243 -0.341883 0) (0.672963 -0.339154 0) (0.702372 -0.335838 0) (0.731471 -0.331839 0) (0.760261 -0.327048 0) (0.788738 -0.321347 0) (0.816892 -0.314608 0) (0.844702 -0.306697 0) (0.872132 -0.297471 0) (0.899131 -0.286774 0) (0.925623 -0.274439 0) (0.951508 -0.26028 0) (0.976645 -0.244087 0) (1.00085 -0.225622 0) (1.02385 -0.204614 0) (1.04528 -0.18076 0) (1.06465 -0.153743 0) (1.08124 -0.123275 0) (1.09417 -0.0892307 0) (1.10258 -0.0518306 0) (1.1015 -0.015914 0) (1.10551 0.0521723 0) (1.09725 0.0899716 0) (1.08448 0.124515 0) (1.06799 0.155537 0) (1.04867 0.183129 0) (1.02723 0.207555 0) (1.00416 0.229121 0) (0.979854 0.248123 0) (0.954571 0.264827 0) (0.928511 0.279467 0) (0.901819 0.292252 0) (0.874604 0.303366 0) (0.846945 0.312976 0) (0.8189 0.321236 0) (0.790509 0.328287 0) (0.7618 0.334265 0) (0.732786 0.339294 0) (0.703476 0.343492 0) (0.673872 0.346967 0) (0.643973 0.349819 0) (0.613782 0.35213 0) (0.583306 0.353969 0) (0.552559 0.355386 0) (0.521563 0.356411 0) (0.490348 0.35705 0) (0.458951 0.35729 0) (0.427414 0.357094 0) (0.395781 0.356403 0) (0.364097 0.355143 0) (0.332403 0.35322 0) (0.300741 0.350526 0) (0.269153 0.346939 0) (0.237679 0.342325 0) (0.206368 0.336541 0) (0.175276 0.329432 0) (0.144469 0.320833 0) (0.114034 0.310571 0) (0.0840805 0.29846 0) (0.0547491 0.284304 0) (0.0262217 0.267898 0) (-0.00126694 0.249024 0) (-0.0274126 0.227468 0) (-0.0518233 0.203024 0) (-0.0740003 0.175535 0) (-0.0933278 0.144942 0) (-0.109091 0.111389 0) (-0.120554 0.0753592 0) (-0.127134 0.0378525 0) (-0.129142 -1.47723e-18 0) (-0.127134 -0.0378525 0) (-0.120554 -0.0753592 0) (-0.109091 -0.111389 0) (-0.0933278 -0.144942 0) (-0.0740003 -0.175535 0) (-0.0518233 -0.203024 0) (-0.0274126 -0.227468 0) (-0.00126694 -0.249024 0) (0.0262217 -0.267898 0) (0.0547491 -0.284304 0) (0.0840805 -0.29846 0) (0.114034 -0.310571 0) (0.144469 -0.320833 0) (0.175276 -0.329432 0) (0.206368 -0.336541 0) (0.237679 -0.342325 0) (0.269153 -0.346939 0) (0.300741 -0.350526 0) (0.332403 -0.35322 0) (0.364097 -0.355143 0) (0.395781 -0.356403 0) (0.427414 -0.357094 0) (0.458951 -0.35729 0) (0.490348 -0.35705 0) (0.521563 -0.356411 0) (0.552559 -0.355386 0) (0.583306 -0.353969 0) (0.613782 -0.35213 0) (0.643973 -0.349819 0) (0.673872 -0.346967 0) (0.703476 -0.343492 0) (0.732786 -0.339294 0) (0.7618 -0.334265 0) (0.790509 -0.328287 0) (0.8189 -0.321236 0) (0.846945 -0.312976 0) (0.874604 -0.303366 0) (0.901819 -0.292252 0) (0.928511 -0.279467 0) (0.954571 -0.264827 0) (0.979854 -0.248123 0) (1.00416 -0.229121 0) (1.02723 -0.207555 0) (1.04867 -0.183129 0) (1.06799 -0.155537 0) (1.08448 -0.124515 0) (1.09725 -0.0899716 0) (1.10551 -0.0521723 0) (1.10434 -0.0160082 0) (1.10851 0.0525155 0) (1.10041 0.0907116 0) (1.08779 0.125754 0) (1.07141 0.157331 0) (1.05215 0.185501 0) (1.0307 0.210506 0) (1.00758 0.232639 0) (0.983163 0.252186 0) (0.957738 0.26941 0) (0.931504 0.284542 0) (0.904613 0.297787 0) (0.877181 0.30933 0) (0.849291 0.319336 0) (0.821007 0.327956 0) (0.792376 0.335332 0) (0.763428 0.341597 0) (0.734183 0.346875 0) (0.704653 0.351283 0) (0.674841 0.35493 0) (0.644752 0.357912 0) (0.614386 0.360316 0) (0.583751 0.362211 0) (0.552857 0.363647 0) (0.521723 0.364657 0) (0.490374 0.36525 0) (0.458843 0.365413 0) (0.427166 0.365112 0) (0.395384 0.364289 0) (0.363536 0.362871 0) (0.331664 0.360763 0) (0.299809 0.357857 0) (0.268013 0.354031 0) (0.236319 0.349152 0) (0.204779 0.343073 0) (0.173451 0.33564 0) (0.142408 0.326689 0) (0.111742 0.316044 0) (0.0815673 0.303523 0) (0.0520311 0.288928 0) (0.0233211 0.272057 0) (-0.00432096 0.252695 0) (-0.0305847 0.23063 0) (-0.0550724 0.205667 0) (-0.0772816 0.177657 0) (-0.0965966 0.146556 0) (-0.112311 0.112524 0) (-0.123706 0.076065 0) (-0.130227 0.0381853 0) (-0.132212 -1.63986e-18 0) (-0.130227 -0.0381853 0) (-0.123706 -0.076065 0) (-0.112311 -0.112524 0) (-0.0965966 -0.146556 0) (-0.0772816 -0.177657 0) (-0.0550724 -0.205667 0) (-0.0305847 -0.23063 0) (-0.00432096 -0.252695 0) (0.0233211 -0.272057 0) (0.0520311 -0.288928 0) (0.0815673 -0.303523 0) (0.111742 -0.316044 0) (0.142408 -0.326689 0) (0.173451 -0.33564 0) (0.204779 -0.343073 0) (0.236319 -0.349152 0) (0.268013 -0.354031 0) (0.299809 -0.357857 0) (0.331664 -0.360763 0) (0.363536 -0.362871 0) (0.395384 -0.364289 0) (0.427166 -0.365112 0) (0.458843 -0.365413 0) (0.490374 -0.36525 0) (0.521723 -0.364657 0) (0.552857 -0.363647 0) (0.583751 -0.362211 0) (0.614386 -0.360316 0) (0.644752 -0.357912 0) (0.674841 -0.35493 0) (0.704653 -0.351283 0) (0.734183 -0.346875 0) (0.763428 -0.341597 0) (0.792376 -0.335332 0) (0.821007 -0.327956 0) (0.849291 -0.319336 0) (0.877181 -0.30933 0) (0.904613 -0.297787 0) (0.931504 -0.284542 0) (0.957738 -0.26941 0) (0.983163 -0.252186 0) (1.00758 -0.232639 0) (1.0307 -0.210506 0) (1.05215 -0.185501 0) (1.07141 -0.157331 0) (1.08779 -0.125754 0) (1.10041 -0.0907116 0) (1.10851 -0.0525155 0) (1.10726 -0.0161036 0) (1.11159 0.0528605 0) (1.10364 0.091451 0) (1.09118 0.12699 0) (1.07492 0.159124 0) (1.05571 0.187877 0) (1.03426 0.213468 0) (1.01109 0.236175 0) (0.986575 0.256276 0) (0.96101 0.27403 0) (0.934605 0.289663 0) (0.907517 0.303381 0) (0.879866 0.315364 0) (0.851744 0.325776 0) (0.823219 0.334768 0) (0.794342 0.342481 0) (0.765149 0.349044 0) (0.735665 0.354583 0) (0.705904 0.359213 0) (0.675875 0.363041 0) (0.645582 0.366165 0) (0.615029 0.36867 0) (0.58422 0.370626 0) (0.553166 0.372087 0) (0.52188 0.373085 0) (0.490384 0.373632 0) (0.458706 0.373716 0) (0.426878 0.373306 0) (0.394935 0.372345 0) (0.362915 0.370761 0) (0.330857 0.368459 0) (0.298801 0.365332 0) (0.266791 0.361257 0) (0.234872 0.356099 0) (0.203098 0.349714 0) (0.171533 0.341946 0) (0.140253 0.332631 0) (0.109355 0.321594 0) (0.078959 0.30865 0) (0.0492188 0.293607 0) (0.0203283 0.276261 0) (-0.00746477 0.256401 0) (-0.0338435 0.233821 0) (-0.0584048 0.208332 0) (-0.0806426 0.179794 0) (-0.0999422 0.14818 0) (-0.115605 0.113667 0) (-0.126932 0.0767758 0) (-0.133395 0.0385208 0) (-0.135356 -1.91091e-18 0) (-0.133395 -0.0385208 0) (-0.126932 -0.0767758 0) (-0.115605 -0.113667 0) (-0.0999422 -0.14818 0) (-0.0806426 -0.179794 0) (-0.0584048 -0.208332 0) (-0.0338435 -0.233821 0) (-0.00746477 -0.256401 0) (0.0203283 -0.276261 0) (0.0492188 -0.293607 0) (0.078959 -0.30865 0) (0.109355 -0.321594 0) (0.140253 -0.332631 0) (0.171533 -0.341946 0) (0.203098 -0.349714 0) (0.234872 -0.356099 0) (0.266791 -0.361257 0) (0.298801 -0.365332 0) (0.330857 -0.368459 0) (0.362915 -0.370761 0) (0.394935 -0.372345 0) (0.426878 -0.373306 0) (0.458706 -0.373716 0) (0.490384 -0.373632 0) (0.52188 -0.373085 0) (0.553166 -0.372087 0) (0.58422 -0.370626 0) (0.615029 -0.36867 0) (0.645582 -0.366165 0) (0.675875 -0.363041 0) (0.705904 -0.359213 0) (0.735665 -0.354583 0) (0.765149 -0.349044 0) (0.794342 -0.342481 0) (0.823219 -0.334768 0) (0.851744 -0.325776 0) (0.879866 -0.315364 0) (0.907517 -0.303381 0) (0.934605 -0.289663 0) (0.96101 -0.27403 0) (0.986575 -0.256276 0) (1.01109 -0.236175 0) (1.03426 -0.213468 0) (1.05571 -0.187877 0) (1.07492 -0.159124 0) (1.09118 -0.12699 0) (1.10364 -0.091451 0) (1.11159 -0.0528605 0) (1.11027 -0.0162004 0) (1.11475 0.0532075 0) (1.10696 0.0921901 0) (1.09465 0.128226 0) (1.07851 0.160918 0) (1.05937 0.190257 0) (1.03792 0.216439 0) (1.0147 0.239728 0) (0.990091 0.260393 0) (0.964391 0.278686 0) (0.937816 0.294832 0) (0.910532 0.309032 0) (0.882663 0.321466 0) (0.854307 0.332297 0) (0.825538 0.341673 0) (0.796411 0.349733 0) (0.766967 0.356608 0) (0.737235 0.362419 0) (0.707234 0.367281 0) (0.676976 0.371301 0) (0.646468 0.374575 0) (0.615713 0.37719 0) (0.584716 0.379216 0) (0.553486 0.380706 0) (0.522034 0.381695 0) (0.490377 0.382196 0) (0.458539 0.382201 0) (0.426546 0.381677 0) (0.394432 0.380573 0) (0.362229 0.378815 0) (0.329977 0.37631 0) (0.297714 0.372951 0) (0.265484 0.368616 0) (0.233335 0.363169 0) (0.201324 0.356466 0) (0.169518 0.348352 0) (0.137999 0.338661 0) (0.106869 0.327219 0) (0.0762525 0.313844 0) (0.0463097 0.298341 0) (0.0172405 0.28051 0) (-0.0107008 0.260144 0) (-0.0371913 0.23704 0) (-0.0618227 0.211017 0) (-0.0840856 0.181946 0) (-0.103367 0.149815 0) (-0.118976 0.114817 0) (-0.130234 0.0774917 0) (-0.136639 0.0388591 0) (-0.138578 -1.8567e-18 0) (-0.136639 -0.0388591 0) (-0.130234 -0.0774917 0) (-0.118976 -0.114817 0) (-0.103367 -0.149815 0) (-0.0840856 -0.181946 0) (-0.0618227 -0.211017 0) (-0.0371913 -0.23704 0) (-0.0107008 -0.260144 0) (0.0172405 -0.28051 0) (0.0463097 -0.298341 0) (0.0762525 -0.313844 0) (0.106869 -0.327219 0) (0.137999 -0.338661 0) (0.169518 -0.348352 0) (0.201324 -0.356466 0) (0.233335 -0.363169 0) (0.265484 -0.368616 0) (0.297714 -0.372951 0) (0.329977 -0.37631 0) (0.362229 -0.378815 0) (0.394432 -0.380573 0) (0.426546 -0.381677 0) (0.458539 -0.382201 0) (0.490377 -0.382196 0) (0.522034 -0.381695 0) (0.553486 -0.380706 0) (0.584716 -0.379216 0) (0.615713 -0.37719 0) (0.646468 -0.374575 0) (0.676976 -0.371301 0) (0.707234 -0.367281 0) (0.737235 -0.362419 0) (0.766967 -0.356608 0) (0.796411 -0.349733 0) (0.825538 -0.341673 0) (0.854307 -0.332297 0) (0.882663 -0.321466 0) (0.910532 -0.309032 0) (0.937816 -0.294832 0) (0.964391 -0.278686 0) (0.990091 -0.260393 0) (1.0147 -0.239728 0) (1.03792 -0.216439 0) (1.05937 -0.190257 0) (1.07851 -0.160918 0) (1.09465 -0.128226 0) (1.10696 -0.0921901 0) (1.11475 -0.0532075 0) (1.11336 -0.0162986 0) (1.118 0.0535568 0) (1.11035 0.0929292 0) (1.0982 0.12946 0) (1.08218 0.162712 0) (1.06311 0.192642 0) (1.04168 0.219421 0) (1.01841 0.243299 0) (0.993714 0.264537 0) (0.967882 0.283379 0) (0.941141 0.300048 0) (0.913662 0.314742 0) (0.885575 0.327638 0) (0.856984 0.338899 0) (0.827967 0.348671 0) (0.798585 0.357091 0) (0.768884 0.364288 0) (0.738896 0.370382 0) (0.708646 0.375488 0) (0.678148 0.37971 0) (0.647411 0.383145 0) (0.61644 0.385878 0) (0.585241 0.387979 0) (0.55382 0.389504 0) (0.522186 0.390487 0) (0.490353 0.390944 0) (0.45834 0.390867 0) (0.42617 0.390228 0) (0.393872 0.388974 0) (0.361477 0.387034 0) (0.329021 0.384317 0) (0.296542 0.380716 0) (0.264086 0.376109 0) (0.231703 0.370363 0) (0.199452 0.36333 0) (0.167403 0.354858 0) (0.135644 0.344779 0) (0.104281 0.332922 0) (0.0734447 0.319103 0) (0.0433007 0.303131 0) (0.0140552 0.284805 0) (-0.0140315 0.263923 0) (-0.0406305 0.240288 0) (-0.0653282 0.213723 0) (-0.0876127 0.184114 0) (-0.106872 0.15146 0) (-0.122427 0.115975 0) (-0.133614 0.0782129 0) (-0.139961 0.0392002 0) (-0.141878 -1.74828e-18 0) (-0.139961 -0.0392002 0) (-0.133614 -0.0782129 0) (-0.122427 -0.115975 0) (-0.106872 -0.15146 0) (-0.0876127 -0.184114 0) (-0.0653282 -0.213723 0) (-0.0406305 -0.240288 0) (-0.0140315 -0.263923 0) (0.0140552 -0.284805 0) (0.0433007 -0.303131 0) (0.0734447 -0.319103 0) (0.104281 -0.332922 0) (0.135644 -0.344779 0) (0.167403 -0.354858 0) (0.199452 -0.36333 0) (0.231703 -0.370363 0) (0.264086 -0.376109 0) (0.296542 -0.380716 0) (0.329021 -0.384317 0) (0.361477 -0.387034 0) (0.393872 -0.388974 0) (0.42617 -0.390228 0) (0.45834 -0.390867 0) (0.490353 -0.390944 0) (0.522186 -0.390487 0) (0.55382 -0.389504 0) (0.585241 -0.387979 0) (0.61644 -0.385878 0) (0.647411 -0.383145 0) (0.678148 -0.37971 0) (0.708646 -0.375488 0) (0.738896 -0.370382 0) (0.768884 -0.364288 0) (0.798585 -0.357091 0) (0.827967 -0.348671 0) (0.856984 -0.338899 0) (0.885575 -0.327638 0) (0.913662 -0.314742 0) (0.941141 -0.300048 0) (0.967882 -0.283379 0) (0.993714 -0.264537 0) (1.01841 -0.243299 0) (1.04168 -0.219421 0) (1.06311 -0.192642 0) (1.08218 -0.162712 0) (1.0982 -0.12946 0) (1.11035 -0.0929292 0) (1.118 -0.0535568 0) (1.11653 -0.0163983 0) (1.12133 0.0539085 0) (1.11383 0.0936686 0) (1.10183 0.130693 0) (1.08594 0.164506 0) (1.06695 0.19503 0) (1.04553 0.222412 0) (1.02223 0.246888 0) (0.997447 0.268707 0) (0.971487 0.288108 0) (0.944582 0.30531 0) (0.916909 0.320509 0) (0.888605 0.333879 0) (0.859777 0.345581 0) (0.830509 0.355761 0) (0.800868 0.364552 0) (0.770903 0.372083 0) (0.740653 0.378473 0) (0.710143 0.383833 0) (0.679393 0.388268 0) (0.648414 0.391874 0) (0.617213 0.394733 0) (0.585796 0.396917 0) (0.554168 0.398481 0) (0.522336 0.399462 0) (0.490311 0.399875 0) (0.458108 0.399716 0) (0.425747 0.398957 0) (0.393252 0.397548 0) (0.360654 0.395419 0) (0.327985 0.392481 0) (0.295284 0.388628 0) (0.262596 0.383739 0) (0.229973 0.377681 0) (0.197477 0.370307 0) (0.165184 0.361464 0) (0.133184 0.350987 0) (0.101588 0.338703 0) (0.0705326 0.324429 0) (0.040189 0.307976 0) (0.0107695 0.289146 0) (-0.0174596 0.26774 0) (-0.0441635 0.243563 0) (-0.0689239 0.216451 0) (-0.0912263 0.186297 0) (-0.110461 0.153117 0) (-0.125958 0.117141 0) (-0.137075 0.0789395 0) (-0.143364 0.0395443 0) (-0.14526 -1.74828e-18 0) (-0.143364 -0.0395443 0) (-0.137075 -0.0789395 0) (-0.125958 -0.117141 0) (-0.110461 -0.153117 0) (-0.0912263 -0.186297 0) (-0.0689239 -0.216451 0) (-0.0441635 -0.243563 0) (-0.0174596 -0.26774 0) (0.0107695 -0.289146 0) (0.040189 -0.307976 0) (0.0705326 -0.324429 0) (0.101588 -0.338703 0) (0.133184 -0.350987 0) (0.165184 -0.361464 0) (0.197477 -0.370307 0) (0.229973 -0.377681 0) (0.262596 -0.383739 0) (0.295284 -0.388628 0) (0.327985 -0.392481 0) (0.360654 -0.395419 0) (0.393252 -0.397548 0) (0.425747 -0.398957 0) (0.458108 -0.399716 0) (0.490311 -0.399875 0) (0.522336 -0.399462 0) (0.554168 -0.398481 0) (0.585796 -0.396917 0) (0.617213 -0.394733 0) (0.648414 -0.391874 0) (0.679393 -0.388268 0) (0.710143 -0.383833 0) (0.740653 -0.378473 0) (0.770903 -0.372083 0) (0.800868 -0.364552 0) (0.830509 -0.355761 0) (0.859777 -0.345581 0) (0.888605 -0.333879 0) (0.916909 -0.320509 0) (0.944582 -0.30531 0) (0.971487 -0.288108 0) (0.997447 -0.268707 0) (1.02223 -0.246888 0) (1.04553 -0.222412 0) (1.06695 -0.19503 0) (1.08594 -0.164506 0) (1.10183 -0.130693 0) (1.11383 -0.0936686 0) (1.12133 -0.0539085 0) (1.1198 -0.0164995 0) (1.12475 0.0542631 0) (1.11739 0.0944084 0) (1.10556 0.131925 0) (1.0898 0.1663 0) (1.07088 0.197421 0) (1.04949 0.225414 0) (1.02616 0.250494 0) (1.00129 0.272902 0) (0.975208 0.292873 0) (0.948142 0.310619 0) (0.920277 0.326333 0) (0.891755 0.34019 0) (0.862689 0.352345 0) (0.833169 0.362944 0) (0.803264 0.372119 0) (0.773029 0.379996 0) (0.742507 0.386692 0) (0.711729 0.392318 0) (0.680715 0.396976 0) (0.649481 0.400761 0) (0.618035 0.403755 0) (0.586384 0.406029 0) (0.554532 0.407639 0) (0.522484 0.40862 0) (0.490251 0.408991 0) (0.457842 0.408748 0) (0.425275 0.407866 0) (0.392572 0.406296 0) (0.359758 0.403971 0) (0.326866 0.400804 0) (0.293934 0.396689 0) (0.261007 0.391507 0) (0.22814 0.385124 0) (0.195398 0.377398 0) (0.162857 0.368172 0) (0.130615 0.357285 0) (0.0987858 0.344562 0) (0.0675128 0.329823 0) (0.0369716 0.312878 0) (0.00738065 0.293534 0) (-0.0209876 0.271593 0) (-0.0477928 0.246868 0) (-0.072612 0.219201 0) (-0.0949287 0.188496 0) (-0.114136 0.154785 0) (-0.129574 0.118315 0) (-0.140619 0.0796717 0) (-0.146851 0.0398913 0) (-0.148725 -1.96512e-18 0) (-0.146851 -0.0398913 0) (-0.140619 -0.0796717 0) (-0.129574 -0.118315 0) (-0.114136 -0.154785 0) (-0.0949287 -0.188496 0) (-0.072612 -0.219201 0) (-0.0477928 -0.246868 0) (-0.0209876 -0.271593 0) (0.00738065 -0.293534 0) (0.0369716 -0.312878 0) (0.0675128 -0.329823 0) (0.0987858 -0.344562 0) (0.130615 -0.357285 0) (0.162857 -0.368172 0) (0.195398 -0.377398 0) (0.22814 -0.385124 0) (0.261007 -0.391507 0) (0.293934 -0.396689 0) (0.326866 -0.400804 0) (0.359758 -0.403971 0) (0.392572 -0.406296 0) (0.425275 -0.407866 0) (0.457842 -0.408748 0) (0.490251 -0.408991 0) (0.522484 -0.40862 0) (0.554532 -0.407639 0) (0.586384 -0.406029 0) (0.618035 -0.403755 0) (0.649481 -0.400761 0) (0.680715 -0.396976 0) (0.711729 -0.392318 0) (0.742507 -0.386692 0) (0.773029 -0.379996 0) (0.803264 -0.372119 0) (0.833169 -0.362944 0) (0.862689 -0.352345 0) (0.891755 -0.34019 0) (0.920277 -0.326333 0) (0.948142 -0.310619 0) (0.975208 -0.292873 0) (1.00129 -0.272902 0) (1.02616 -0.250494 0) (1.04949 -0.225414 0) (1.07088 -0.197421 0) (1.0898 -0.1663 0) (1.10556 -0.131925 0) (1.11739 -0.0944084 0) (1.12475 -0.0542631 0) (1.12316 -0.0166025 0) (1.12826 0.0546206 0) (1.12104 0.0951492 0) (1.10937 0.133157 0) (1.09375 0.168094 0) (1.07492 0.199817 0) (1.05355 0.228424 0) (1.03019 0.254116 0) (1.00525 0.277124 0) (0.979048 0.297674 0) (0.951824 0.315974 0) (0.923768 0.332216 0) (0.895029 0.346569 0) (0.865724 0.35919 0) (0.835948 0.370219 0) (0.805775 0.37979 0) (0.775265 0.388025 0) (0.744463 0.395039 0) (0.713405 0.400942 0) (0.682117 0.405834 0) (0.650614 0.409807 0) (0.618908 0.412945 0) (0.587006 0.415316 0) (0.554912 0.416975 0) (0.522632 0.417961 0) (0.490172 0.418291 0) (0.457542 0.417963 0) (0.424753 0.416955 0) (0.391827 0.415219 0) (0.358785 0.412692 0) (0.32566 0.409285 0) (0.292489 0.404898 0) (0.259318 0.399412 0) (0.226201 0.392695 0) (0.193208 0.384603 0) (0.160419 0.374983 0) (0.127933 0.363673 0) (0.0958719 0.350499 0) (0.0643821 0.335283 0) (0.0336453 0.317837 0) (0.0038857 0.297968 0) (-0.0246183 0.275483 0) (-0.051521 0.250201 0) (-0.076395 0.221972 0) (-0.0987222 0.190711 0) (-0.117899 0.156465 0) (-0.133275 0.119497 0) (-0.144249 0.0804095 0) (-0.150424 0.0402415 0) (-0.152276 -1.96512e-18 0) (-0.150424 -0.0402415 0) (-0.144249 -0.0804095 0) (-0.133275 -0.119497 0) (-0.117899 -0.156465 0) (-0.0987222 -0.190711 0) (-0.076395 -0.221972 0) (-0.051521 -0.250201 0) (-0.0246183 -0.275483 0) (0.0038857 -0.297968 0) (0.0336453 -0.317837 0) (0.0643821 -0.335283 0) (0.0958719 -0.350499 0) (0.127933 -0.363673 0) (0.160419 -0.374983 0) (0.193208 -0.384603 0) (0.226201 -0.392695 0) (0.259318 -0.399412 0) (0.292489 -0.404898 0) (0.32566 -0.409285 0) (0.358785 -0.412692 0) (0.391827 -0.415219 0) (0.424753 -0.416955 0) (0.457542 -0.417963 0) (0.490172 -0.418291 0) (0.522632 -0.417961 0) (0.554912 -0.416975 0) (0.587006 -0.415316 0) (0.618908 -0.412945 0) (0.650614 -0.409807 0) (0.682117 -0.405834 0) (0.713405 -0.400942 0) (0.744463 -0.395039 0) (0.775265 -0.388025 0) (0.805775 -0.37979 0) (0.835948 -0.370219 0) (0.865724 -0.35919 0) (0.895029 -0.346569 0) (0.923768 -0.332216 0) (0.951824 -0.315974 0) (0.979048 -0.297674 0) (1.00525 -0.277124 0) (1.03019 -0.254116 0) (1.05355 -0.228424 0) (1.07492 -0.199817 0) (1.09375 -0.168094 0) (1.10937 -0.133157 0) (1.12104 -0.0951492 0) (1.12826 -0.0546206 0) (1.12662 -0.0167072 0) (1.13187 0.0549813 0) (1.12479 0.0958911 0) (1.11327 0.134388 0) (1.09779 0.169889 0) (1.07905 0.202217 0) (1.05772 0.231444 0) (1.03434 0.257756 0) (1.00933 0.281372 0) (0.98301 0.30251 0) (0.95563 0.321376 0) (0.927385 0.338156 0) (0.89843 0.353018 0) (0.868885 0.366115 0) (0.83885 0.377588 0) (0.808405 0.387566 0) (0.777612 0.396171 0) (0.746523 0.403515 0) (0.715176 0.409705 0) (0.6836 0.41484 0) (0.651814 0.419012 0) (0.619833 0.422301 0) (0.587663 0.424776 0) (0.555311 0.426491 0) (0.52278 0.427484 0) (0.490076 0.427774 0) (0.457206 0.427362 0) (0.42418 0.426224 0) (0.391016 0.424318 0) (0.357734 0.42158 0) (0.324365 0.417927 0) (0.290946 0.413258 0) (0.257523 0.407457 0) (0.224152 0.400393 0) (0.190905 0.391924 0) (0.157865 0.381898 0) (0.125136 0.370152 0) (0.0928423 0.356517 0) (0.061137 0.340812 0) (0.0302069 0.322852 0) (0.000281632 0.302448 0) (-0.0283546 0.279411 0) (-0.0553508 0.253564 0) (-0.0802757 0.224764 0) (-0.10261 0.192942 0) (-0.121752 0.158156 0) (-0.137066 0.120688 0) (-0.147967 0.0811532 0) (-0.154085 0.0405947 0) (-0.155917 -2.07354e-18 0) (-0.154085 -0.0405947 0) (-0.147967 -0.0811532 0) (-0.137066 -0.120688 0) (-0.121752 -0.158156 0) (-0.10261 -0.192942 0) (-0.0802757 -0.224764 0) (-0.0553508 -0.253564 0) (-0.0283546 -0.279411 0) (0.000281632 -0.302448 0) (0.0302069 -0.322852 0) (0.061137 -0.340812 0) (0.0928423 -0.356517 0) (0.125136 -0.370152 0) (0.157865 -0.381898 0) (0.190905 -0.391924 0) (0.224152 -0.400393 0) (0.257523 -0.407457 0) (0.290946 -0.413258 0) (0.324365 -0.417927 0) (0.357734 -0.42158 0) (0.391016 -0.424318 0) (0.42418 -0.426224 0) (0.457206 -0.427362 0) (0.490076 -0.427774 0) (0.52278 -0.427484 0) (0.555311 -0.426491 0) (0.587663 -0.424776 0) (0.619833 -0.422301 0) (0.651814 -0.419012 0) (0.6836 -0.41484 0) (0.715176 -0.409705 0) (0.746523 -0.403515 0) (0.777612 -0.396171 0) (0.808405 -0.387566 0) (0.83885 -0.377588 0) (0.868885 -0.366115 0) (0.89843 -0.353018 0) (0.927385 -0.338156 0) (0.95563 -0.321376 0) (0.98301 -0.30251 0) (1.00933 -0.281372 0) (1.03434 -0.257756 0) (1.05772 -0.231444 0) (1.07905 -0.202217 0) (1.09779 -0.169889 0) (1.11327 -0.134388 0) (1.12479 -0.0958911 0) (1.13187 -0.0549813 0) (1.13017 -0.0168138 0) (1.13558 0.0553454 0) (1.12863 0.0966345 0) (1.11727 0.13562 0) (1.10193 0.171685 0) (1.08329 0.20462 0) (1.062 0.234473 0) (1.03861 0.261412 0) (1.01353 0.285645 0) (0.987095 0.307382 0) (0.959564 0.326824 0) (0.931132 0.344153 0) (0.90196 0.359536 0) (0.872174 0.373122 0) (0.841878 0.38505 0) (0.811156 0.395448 0) (0.780075 0.404433 0) (0.748691 0.412118 0) (0.717044 0.418607 0) (0.685168 0.423997 0) (0.653086 0.428376 0) (0.620812 0.431824 0) (0.588358 0.434409 0) (0.555729 0.436185 0) (0.522929 0.437189 0) (0.489962 0.437441 0) (0.456834 0.436943 0) (0.423554 0.435674 0) (0.390136 0.433592 0) (0.356602 0.430638 0) (0.322978 0.42673 0) (0.289301 0.421769 0) (0.255619 0.415641 0) (0.221989 0.408219 0) (0.188484 0.399361 0) (0.155192 0.388916 0) (0.122218 0.376724 0) (0.0896932 0.362614 0) (0.0577741 0.346409 0) (0.0266531 0.327926 0) (-0.00343466 0.306976 0) (-0.0321995 0.283376 0) (-0.0592851 0.256955 0) (-0.0842565 0.227579 0) (-0.106593 0.195189 0) (-0.125699 0.159858 0) (-0.140947 0.121887 0) (-0.151776 0.0819028 0) (-0.157838 0.0409513 0) (-0.159648 -2.72406e-18 0) (-0.157838 -0.0409513 0) (-0.151776 -0.0819028 0) (-0.140947 -0.121887 0) (-0.125699 -0.159858 0) (-0.106593 -0.195189 0) (-0.0842565 -0.227579 0) (-0.0592851 -0.256955 0) (-0.0321995 -0.283376 0) (-0.00343466 -0.306976 0) (0.0266531 -0.327926 0) (0.0577741 -0.346409 0) (0.0896932 -0.362614 0) (0.122218 -0.376724 0) (0.155192 -0.388916 0) (0.188484 -0.399361 0) (0.221989 -0.408219 0) (0.255619 -0.415641 0) (0.289301 -0.421769 0) (0.322978 -0.42673 0) (0.356602 -0.430638 0) (0.390136 -0.433592 0) (0.423554 -0.435674 0) (0.456834 -0.436943 0) (0.489962 -0.437441 0) (0.522929 -0.437189 0) (0.555729 -0.436185 0) (0.588358 -0.434409 0) (0.620812 -0.431824 0) (0.653086 -0.428376 0) (0.685168 -0.423997 0) (0.717044 -0.418607 0) (0.748691 -0.412118 0) (0.780075 -0.404433 0) (0.811156 -0.395448 0) (0.841878 -0.38505 0) (0.872174 -0.373122 0) (0.90196 -0.359536 0) (0.931132 -0.344153 0) (0.959564 -0.326824 0) (0.987095 -0.307382 0) (1.01353 -0.285645 0) (1.03861 -0.261412 0) (1.062 -0.234473 0) (1.08329 -0.20462 0) (1.10193 -0.171685 0) (1.11727 -0.13562 0) (1.12863 -0.0966345 0) (1.13558 -0.0553454 0) (1.13383 -0.0169223 0) (1.13938 0.0557132 0) (1.13257 0.0973798 0) (1.12137 0.136851 0) (1.10617 0.173481 0) (1.08763 0.207026 0) (1.06639 0.237512 0) (1.04299 0.265085 0) (1.01785 0.289943 0) (0.991309 0.312289 0) (0.963628 0.332318 0) (0.935012 0.350208 0) (0.905624 0.366123 0) (0.875596 0.38021 0) (0.845036 0.392606 0) (0.814033 0.403434 0) (0.782657 0.412813 0) (0.750968 0.42085 0) (0.719012 0.427648 0) (0.686824 0.433302 0) (0.65443 0.437898 0) (0.621849 0.441514 0) (0.589092 0.444216 0) (0.556168 0.446057 0) (0.523079 0.447076 0) (0.48983 0.447292 0) (0.456426 0.446707 0) (0.422874 0.445304 0) (0.389187 0.443042 0) (0.355385 0.439865 0) (0.321494 0.435693 0) (0.287551 0.430431 0) (0.253602 0.423967 0) (0.219708 0.416175 0) (0.185942 0.406915 0) (0.152395 0.39604 0) (0.119177 0.383388 0) (0.0864209 0.368791 0) (0.0542898 0.352075 0) (0.0229805 0.333057 0) (-0.00726638 0.311552 0) (-0.0361558 0.28738 0) (-0.0633267 0.260376 0) (-0.0883404 0.230416 0) (-0.110676 0.197452 0) (-0.129742 0.161573 0) (-0.144923 0.123095 0) (-0.155678 0.0826586 0) (-0.161684 0.0413111 0) (-0.163474 -3.15774e-18 0) (-0.161684 -0.0413111 0) (-0.155678 -0.0826586 0) (-0.144923 -0.123095 0) (-0.129742 -0.161573 0) (-0.110676 -0.197452 0) (-0.0883404 -0.230416 0) (-0.0633267 -0.260376 0) (-0.0361558 -0.28738 0) (-0.00726638 -0.311552 0) (0.0229805 -0.333057 0) (0.0542898 -0.352075 0) (0.0864209 -0.368791 0) (0.119177 -0.383388 0) (0.152395 -0.39604 0) (0.185942 -0.406915 0) (0.219708 -0.416175 0) (0.253602 -0.423967 0) (0.287551 -0.430431 0) (0.321494 -0.435693 0) (0.355385 -0.439865 0) (0.389187 -0.443042 0) (0.422874 -0.445304 0) (0.456426 -0.446707 0) (0.48983 -0.447292 0) (0.523079 -0.447076 0) (0.556168 -0.446057 0) (0.589092 -0.444216 0) (0.621849 -0.441514 0) (0.65443 -0.437898 0) (0.686824 -0.433302 0) (0.719012 -0.427648 0) (0.750968 -0.42085 0) (0.782657 -0.412813 0) (0.814033 -0.403434 0) (0.845036 -0.392606 0) (0.875596 -0.38021 0) (0.905624 -0.366123 0) (0.935012 -0.350208 0) (0.963628 -0.332318 0) (0.991309 -0.312289 0) (1.01785 -0.289943 0) (1.04299 -0.265085 0) (1.06639 -0.237512 0) (1.08763 -0.207026 0) (1.10617 -0.173481 0) (1.12137 -0.136851 0) (1.13257 -0.0973798 0) (1.13938 -0.0557132 0) (1.13759 -0.0170327 0) (1.1433 0.056085 0) (1.13661 0.0981273 0) (1.12557 0.138083 0) (1.11052 0.175278 0) (1.09208 0.209437 0) (1.0709 0.240559 0) (1.04749 0.268774 0) (1.02229 0.294267 0) (0.995652 0.317231 0) (0.967826 0.337857 0) (0.939027 0.35632 0) (0.909424 0.372779 0) (0.879153 0.387379 0) (0.848327 0.400254 0) (0.817037 0.411526 0) (0.78536 0.421309 0) (0.753358 0.42971 0) (0.721082 0.436829 0) (0.688569 0.442756 0) (0.655849 0.447578 0) (0.622944 0.45137 0) (0.589867 0.454196 0) (0.556628 0.456108 0) (0.52323 0.457144 0) (0.48968 0.457325 0) (0.45598 0.456654 0) (0.422138 0.455114 0) (0.388166 0.452668 0) (0.354082 0.449261 0) (0.319912 0.444818 0) (0.285692 0.439245 0) (0.251469 0.432434 0) (0.217305 0.42426 0) (0.183274 0.414588 0) (0.14947 0.403269 0) (0.116007 0.390145 0) (0.0830216 0.37505 0) (0.0506804 0.35781 0) (0.0191856 0.338246 0) (-0.0112168 0.316175 0) (-0.0402268 0.291421 0) (-0.0674785 0.263827 0) (-0.0925302 0.233276 0) (-0.114861 0.199732 0) (-0.133883 0.1633 0) (-0.148996 0.124312 0) (-0.159676 0.0834207 0) (-0.165627 0.0416743 0) (-0.167397 -3.69984e-18 0) (-0.165627 -0.0416743 0) (-0.159676 -0.0834207 0) (-0.148996 -0.124312 0) (-0.133883 -0.1633 0) (-0.114861 -0.199732 0) (-0.0925302 -0.233276 0) (-0.0674785 -0.263827 0) (-0.0402268 -0.291421 0) (-0.0112168 -0.316175 0) (0.0191856 -0.338246 0) (0.0506804 -0.35781 0) (0.0830216 -0.37505 0) (0.116007 -0.390145 0) (0.14947 -0.403269 0) (0.183274 -0.414588 0) (0.217305 -0.42426 0) (0.251469 -0.432434 0) (0.285692 -0.439245 0) (0.319912 -0.444818 0) (0.354082 -0.449261 0) (0.388166 -0.452668 0) (0.422138 -0.455114 0) (0.45598 -0.456654 0) (0.48968 -0.457325 0) (0.52323 -0.457144 0) (0.556628 -0.456108 0) (0.589867 -0.454196 0) (0.622944 -0.45137 0) (0.655849 -0.447578 0) (0.688569 -0.442756 0) (0.721082 -0.436829 0) (0.753358 -0.42971 0) (0.78536 -0.421309 0) (0.817037 -0.411526 0) (0.848327 -0.400254 0) (0.879153 -0.387379 0) (0.909424 -0.372779 0) (0.939027 -0.35632 0) (0.967826 -0.337857 0) (0.995652 -0.317231 0) (1.02229 -0.294267 0) (1.04749 -0.268774 0) (1.0709 -0.240559 0) (1.09208 -0.209437 0) (1.11052 -0.175278 0) (1.12557 -0.138083 0) (1.13661 -0.0981273 0) (1.1433 -0.056085 0) (1.14145 -0.0171452 0) (1.14732 0.0564609 0) (1.14075 0.0988773 0) (1.12988 0.139316 0) (1.11497 0.177076 0) (1.09665 0.211852 0) (1.07552 0.243616 0) (1.05211 0.27248 0) (1.02687 0.298615 0) (1.00013 0.322208 0) (0.97216 0.343443 0) (0.943181 0.36249 0) (0.913363 0.379504 0) (0.882848 0.39463 0) (0.851752 0.407996 0) (0.820172 0.419723 0) (0.788187 0.429923 0) (0.755864 0.438699 0) (0.723256 0.446148 0) (0.690406 0.45236 0) (0.657345 0.457417 0) (0.624099 0.461392 0) (0.590684 0.464348 0) (0.55711 0.466336 0) (0.523385 0.467393 0) (0.489512 0.467541 0) (0.455497 0.466783 0) (0.421347 0.465104 0) (0.387073 0.46247 0) (0.352691 0.458827 0) (0.318229 0.454105 0) (0.283722 0.448212 0) (0.249217 0.441043 0) (0.214776 0.432476 0) (0.180477 0.422379 0) (0.146415 0.410604 0) (0.112706 0.396996 0) (0.0794914 0.381391 0) (0.0469422 0.363615 0) (0.015265 0.343493 0) (-0.0152893 0.320845 0) (-0.0444156 0.295501 0) (-0.0717436 0.267307 0) (-0.0968287 0.236158 0) (-0.11915 0.202029 0) (-0.138126 0.16504 0) (-0.153168 0.125538 0) (-0.163774 0.0841893 0) (-0.16967 0.042041 0) (-0.17142 -4.0251e-18 0) (-0.16967 -0.042041 0) (-0.163774 -0.0841893 0) (-0.153168 -0.125538 0) (-0.138126 -0.16504 0) (-0.11915 -0.202029 0) (-0.0968287 -0.236158 0) (-0.0717436 -0.267307 0) (-0.0444156 -0.295501 0) (-0.0152893 -0.320845 0) (0.015265 -0.343493 0) (0.0469422 -0.363615 0) (0.0794914 -0.381391 0) (0.112706 -0.396996 0) (0.146415 -0.410604 0) (0.180477 -0.422379 0) (0.214776 -0.432476 0) (0.249217 -0.441043 0) (0.283722 -0.448212 0) (0.318229 -0.454105 0) (0.352691 -0.458827 0) (0.387073 -0.46247 0) (0.421347 -0.465104 0) (0.455497 -0.466783 0) (0.489512 -0.467541 0) (0.523385 -0.467393 0) (0.55711 -0.466336 0) (0.590684 -0.464348 0) (0.624099 -0.461392 0) (0.657345 -0.457417 0) (0.690406 -0.45236 0) (0.723256 -0.446148 0) (0.755864 -0.438699 0) (0.788187 -0.429923 0) (0.820172 -0.419723 0) (0.851752 -0.407996 0) (0.882848 -0.39463 0) (0.913363 -0.379504 0) (0.943181 -0.36249 0) (0.97216 -0.343443 0) (1.00013 -0.322208 0) (1.02687 -0.298615 0) (1.05211 -0.27248 0) (1.07552 -0.243616 0) (1.09665 -0.211852 0) (1.11497 -0.177076 0) (1.12988 -0.139316 0) (1.14075 -0.0988773 0) (1.14732 -0.0564609 0) (1.14543 -0.0172598 0) (1.15145 0.0568411 0) (1.14501 0.0996302 0) (1.13429 0.14055 0) (1.11954 0.178875 0) (1.10133 0.21427 0) (1.08026 0.246681 0) (1.05686 0.276201 0) (1.03158 0.302988 0) (1.00474 0.32722 0) (0.976635 0.349074 0) (0.947477 0.368716 0) (0.917445 0.386299 0) (0.886685 0.401961 0) (0.855317 0.415831 0) (0.823441 0.428026 0) (0.791142 0.438654 0) (0.758488 0.447817 0) (0.725538 0.455607 0) (0.692337 0.462113 0) (0.65892 0.467413 0) (0.625316 0.471579 0) (0.591544 0.474672 0) (0.557616 0.476741 0) (0.523542 0.477823 0) (0.489327 0.477939 0) (0.454977 0.477094 0) (0.420499 0.475273 0) (0.385904 0.472447 0) (0.35121 0.468563 0) (0.316442 0.463554 0) (0.281637 0.457332 0) (0.246841 0.449794 0) (0.212118 0.440824 0) (0.177546 0.430289 0) (0.143223 0.418046 0) (0.109269 0.403941 0) (0.0758263 0.387813 0) (0.0430713 0.36949 0) (0.0112148 0.348799 0) (-0.0194874 0.325564 0) (-0.0487256 0.299619 0) (-0.0761252 0.270818 0) (-0.101239 0.239063 0) (-0.123547 0.204342 0) (-0.142474 0.166792 0) (-0.157444 0.126774 0) (-0.167975 0.0849644 0) (-0.173815 0.0424113 0) (-0.175546 -4.45878e-18 0) (-0.173815 -0.0424113 0) (-0.167975 -0.0849644 0) (-0.157444 -0.126774 0) (-0.142474 -0.166792 0) (-0.123547 -0.204342 0) (-0.101239 -0.239063 0) (-0.0761252 -0.270818 0) (-0.0487256 -0.299619 0) (-0.0194874 -0.325564 0) (0.0112148 -0.348799 0) (0.0430713 -0.36949 0) (0.0758263 -0.387813 0) (0.109269 -0.403941 0) (0.143223 -0.418046 0) (0.177546 -0.430289 0) (0.212118 -0.440824 0) (0.246841 -0.449794 0) (0.281637 -0.457332 0) (0.316442 -0.463554 0) (0.35121 -0.468563 0) (0.385904 -0.472447 0) (0.420499 -0.475273 0) (0.454977 -0.477094 0) (0.489327 -0.477939 0) (0.523542 -0.477823 0) (0.557616 -0.476741 0) (0.591544 -0.474672 0) (0.625316 -0.471579 0) (0.65892 -0.467413 0) (0.692337 -0.462113 0) (0.725538 -0.455607 0) (0.758488 -0.447817 0) (0.791142 -0.438654 0) (0.823441 -0.428026 0) (0.855317 -0.415831 0) (0.886685 -0.401961 0) (0.917445 -0.386299 0) (0.947477 -0.368716 0) (0.976635 -0.349074 0) (1.00474 -0.32722 0) (1.03158 -0.302988 0) (1.05686 -0.276201 0) (1.08026 -0.246681 0) (1.10133 -0.21427 0) (1.11954 -0.178875 0) (1.13429 -0.14055 0) (1.14501 -0.0996302 0) (1.15145 -0.0568411 0) (1.14952 -0.0173766 0) (1.1557 0.057226 0) (1.14937 0.100386 0) (1.13881 0.141786 0) (1.12421 0.180676 0) (1.10612 0.216692 0) (1.08513 0.249755 0) (1.06175 0.279938 0) (1.03642 0.307386 0) (1.00949 0.332267 0) (0.981252 0.354751 0) (0.951917 0.375 0) (0.921672 0.393162 0) (0.890666 0.409374 0) (0.859023 0.42376 0) (0.826847 0.436434 0) (0.794226 0.447503 0) (0.761233 0.457063 0) (0.727929 0.465205 0) (0.694364 0.472014 0) (0.660576 0.477567 0) (0.626597 0.481932 0) (0.592448 0.485168 0) (0.558147 0.487323 0) (0.523703 0.488433 0) (0.489124 0.488518 0) (0.454418 0.487585 0) (0.419593 0.485622 0) (0.38466 0.482599 0) (0.349637 0.478469 0) (0.31455 0.473165 0) (0.279434 0.466605 0) (0.244339 0.458689 0) (0.209327 0.449303 0) (0.174478 0.438318 0) (0.139893 0.425595 0) (0.105691 0.410982 0) (0.0720224 0.394318 0) (0.0390639 0.375436 0) (0.00703143 0.354164 0) (-0.0238147 0.330331 0) (-0.0531601 0.303775 0) (-0.0806265 0.274358 0) (-0.105765 0.24199 0) (-0.128055 0.206673 0) (-0.146929 0.168557 0) (-0.161825 0.128019 0) (-0.172281 0.0857463 0) (-0.178067 0.0427852 0) (-0.179778 -4.78404e-18 0) (-0.178067 -0.0427852 0) (-0.172281 -0.0857463 0) (-0.161825 -0.128019 0) (-0.146929 -0.168557 0) (-0.128055 -0.206673 0) (-0.105765 -0.24199 0) (-0.0806265 -0.274358 0) (-0.0531601 -0.303775 0) (-0.0238147 -0.330331 0) (0.00703143 -0.354164 0) (0.0390639 -0.375436 0) (0.0720224 -0.394318 0) (0.105691 -0.410982 0) (0.139893 -0.425595 0) (0.174478 -0.438318 0) (0.209327 -0.449303 0) (0.244339 -0.458689 0) (0.279434 -0.466605 0) (0.31455 -0.473165 0) (0.349637 -0.478469 0) (0.38466 -0.482599 0) (0.419593 -0.485622 0) (0.454418 -0.487585 0) (0.489124 -0.488518 0) (0.523703 -0.488433 0) (0.558147 -0.487323 0) (0.592448 -0.485168 0) (0.626597 -0.481932 0) (0.660576 -0.477567 0) (0.694364 -0.472014 0) (0.727929 -0.465205 0) (0.761233 -0.457063 0) (0.794226 -0.447503 0) (0.826847 -0.436434 0) (0.859023 -0.42376 0) (0.890666 -0.409374 0) (0.921672 -0.393162 0) (0.951917 -0.375 0) (0.981252 -0.354751 0) (1.00949 -0.332267 0) (1.03642 -0.307386 0) (1.06175 -0.279938 0) (1.08513 -0.249755 0) (1.10612 -0.216692 0) (1.12421 -0.180676 0) (1.13881 -0.141786 0) (1.14937 -0.100386 0) (1.1557 -0.057226 0) (1.15373 -0.0174956 0) (1.16007 0.0576157 0) (1.15385 0.101146 0) (1.14345 0.143023 0) (1.12901 0.182478 0) (1.11104 0.219118 0) (1.09012 0.252838 0) (1.06676 0.283691 0) (1.0414 0.311808 0) (1.01439 0.337347 0) (0.986015 0.360473 0) (0.956506 0.38134 0) (0.926048 0.400094 0) (0.894794 0.416868 0) (0.862873 0.431783 0) (0.830392 0.444949 0) (0.797442 0.456469 0) (0.764101 0.466437 0) (0.730432 0.474942 0) (0.696489 0.482065 0) (0.662314 0.487879 0) (0.627942 0.49245 0) (0.593399 0.495835 0) (0.558703 0.498081 0) (0.523868 0.499222 0) (0.488905 0.499279 0) (0.453822 0.498258 0) (0.41863 0.49615 0) (0.38334 0.492927 0) (0.347971 0.488543 0) (0.31255 0.482938 0) (0.277112 0.476031 0) (0.241707 0.467727 0) (0.206399 0.457914 0) (0.171269 0.446469 0) (0.136419 0.433252 0) (0.10197 0.418117 0) (0.0680756 0.400905 0) (0.034916 0.381452 0) (0.00271101 0.359588 0) (-0.0282748 0.335147 0) (-0.0577227 0.307971 0) (-0.0852509 0.277929 0) (-0.110408 0.244941 0) (-0.132677 0.209021 0) (-0.151495 0.170335 0) (-0.166315 0.129273 0) (-0.176695 0.0865351 0) (-0.182427 0.0431628 0) (-0.18412 -5.21772e-18 0) (-0.182427 -0.0431628 0) (-0.176695 -0.0865351 0) (-0.166315 -0.129273 0) (-0.151495 -0.170335 0) (-0.132677 -0.209021 0) (-0.110408 -0.244941 0) (-0.0852509 -0.277929 0) (-0.0577227 -0.307971 0) (-0.0282748 -0.335147 0) (0.00271101 -0.359588 0) (0.034916 -0.381452 0) (0.0680756 -0.400905 0) (0.10197 -0.418117 0) (0.136419 -0.433252 0) (0.171269 -0.446469 0) (0.206399 -0.457914 0) (0.241707 -0.467727 0) (0.277112 -0.476031 0) (0.31255 -0.482938 0) (0.347971 -0.488543 0) (0.38334 -0.492927 0) (0.41863 -0.49615 0) (0.453822 -0.498258 0) (0.488905 -0.499279 0) (0.523868 -0.499222 0) (0.558703 -0.498081 0) (0.593399 -0.495835 0) (0.627942 -0.49245 0) (0.662314 -0.487879 0) (0.696489 -0.482065 0) (0.730432 -0.474942 0) (0.764101 -0.466437 0) (0.797442 -0.456469 0) (0.830392 -0.444949 0) (0.862873 -0.431783 0) (0.894794 -0.416868 0) (0.926048 -0.400094 0) (0.956506 -0.38134 0) (0.986015 -0.360473 0) (1.01439 -0.337347 0) (1.0414 -0.311808 0) (1.06676 -0.283691 0) (1.09012 -0.252838 0) (1.11104 -0.219118 0) (1.12901 -0.182478 0) (1.14345 -0.143023 0) (1.15385 -0.101146 0) (1.16007 -0.0576157 0) (1.15807 -0.0176169 0) (1.16456 0.0580105 0) (1.15845 0.10191 0) (1.1482 0.144263 0) (1.13392 0.184282 0) (1.11608 0.221548 0) (1.09524 0.255929 0) (1.07191 0.287459 0) (1.04652 0.316254 0) (1.01943 0.342462 0) (0.990928 0.36624 0) (0.961246 0.387737 0) (0.930576 0.407096 0) (0.899073 0.424444 0) (0.866871 0.439899 0) (0.834079 0.453568 0) (0.800794 0.465552 0) (0.767094 0.475941 0) (0.733048 0.484819 0) (0.698713 0.492265 0) (0.664136 0.498348 0) (0.629353 0.503133 0) (0.594396 0.506673 0) (0.559285 0.509014 0) (0.524038 0.51019 0) (0.488669 0.51022 0) (0.453188 0.509112 0) (0.417607 0.506856 0) (0.381942 0.503429 0) (0.34621 0.498788 0) (0.310439 0.492874 0) (0.274667 0.485611 0) (0.238943 0.476908 0) (0.203332 0.466658 0) (0.167916 0.454739 0) (0.132797 0.441018 0) (0.0981014 0.425348 0) (0.0639819 0.407576 0) (0.0306236 0.387539 0) (-0.00175035 0.365072 0) (-0.0328714 0.340011 0) (-0.0624169 0.312205 0) (-0.0900019 0.281529 0) (-0.115174 0.247915 0) (-0.137416 0.211387 0) (-0.156176 0.172126 0) (-0.170918 0.130538 0) (-0.181222 0.0873309 0) (-0.1869 0.0435442 0) (-0.188574 -5.75982e-18 0) (-0.1869 -0.0435442 0) (-0.181222 -0.0873309 0) (-0.170918 -0.130538 0) (-0.156176 -0.172126 0) (-0.137416 -0.211387 0) (-0.115174 -0.247915 0) (-0.0900019 -0.281529 0) (-0.0624169 -0.312205 0) (-0.0328714 -0.340011 0) (-0.00175035 -0.365072 0) (0.0306236 -0.387539 0) (0.0639819 -0.407576 0) (0.0981014 -0.425348 0) (0.132797 -0.441018 0) (0.167916 -0.454739 0) (0.203332 -0.466658 0) (0.238943 -0.476908 0) (0.274667 -0.485611 0) (0.310439 -0.492874 0) (0.34621 -0.498788 0) (0.381942 -0.503429 0) (0.417607 -0.506856 0) (0.453188 -0.509112 0) (0.488669 -0.51022 0) (0.524038 -0.51019 0) (0.559285 -0.509014 0) (0.594396 -0.506673 0) (0.629353 -0.503133 0) (0.664136 -0.498348 0) (0.698713 -0.492265 0) (0.733048 -0.484819 0) (0.767094 -0.475941 0) (0.800794 -0.465552 0) (0.834079 -0.453568 0) (0.866871 -0.439899 0) (0.899073 -0.424444 0) (0.930576 -0.407096 0) (0.961246 -0.387737 0) (0.990928 -0.36624 0) (1.01943 -0.342462 0) (1.04652 -0.316254 0) (1.07191 -0.287459 0) (1.09524 -0.255929 0) (1.11608 -0.221548 0) (1.13392 -0.184282 0) (1.1482 -0.144263 0) (1.15845 -0.10191 0) (1.16456 -0.0580105 0) (1.16252 -0.0177405 0) (1.16917 0.0584105 0) (1.16318 0.102678 0) (1.15308 0.145505 0) (1.13896 0.186089 0) (1.12125 0.223983 0) (1.10049 0.259029 0) (1.07719 0.291243 0) (1.05178 0.320724 0) (1.02462 0.347611 0) (0.995992 0.372052 0) (0.966141 0.394192 0) (0.935258 0.414166 0) (0.903506 0.432101 0) (0.871019 0.448108 0) (0.837911 0.462294 0) (0.804282 0.474753 0) (0.770214 0.485573 0) (0.73578 0.494835 0) (0.701039 0.502614 0) (0.666043 0.508975 0) (0.630832 0.513981 0) (0.59544 0.517683 0) (0.559894 0.520124 0) (0.524214 0.521337 0) (0.488416 0.521341 0) (0.452516 0.520145 0) (0.416526 0.517741 0) (0.380465 0.514106 0) (0.344353 0.509202 0) (0.308218 0.502972 0) (0.272098 0.495345 0) (0.236044 0.486234 0) (0.200122 0.475535 0) (0.164414 0.463131 0) (0.129024 0.448892 0) (0.0940803 0.432676 0) (0.0597371 0.414331 0) (0.0261826 0.393698 0) (-0.00635663 0.370616 0) (-0.0376085 0.344925 0) (-0.0672466 0.316478 0) (-0.094883 0.285161 0) (-0.120064 0.250912 0) (-0.142277 0.21377 0) (-0.160974 0.17393 0) (-0.175636 0.131813 0) (-0.185864 0.088134 0) (-0.191489 0.0439296 0) (-0.193144 -6.30193e-18 0) (-0.191489 -0.0439296 0) (-0.185864 -0.088134 0) (-0.175636 -0.131813 0) (-0.160974 -0.17393 0) (-0.142277 -0.21377 0) (-0.120064 -0.250912 0) (-0.094883 -0.285161 0) (-0.0672466 -0.316478 0) (-0.0376085 -0.344925 0) (-0.00635663 -0.370616 0) (0.0261826 -0.393698 0) (0.0597371 -0.414331 0) (0.0940803 -0.432676 0) (0.129024 -0.448892 0) (0.164414 -0.463131 0) (0.200122 -0.475535 0) (0.236044 -0.486234 0) (0.272098 -0.495345 0) (0.308218 -0.502972 0) (0.344353 -0.509202 0) (0.380465 -0.514106 0) (0.416526 -0.517741 0) (0.452516 -0.520145 0) (0.488416 -0.521341 0) (0.524214 -0.521337 0) (0.559894 -0.520124 0) (0.59544 -0.517683 0) (0.630832 -0.513981 0) (0.666043 -0.508975 0) (0.701039 -0.502614 0) (0.73578 -0.494835 0) (0.770214 -0.485573 0) (0.804282 -0.474753 0) (0.837911 -0.462294 0) (0.871019 -0.448108 0) (0.903506 -0.432101 0) (0.935258 -0.414166 0) (0.966141 -0.394192 0) (0.995992 -0.372052 0) (1.02462 -0.347611 0) (1.05178 -0.320724 0) (1.07719 -0.291243 0) (1.10049 -0.259029 0) (1.12125 -0.223983 0) (1.13896 -0.186089 0) (1.15308 -0.145505 0) (1.16318 -0.102678 0) (1.16917 -0.0584105 0) (1.16711 -0.0178665 0) (1.17392 0.058816 0) (1.16803 0.103452 0) (1.15809 0.146751 0) (1.14412 0.187898 0) (1.12655 0.226422 0) (1.10588 0.262138 0) (1.08262 0.295042 0) (1.05719 0.325218 0) (1.02996 0.352793 0) (1.00121 0.377909 0) (0.971193 0.400702 0) (0.940099 0.421305 0) (0.908095 0.439839 0) (0.875319 0.456412 0) (0.841891 0.471126 0) (0.80791 0.484073 0) (0.773464 0.495335 0) (0.738629 0.504991 0) (0.703468 0.513112 0) (0.668036 0.51976 0) (0.632379 0.524994 0) (0.596534 0.528864 0) (0.560531 0.531409 0) (0.524395 0.532662 0) (0.488147 0.532643 0) (0.451805 0.531359 0) (0.415386 0.528804 0) (0.378909 0.524958 0) (0.342398 0.519785 0) (0.305882 0.513232 0) (0.269402 0.505233 0) (0.233007 0.495704 0) (0.196766 0.484545 0) (0.16076 0.471645 0) (0.125097 0.456876 0) (0.0899032 0.4401 0) (0.0553372 0.421169 0) (0.021589 0.399928 0) (-0.0111119 0.376219 0) (-0.0424898 0.349887 0) (-0.0722153 0.320791 0) (-0.099898 0.288823 0) (-0.125083 0.253932 0) (-0.147261 0.216171 0) (-0.165893 0.175748 0) (-0.180474 0.133098 0) (-0.190626 0.0889445 0) (-0.196198 0.0443188 0) (-0.197834 -6.84403e-18 0) (-0.196198 -0.0443188 0) (-0.190626 -0.0889445 0) (-0.180474 -0.133098 0) (-0.165893 -0.175748 0) (-0.147261 -0.216171 0) (-0.125083 -0.253932 0) (-0.099898 -0.288823 0) (-0.0722153 -0.320791 0) (-0.0424898 -0.349887 0) (-0.0111119 -0.376219 0) (0.021589 -0.399928 0) (0.0553372 -0.421169 0) (0.0899032 -0.4401 0) (0.125097 -0.456876 0) (0.16076 -0.471645 0) (0.196766 -0.484545 0) (0.233007 -0.495704 0) (0.269402 -0.505233 0) (0.305882 -0.513232 0) (0.342398 -0.519785 0) (0.378909 -0.524958 0) (0.415386 -0.528804 0) (0.451805 -0.531359 0) (0.488147 -0.532643 0) (0.524395 -0.532662 0) (0.560531 -0.531409 0) (0.596534 -0.528864 0) (0.632379 -0.524994 0) (0.668036 -0.51976 0) (0.703468 -0.513112 0) (0.738629 -0.504991 0) (0.773464 -0.495335 0) (0.80791 -0.484073 0) (0.841891 -0.471126 0) (0.875319 -0.456412 0) (0.908095 -0.439839 0) (0.940099 -0.421305 0) (0.971193 -0.400702 0) (1.00121 -0.377909 0) (1.02996 -0.352793 0) (1.05719 -0.325218 0) (1.08262 -0.295042 0) (1.10588 -0.262138 0) (1.12655 -0.226422 0) (1.14412 -0.187898 0) (1.15809 -0.146751 0) (1.16803 -0.103452 0) (1.17392 -0.058816 0) (1.17183 -0.017995 0) (1.1788 0.0592271 0) (1.17301 0.10423 0) (1.16322 0.148 0) (1.14942 0.189711 0) (1.13198 0.228865 0) (1.11142 0.265256 0) (1.0882 0.298856 0) (1.06276 0.329736 0) (1.03546 0.35801 0) (1.00659 0.38381 0) (0.976407 0.40727 0) (0.945101 0.428514 0) (0.912844 0.447658 0) (0.879776 0.46481 0) (0.84602 0.480065 0) (0.81168 0.49351 0) (0.776846 0.505227 0) (0.741597 0.515287 0) (0.706002 0.523759 0) (0.670118 0.530703 0) (0.633995 0.536173 0) (0.597677 0.540215 0) (0.561196 0.54287 0) (0.524583 0.544167 0) (0.487863 0.544125 0) (0.451057 0.542752 0) (0.414187 0.540045 0) (0.377274 0.535984 0) (0.340346 0.530537 0) (0.303433 0.523655 0) (0.266577 0.515275 0) (0.22983 0.505317 0) (0.19326 0.493689 0) (0.156952 0.48028 0) (0.12101 0.464968 0) (0.0855661 0.44762 0) (0.0507781 0.428091 0) (0.0168386 0.40623 0) (-0.0160202 0.381882 0) (-0.0475196 0.354898 0) (-0.0773272 0.325142 0) (-0.10505 0.292515 0) (-0.130235 0.256977 0) (-0.152373 0.218591 0) (-0.170937 0.17758 0) (-0.185436 0.134394 0) (-0.19551 0.0897625 0) (-0.201029 0.0447122 0) (-0.202648 -6.84403e-18 0) (-0.201029 -0.0447122 0) (-0.19551 -0.0897625 0) (-0.185436 -0.134394 0) (-0.170937 -0.17758 0) (-0.152373 -0.218591 0) (-0.130235 -0.256977 0) (-0.10505 -0.292515 0) (-0.0773272 -0.325142 0) (-0.0475196 -0.354898 0) (-0.0160202 -0.381882 0) (0.0168386 -0.40623 0) (0.0507781 -0.428091 0) (0.0855661 -0.44762 0) (0.12101 -0.464968 0) (0.156952 -0.48028 0) (0.19326 -0.493689 0) (0.22983 -0.505317 0) (0.266577 -0.515275 0) (0.303433 -0.523655 0) (0.340346 -0.530537 0) (0.377274 -0.535984 0) (0.414187 -0.540045 0) (0.451057 -0.542752 0) (0.487863 -0.544125 0) (0.524583 -0.544167 0) (0.561196 -0.54287 0) (0.597677 -0.540215 0) (0.633995 -0.536173 0) (0.670118 -0.530703 0) (0.706002 -0.523759 0) (0.741597 -0.515287 0) (0.776846 -0.505227 0) (0.81168 -0.49351 0) (0.84602 -0.480065 0) (0.879776 -0.46481 0) (0.912844 -0.447658 0) (0.945101 -0.428514 0) (0.976407 -0.40727 0) (1.00659 -0.38381 0) (1.03546 -0.35801 0) (1.06276 -0.329736 0) (1.0882 -0.298856 0) (1.11142 -0.265256 0) (1.13198 -0.228865 0) (1.14942 -0.189711 0) (1.16322 -0.148 0) (1.17301 -0.10423 0) (1.1788 -0.0592271 0) (1.17668 -0.0181259 0) (1.18383 0.0596442 0) (1.17813 0.105014 0) (1.16849 0.149253 0) (1.15485 0.191526 0) (1.13756 0.231313 0) (1.11709 0.268383 0) (1.09392 0.302686 0) (1.06847 0.334277 0) (1.04111 0.363259 0) (1.01213 0.389756 0) (0.981784 0.413893 0) (0.950267 0.435791 0) (0.917755 0.45556 0) (0.884391 0.473302 0) (0.850302 0.48911 0) (0.815594 0.503066 0) (0.780361 0.515248 0) (0.744686 0.525724 0) (0.708641 0.534557 0) (0.672288 0.541804 0) (0.635682 0.547517 0) (0.59887 0.551739 0) (0.56189 0.554507 0) (0.524778 0.55585 0) (0.487563 0.555787 0) (0.450271 0.554326 0) (0.412928 0.551464 0) (0.375559 0.547185 0) (0.338194 0.541458 0) (0.300867 0.53424 0) (0.263621 0.525471 0) (0.22651 0.515076 0) (0.189603 0.502966 0) (0.152984 0.489037 0) (0.116762 0.473171 0) (0.0810651 0.455238 0) (0.0460556 0.435098 0) (0.0119271 0.412604 0) (-0.0210857 0.387606 0) (-0.0527017 0.359958 0) (-0.0825861 0.329534 0) (-0.110344 0.296239 0) (-0.135523 0.260045 0) (-0.157618 0.221028 0) (-0.176109 0.179426 0) (-0.190524 0.135701 0) (-0.200521 0.0905881 0) (-0.205988 0.0451096 0) (-0.207589 -7.38613e-18 0) (-0.205988 -0.0451096 0) (-0.200521 -0.0905881 0) (-0.190524 -0.135701 0) (-0.176109 -0.179426 0) (-0.157618 -0.221028 0) (-0.135523 -0.260045 0) (-0.110344 -0.296239 0) (-0.0825861 -0.329534 0) (-0.0527017 -0.359958 0) (-0.0210857 -0.387606 0) (0.0119271 -0.412604 0) (0.0460556 -0.435098 0) (0.0810651 -0.455238 0) (0.116762 -0.473171 0) (0.152984 -0.489037 0) (0.189603 -0.502966 0) (0.22651 -0.515076 0) (0.263621 -0.525471 0) (0.300867 -0.53424 0) (0.338194 -0.541458 0) (0.375559 -0.547185 0) (0.412928 -0.551464 0) (0.450271 -0.554326 0) (0.487563 -0.555787 0) (0.524778 -0.55585 0) (0.56189 -0.554507 0) (0.59887 -0.551739 0) (0.635682 -0.547517 0) (0.672288 -0.541804 0) (0.708641 -0.534557 0) (0.744686 -0.525724 0) (0.780361 -0.515248 0) (0.815594 -0.503066 0) (0.850302 -0.48911 0) (0.884391 -0.473302 0) (0.917755 -0.45556 0) (0.950267 -0.435791 0) (0.981784 -0.413893 0) (1.01213 -0.389756 0) (1.04111 -0.363259 0) (1.06847 -0.334277 0) (1.09392 -0.302686 0) (1.11709 -0.268383 0) (1.13756 -0.231313 0) (1.15485 -0.191526 0) (1.16849 -0.149253 0) (1.17813 -0.105014 0) (1.18383 -0.0596442 0) (1.18168 -0.0182593 0) (1.18899 0.0600673 0) (1.18339 0.105804 0) (1.17389 0.150511 0) (1.16042 0.193346 0) (1.14327 0.233767 0) (1.12291 0.271518 0) (1.0998 0.306531 0) (1.07435 0.338841 0) (1.04693 0.368542 0) (1.01784 0.395747 0) (0.987329 0.420573 0) (0.955601 0.443137 0) (0.922831 0.463543 0) (0.889168 0.481888 0) (0.854738 0.498261 0) (0.819654 0.512741 0) (0.784012 0.525399 0) (0.747897 0.5363 0) (0.711388 0.545504 0) (0.674549 0.553064 0) (0.63744 0.559026 0) (0.600114 0.563433 0) (0.562614 0.566319 0) (0.52498 0.567711 0) (0.487248 0.567628 0) (0.449447 0.566079 0) (0.411609 0.563061 0) (0.373763 0.55856 0) (0.335942 0.552549 0) (0.298184 0.544988 0) (0.260533 0.535821 0) (0.223046 0.524979 0) (0.185791 0.512377 0) (0.148856 0.497916 0) (0.112347 0.481483 0) (0.0763963 0.462953 0) (0.0411656 0.442189 0) (0.00685052 0.41905 0) (-0.0263127 0.393389 0) (-0.0580405 0.365068 0) (-0.0879961 0.333964 0) (-0.115784 0.299993 0) (-0.140951 0.263136 0) (-0.162998 0.223484 0) (-0.181414 0.181286 0) (-0.195743 0.137018 0) (-0.205662 0.0914216 0) (-0.211077 0.0455113 0) (-0.21266 -7.16929e-18 0) (-0.211077 -0.0455113 0) (-0.205662 -0.0914216 0) (-0.195743 -0.137018 0) (-0.181414 -0.181286 0) (-0.162998 -0.223484 0) (-0.140951 -0.263136 0) (-0.115784 -0.299993 0) (-0.0879961 -0.333964 0) (-0.0580405 -0.365068 0) (-0.0263127 -0.393389 0) (0.00685052 -0.41905 0) (0.0411656 -0.442189 0) (0.0763963 -0.462953 0) (0.112347 -0.481483 0) (0.148856 -0.497916 0) (0.185791 -0.512377 0) (0.223046 -0.524979 0) (0.260533 -0.535821 0) (0.298184 -0.544988 0) (0.335942 -0.552549 0) (0.373763 -0.55856 0) (0.411609 -0.563061 0) (0.449447 -0.566079 0) (0.487248 -0.567628 0) (0.52498 -0.567711 0) (0.562614 -0.566319 0) (0.600114 -0.563433 0) (0.63744 -0.559026 0) (0.674549 -0.553064 0) (0.711388 -0.545504 0) (0.747897 -0.5363 0) (0.784012 -0.525399 0) (0.819654 -0.512741 0) (0.854738 -0.498261 0) (0.889168 -0.481888 0) (0.922831 -0.463543 0) (0.955601 -0.443137 0) (0.987329 -0.420573 0) (1.01784 -0.395747 0) (1.04693 -0.368542 0) (1.07435 -0.338841 0) (1.0998 -0.306531 0) (1.12291 -0.271518 0) (1.14327 -0.233767 0) (1.16042 -0.193346 0) (1.17389 -0.150511 0) (1.18339 -0.105804 0) (1.18899 -0.0600673 0) (1.18683 -0.0183952 0) (1.19431 0.0604967 0) (1.1888 0.1066 0) (1.17944 0.151773 0) (1.16613 0.195169 0) (1.14913 0.236226 0) (1.12888 0.274663 0) (1.10583 0.31039 0) (1.08039 0.343429 0) (1.05292 0.373858 0) (1.02372 0.401782 0) (0.993045 0.42731 0) (0.961105 0.450552 0) (0.928076 0.471607 0) (0.894108 0.490569 0) (0.859332 0.50752 0) (0.823862 0.522535 0) (0.787799 0.535681 0) (0.751233 0.547018 0) (0.714243 0.556602 0) (0.676901 0.564482 0) (0.639271 0.570702 0) (0.60141 0.5753 0) (0.563368 0.578308 0) (0.525191 0.579752 0) (0.486918 0.579651 0) (0.448586 0.578012 0) (0.410231 0.574835 0) (0.371887 0.570109 0) (0.33359 0.563809 0) (0.295382 0.555898 0) (0.257311 0.546326 0) (0.219434 0.535027 0) (0.181822 0.521923 0) (0.144562 0.506918 0) (0.107763 0.489906 0) (0.0715559 0.470765 0) (0.0361042 0.449366 0) (0.00160451 0.425568 0) (-0.0317053 0.399233 0) (-0.0635402 0.370227 0) (-0.0935614 0.338434 0) (-0.121373 0.303778 0) (-0.146523 0.266252 0) (-0.168517 0.225958 0) (-0.186856 0.183161 0) (-0.201097 0.138347 0) (-0.210938 0.0922631 0) (-0.216302 0.0459172 0) (-0.217867 -8.25349e-18 0) (-0.216302 -0.0459172 0) (-0.210938 -0.0922631 0) (-0.201097 -0.138347 0) (-0.186856 -0.183161 0) (-0.168517 -0.225958 0) (-0.146523 -0.266252 0) (-0.121373 -0.303778 0) (-0.0935614 -0.338434 0) (-0.0635402 -0.370227 0) (-0.0317053 -0.399233 0) (0.00160451 -0.425568 0) (0.0361042 -0.449366 0) (0.0715559 -0.470765 0) (0.107763 -0.489906 0) (0.144562 -0.506918 0) (0.181822 -0.521923 0) (0.219434 -0.535027 0) (0.257311 -0.546326 0) (0.295382 -0.555898 0) (0.33359 -0.563809 0) (0.371887 -0.570109 0) (0.410231 -0.574835 0) (0.448586 -0.578012 0) (0.486918 -0.579651 0) (0.525191 -0.579752 0) (0.563368 -0.578308 0) (0.60141 -0.5753 0) (0.639271 -0.570702 0) (0.676901 -0.564482 0) (0.714243 -0.556602 0) (0.751233 -0.547018 0) (0.787799 -0.535681 0) (0.823862 -0.522535 0) (0.859332 -0.50752 0) (0.894108 -0.490569 0) (0.928076 -0.471607 0) (0.961105 -0.450552 0) (0.993045 -0.42731 0) (1.02372 -0.401782 0) (1.05292 -0.373858 0) (1.08039 -0.343429 0) (1.10583 -0.31039 0) (1.12888 -0.274663 0) (1.14913 -0.236226 0) (1.16613 -0.195169 0) (1.17944 -0.151773 0) (1.1888 -0.1066 0) (1.19431 -0.0604967 0) (1.19212 -0.0185337 0) (1.19985 0.0609485 0) (1.19443 0.10745 0) (1.18522 0.153123 0) (1.17207 0.197117 0) (1.15522 0.238848 0) (1.13508 0.27801 0) (1.11208 0.31449 0) (1.08663 0.348292 0) (1.0591 0.379482 0) (1.02978 0.408154 0) (0.998933 0.434412 0) (0.966767 0.458358 0) (0.933463 0.480088 0) (0.899176 0.499688 0) (0.864038 0.517237 0) (0.828169 0.532805 0) (0.791671 0.546455 0) (0.754639 0.558243 0) (0.717156 0.56822 0) (0.679299 0.57643 0) (0.641136 0.582914 0) (0.602731 0.587708 0) (0.564137 0.590841 0) (0.525407 0.592337 0) (0.486585 0.592214 0) (0.447714 0.59048 0) (0.408833 0.587137 0) (0.369983 0.582175 0) (0.331202 0.575573 0) (0.292536 0.567299 0) (0.254034 0.557306 0) (0.215757 0.545534 0) (0.177775 0.531909 0) (0.140178 0.516342 0) (0.103073 0.49873 0) (0.0665955 0.478958 0) (0.0309073 0.456899 0) (-0.00379264 0.43242 0) (-0.0372646 0.405385 0) (-0.0692211 0.375665 0) (-0.0993215 0.343152 0) (-0.127168 0.30778 0) (-0.15231 0.269551 0) (-0.174258 0.228581 0) (-0.192522 0.18515 0) (-0.206676 0.139757 0) (-0.216439 0.0931554 0) (-0.221749 0.0463469 0) (-0.223297 -8.8498e-18 0) (-0.221749 -0.0463469 0) (-0.216439 -0.0931554 0) (-0.206676 -0.139757 0) (-0.192522 -0.18515 0) (-0.174258 -0.228581 0) (-0.15231 -0.269551 0) (-0.127168 -0.30778 0) (-0.0993215 -0.343152 0) (-0.0692211 -0.375665 0) (-0.0372646 -0.405385 0) (-0.00379264 -0.43242 0) (0.0309073 -0.456899 0) (0.0665955 -0.478958 0) (0.103073 -0.49873 0) (0.140178 -0.516342 0) (0.177775 -0.531909 0) (0.215757 -0.545534 0) (0.254034 -0.557306 0) (0.292536 -0.567299 0) (0.331202 -0.575573 0) (0.369983 -0.582175 0) (0.408833 -0.587137 0) (0.447714 -0.59048 0) (0.486585 -0.592214 0) (0.525407 -0.592337 0) (0.564137 -0.590841 0) (0.602731 -0.587708 0) (0.641136 -0.582914 0) (0.679299 -0.57643 0) (0.717156 -0.56822 0) (0.754639 -0.558243 0) (0.791671 -0.546455 0) (0.828169 -0.532805 0) (0.864038 -0.517237 0) (0.899176 -0.499688 0) (0.933463 -0.480088 0) (0.966767 -0.458358 0) (0.998933 -0.434412 0) (1.02978 -0.408154 0) (1.0591 -0.379482 0) (1.08663 -0.348292 0) (1.11208 -0.31449 0) (1.13508 -0.27801 0) (1.15522 -0.238848 0) (1.17207 -0.197117 0) (1.18522 -0.153123 0) (1.19443 -0.10745 0) (1.19985 -0.0609485 0) (1.19763 -0.0186743 0) (1.20555 0.061407 0) (1.20021 0.108306 0) (1.19115 0.154476 0) (1.17817 0.199068 0) (1.16147 0.241475 0) (1.14144 0.281365 0) (1.1185 0.318604 0) (1.09305 0.353178 0) (1.06546 0.38514 0) (1.03603 0.414573 0) (1.005 0.441575 0) (0.972612 0.466239 0) (0.939031 0.488657 0) (0.90442 0.508909 0) (0.868915 0.527071 0) (0.832636 0.543206 0) (0.795692 0.557374 0) (0.758179 0.569624 0) (0.720187 0.580004 0) (0.681797 0.588555 0) (0.643081 0.595312 0) (0.604108 0.600309 0) (0.564939 0.603571 0) (0.525631 0.605123 0) (0.486235 0.604979 0) (0.446799 0.603151 0) (0.407369 0.599639 0) (0.367989 0.594436 0) (0.328703 0.587527 0) (0.289559 0.57888 0) (0.250611 0.568456 0) (0.211919 0.5562 0) (0.173558 0.542042 0) (0.135616 0.525899 0) (0.0982023 0.507674 0) (0.0614515 0.487257 0) (0.0255275 0.464524 0) (-0.00937024 0.439349 0) (-0.0430002 0.4116 0) (-0.0750732 0.381155 0) (-0.105247 0.347913 0) (-0.133123 0.311815 0) (-0.158251 0.272875 0) (-0.180148 0.231223 0) (-0.198334 0.187154 0) (-0.2124 0.141178 0) (-0.222084 0.0940559 0) (-0.227342 0.046781 0) (-0.228872 -9.12085e-18 0) (-0.227342 -0.046781 0) (-0.222084 -0.0940559 0) (-0.2124 -0.141178 0) (-0.198334 -0.187154 0) (-0.180148 -0.231223 0) (-0.158251 -0.272875 0) (-0.133123 -0.311815 0) (-0.105247 -0.347913 0) (-0.0750732 -0.381155 0) (-0.0430002 -0.4116 0) (-0.00937024 -0.439349 0) (0.0255275 -0.464524 0) (0.0614515 -0.487257 0) (0.0982023 -0.507674 0) (0.135616 -0.525899 0) (0.173558 -0.542042 0) (0.211919 -0.5562 0) (0.250611 -0.568456 0) (0.289559 -0.57888 0) (0.328703 -0.587527 0) (0.367989 -0.594436 0) (0.407369 -0.599639 0) (0.446799 -0.603151 0) (0.486235 -0.604979 0) (0.525631 -0.605123 0) (0.564939 -0.603571 0) (0.604108 -0.600309 0) (0.643081 -0.595312 0) (0.681797 -0.588555 0) (0.720187 -0.580004 0) (0.758179 -0.569624 0) (0.795692 -0.557374 0) (0.832636 -0.543206 0) (0.868915 -0.527071 0) (0.90442 -0.508909 0) (0.939031 -0.488657 0) (0.972612 -0.466239 0) (1.005 -0.441575 0) (1.03603 -0.414573 0) (1.06546 -0.38514 0) (1.09305 -0.353178 0) (1.1185 -0.318604 0) (1.14144 -0.281365 0) (1.16147 -0.241475 0) (1.17817 -0.199068 0) (1.19115 -0.154476 0) (1.20021 -0.108306 0) (1.20555 -0.061407 0) (1.20331 -0.0188183 0) (1.21141 0.0618728 0) (1.20616 0.109169 0) (1.19724 0.155834 0) (1.18443 0.201023 0) (1.16788 0.244106 0) (1.14797 0.284729 0) (1.12509 0.322734 0) (1.09965 0.358089 0) (1.072 0.390833 0) (1.04245 0.42104 0) (1.01126 0.448798 0) (0.978642 0.474194 0) (0.944783 0.497314 0) (0.909844 0.518234 0) (0.873963 0.537022 0) (0.837266 0.553739 0) (0.799864 0.568437 0) (0.761857 0.581162 0) (0.723339 0.591957 0) (0.684395 0.600858 0) (0.645105 0.607897 0) (0.605542 0.613103 0) (0.565773 0.6165 0) (0.525862 0.61811 0) (0.485867 0.617948 0) (0.445841 0.616023 0) (0.405837 0.61234 0) (0.365904 0.606893 0) (0.326091 0.599668 0) (0.286451 0.590642 0) (0.247039 0.579777 0) (0.207919 0.567025 0) (0.169167 0.552321 0) (0.130872 0.53559 0) (0.093145 0.516738 0) (0.0561193 0.49566 0) (0.0199599 0.472241 0) (-0.015133 0.446356 0) (-0.0489168 0.417881 0) (-0.0811009 0.386698 0) (-0.111342 0.352715 0) (-0.139241 0.315882 0) (-0.16435 0.276224 0) (-0.186192 0.233885 0) (-0.204296 0.189173 0) (-0.218272 0.142612 0) (-0.227878 0.0949649 0) (-0.233085 0.0472197 0) (-0.234597 -9.12085e-18 0) (-0.233085 -0.0472197 0) (-0.227878 -0.0949649 0) (-0.218272 -0.142612 0) (-0.204296 -0.189173 0) (-0.186192 -0.233885 0) (-0.16435 -0.276224 0) (-0.139241 -0.315882 0) (-0.111342 -0.352715 0) (-0.0811009 -0.386698 0) (-0.0489168 -0.417881 0) (-0.015133 -0.446356 0) (0.0199599 -0.472241 0) (0.0561193 -0.49566 0) (0.093145 -0.516738 0) (0.130872 -0.53559 0) (0.169167 -0.552321 0) (0.207919 -0.567025 0) (0.247039 -0.579777 0) (0.286451 -0.590642 0) (0.326091 -0.599668 0) (0.365904 -0.606893 0) (0.405837 -0.61234 0) (0.445841 -0.616023 0) (0.485867 -0.617948 0) (0.525862 -0.61811 0) (0.565773 -0.6165 0) (0.605542 -0.613103 0) (0.645105 -0.607897 0) (0.684395 -0.600858 0) (0.723339 -0.591957 0) (0.761857 -0.581162 0) (0.799864 -0.568437 0) (0.837266 -0.553739 0) (0.873963 -0.537022 0) (0.909844 -0.518234 0) (0.944783 -0.497314 0) (0.978642 -0.474194 0) (1.01126 -0.448798 0) (1.04245 -0.42104 0) (1.072 -0.390833 0) (1.09965 -0.358089 0) (1.12509 -0.322734 0) (1.14797 -0.284729 0) (1.16788 -0.244106 0) (1.18443 -0.201023 0) (1.19724 -0.155834 0) (1.20616 -0.109169 0) (1.21141 -0.0618728 0) (1.20916 -0.0189657 0) (1.21744 0.0623462 0) (1.21227 0.110038 0) (1.2035 0.157197 0) (1.19084 0.202981 0) (1.17445 0.246742 0) (1.15466 0.288101 0) (1.13185 0.326878 0) (1.10642 0.363023 0) (1.07873 0.396561 0) (1.04907 0.427554 0) (1.01771 0.456081 0) (0.984863 0.482224 0) (0.950722 0.506061 0) (0.91545 0.527663 0) (0.879187 0.547092 0) (0.842062 0.564403 0) (0.804189 0.579644 0) (0.765673 0.592857 0) (0.726612 0.604078 0) (0.687096 0.613339 0) (0.64721 0.620668 0) (0.607034 0.62609 0) (0.566641 0.629628 0) (0.526103 0.631299 0) (0.485482 0.631119 0) (0.444841 0.629098 0) (0.404238 0.625241 0) (0.363728 0.619545 0) (0.323366 0.611999 0) (0.283209 0.602584 0) (0.243316 0.591269 0) (0.203754 0.57801 0) (0.1646 0.562749 0) (0.125944 0.545415 0) (0.0878975 0.525921 0) (0.0505946 0.50417 0) (0.0141999 0.480049 0) (-0.0210857 0.45344 0) (-0.0550193 0.424226 0) (-0.0873092 0.392294 0) (-0.117611 0.35756 0) (-0.145527 0.319982 0) (-0.170612 0.279599 0) (-0.192393 0.236566 0) (-0.210414 0.191207 0) (-0.224299 0.144057 0) (-0.233826 0.0958826 0) (-0.238982 0.0476631 0) (-0.240477 -9.3919e-18 0) (-0.238982 -0.0476631 0) (-0.233826 -0.0958826 0) (-0.224299 -0.144057 0) (-0.210414 -0.191207 0) (-0.192393 -0.236566 0) (-0.170612 -0.279599 0) (-0.145527 -0.319982 0) (-0.117611 -0.35756 0) (-0.0873092 -0.392294 0) (-0.0550193 -0.424226 0) (-0.0210857 -0.45344 0) (0.0141999 -0.480049 0) (0.0505946 -0.50417 0) (0.0878975 -0.525921 0) (0.125944 -0.545415 0) (0.1646 -0.562749 0) (0.203754 -0.57801 0) (0.243316 -0.591269 0) (0.283209 -0.602584 0) (0.323366 -0.611999 0) (0.363728 -0.619545 0) (0.404238 -0.625241 0) (0.444841 -0.629098 0) (0.485482 -0.631119 0) (0.526103 -0.631299 0) (0.566641 -0.629628 0) (0.607034 -0.62609 0) (0.64721 -0.620668 0) (0.687096 -0.613339 0) (0.726612 -0.604078 0) (0.765673 -0.592857 0) (0.804189 -0.579644 0) (0.842062 -0.564403 0) (0.879187 -0.547092 0) (0.91545 -0.527663 0) (0.950722 -0.506061 0) (0.984863 -0.482224 0) (1.01771 -0.456081 0) (1.04907 -0.427554 0) (1.07873 -0.396561 0) (1.10642 -0.363023 0) (1.13185 -0.326878 0) (1.15466 -0.288101 0) (1.17445 -0.246742 0) (1.19084 -0.202981 0) (1.2035 -0.157197 0) (1.21227 -0.110038 0) (1.21744 -0.0623462 0) (1.21517 -0.0191167 0) (1.22365 0.0628274 0) (1.21856 0.110916 0) (1.20992 0.158566 0) (1.19743 0.204943 0) (1.1812 0.249383 0) (1.16153 0.291481 0) (1.13879 0.331037 0) (1.11338 0.367981 0) (1.08564 0.402323 0) (1.05588 0.434115 0) (1.02435 0.463425 0) (0.991276 0.490329 0) (0.956852 0.514897 0) (0.921241 0.537195 0) (0.884589 0.55728 0) (0.847026 0.5752 0) (0.808669 0.590998 0) (0.769629 0.604711 0) (0.730007 0.616369 0) (0.6899 0.625999 0) (0.649397 0.633626 0) (0.608585 0.639272 0) (0.567544 0.642954 0) (0.526352 0.64469 0) (0.485081 0.644494 0) (0.443799 0.642376 0) (0.402572 0.638342 0) (0.361461 0.632392 0) (0.320527 0.624519 0) (0.279833 0.614708 0) (0.239441 0.602933 0) (0.199421 0.589155 0) (0.159853 0.573323 0) (0.120827 0.555373 0) (0.0824559 0.535225 0) (0.0448729 0.512785 0) (0.00824294 0.487948 0) (-0.0272333 0.460603 0) (-0.0613125 0.430635 0) (-0.0937028 0.397943 0) (-0.12406 0.362446 0) (-0.151987 0.324115 0) (-0.177041 0.282999 0) (-0.198757 0.239267 0) (-0.216691 0.193257 0) (-0.230483 0.145514 0) (-0.239932 0.0968091 0) (-0.245038 0.0481114 0) (-0.246516 -9.44611e-18 0) (-0.245038 -0.0481114 0) (-0.239932 -0.0968091 0) (-0.230483 -0.145514 0) (-0.216691 -0.193257 0) (-0.198757 -0.239267 0) (-0.177041 -0.282999 0) (-0.151987 -0.324115 0) (-0.12406 -0.362446 0) (-0.0937028 -0.397943 0) (-0.0613125 -0.430635 0) (-0.0272333 -0.460603 0) (0.00824294 -0.487948 0) (0.0448729 -0.512785 0) (0.0824559 -0.535225 0) (0.120827 -0.555373 0) (0.159853 -0.573323 0) (0.199421 -0.589155 0) (0.239441 -0.602933 0) (0.279833 -0.614708 0) (0.320527 -0.624519 0) (0.361461 -0.632392 0) (0.402572 -0.638342 0) (0.443799 -0.642376 0) (0.485081 -0.644494 0) (0.526352 -0.64469 0) (0.567544 -0.642954 0) (0.608585 -0.639272 0) (0.649397 -0.633626 0) (0.6899 -0.625999 0) (0.730007 -0.616369 0) (0.769629 -0.604711 0) (0.808669 -0.590998 0) (0.847026 -0.5752 0) (0.884589 -0.55728 0) (0.921241 -0.537195 0) (0.956852 -0.514897 0) (0.991276 -0.490329 0) (1.02435 -0.463425 0) (1.05588 -0.434115 0) (1.08564 -0.402323 0) (1.11338 -0.367981 0) (1.13879 -0.331037 0) (1.16153 -0.291481 0) (1.1812 -0.249383 0) (1.19743 -0.204943 0) (1.20992 -0.158566 0) (1.21856 -0.110916 0) (1.22365 -0.0628274 0) (1.22137 -0.0192711 0) (1.23005 0.0633167 0) (1.22502 0.111802 0) (1.21651 0.159941 0) (1.20418 0.206911 0) (1.18811 0.252029 0) (1.16857 0.294871 0) (1.14592 0.335212 0) (1.12053 0.372963 0) (1.09275 0.40812 0) (1.06288 0.440722 0) (1.03119 0.47083 0) (0.997886 0.498509 0) (0.963176 0.523823 0) (0.927222 0.546832 0) (0.890172 0.567586 0) (0.85216 0.586129 0) (0.813307 0.602498 0) (0.773728 0.616722 0) (0.733528 0.628828 0) (0.692808 0.638839 0) (0.651667 0.646772 0) (0.610195 0.652647 0) (0.568481 0.65648 0) (0.526611 0.658284 0) (0.484663 0.658072 0) (0.442714 0.655856 0) (0.400838 0.651643 0) (0.359102 0.645435 0) (0.317574 0.637228 0) (0.276321 0.627013 0) (0.235412 0.614767 0) (0.194919 0.60046 0) (0.154923 0.584046 0) (0.115519 0.565467 0) (0.0768161 0.544649 0) (0.0389499 0.521506 0) (0.00208427 0.495939 0) (-0.0335805 0.467843 0) (-0.0678014 0.43711 0) (-0.100287 0.403644 0) (-0.130693 0.367374 0) (-0.158624 0.328281 0) (-0.183642 0.286425 0) (-0.205289 0.241989 0) (-0.223132 0.195323 0) (-0.236832 0.146984 0) (-0.246202 0.0977447 0) (-0.251258 0.0485646 0) (-0.25272 -9.60874e-18 0) (-0.251258 -0.0485646 0) (-0.246202 -0.0977447 0) (-0.236832 -0.146984 0) (-0.223132 -0.195323 0) (-0.205289 -0.241989 0) (-0.183642 -0.286425 0) (-0.158624 -0.328281 0) (-0.130693 -0.367374 0) (-0.100287 -0.403644 0) (-0.0678014 -0.43711 0) (-0.0335805 -0.467843 0) (0.00208427 -0.495939 0) (0.0389499 -0.521506 0) (0.0768161 -0.544649 0) (0.115519 -0.565467 0) (0.154923 -0.584046 0) (0.194919 -0.60046 0) (0.235412 -0.614767 0) (0.276321 -0.627013 0) (0.317574 -0.637228 0) (0.359102 -0.645435 0) (0.400838 -0.651643 0) (0.442714 -0.655856 0) (0.484663 -0.658072 0) (0.526611 -0.658284 0) (0.568481 -0.65648 0) (0.610195 -0.652647 0) (0.651667 -0.646772 0) (0.692808 -0.638839 0) (0.733528 -0.628828 0) (0.773728 -0.616722 0) (0.813307 -0.602498 0) (0.85216 -0.586129 0) (0.890172 -0.567586 0) (0.927222 -0.546832 0) (0.963176 -0.523823 0) (0.997886 -0.498509 0) (1.03119 -0.47083 0) (1.06288 -0.440722 0) (1.09275 -0.40812 0) (1.12053 -0.372963 0) (1.14592 -0.335212 0) (1.16857 -0.294871 0) (1.18811 -0.252029 0) (1.20418 -0.206911 0) (1.21651 -0.159941 0) (1.22502 -0.111802 0) (1.23005 -0.0633167 0) (1.22775 -0.019429 0) (1.23663 0.0638143 0) (1.23167 0.112696 0) (1.22329 0.161324 0) (1.21112 0.208884 0) (1.19521 0.254682 0) (1.1758 0.29827 0) (1.15323 0.339401 0) (1.12787 0.377969 0) (1.10005 0.413952 0) (1.07008 0.447377 0) (1.03822 0.478295 0) (1.0047 0.506763 0) (0.969696 0.532839 0) (0.933393 0.556573 0) (0.895938 0.578012 0) (0.857467 0.597192 0) (0.818105 0.614144 0) (0.77797 0.628893 0) (0.737173 0.641459 0) (0.695823 0.651858 0) (0.65402 0.660107 0) (0.611865 0.666218 0) (0.569454 0.670205 0) (0.52688 0.67208 0) (0.484229 0.671855 0) (0.441588 0.66954 0) (0.399036 0.665145 0) (0.35665 0.658674 0) (0.314505 0.650127 0) (0.272673 0.639499 0) (0.231227 0.626774 0) (0.190245 0.611926 0) (0.149809 0.594917 0) (0.110015 0.575695 0) (0.0709746 0.554194 0) (0.0328214 0.530334 0) (-0.00428067 0.504023 0) (-0.0401322 0.475161 0) (-0.074491 0.443649 0) (-0.107066 0.409397 0) (-0.137515 0.372345 0) (-0.165444 0.33248 0) (-0.19042 0.289876 0) (-0.211993 0.24473 0) (-0.229744 0.197405 0) (-0.243348 0.148467 0) (-0.252641 0.0986896 0) (-0.257648 0.0490228 0) (-0.259094 -9.71716e-18 0) (-0.257648 -0.0490228 0) (-0.252641 -0.0986896 0) (-0.243348 -0.148467 0) (-0.229744 -0.197405 0) (-0.211993 -0.24473 0) (-0.19042 -0.289876 0) (-0.165444 -0.33248 0) (-0.137515 -0.372345 0) (-0.107066 -0.409397 0) (-0.074491 -0.443649 0) (-0.0401322 -0.475161 0) (-0.00428067 -0.504023 0) (0.0328214 -0.530334 0) (0.0709746 -0.554194 0) (0.110015 -0.575695 0) (0.149809 -0.594917 0) (0.190245 -0.611926 0) (0.231227 -0.626774 0) (0.272673 -0.639499 0) (0.314505 -0.650127 0) (0.35665 -0.658674 0) (0.399036 -0.665145 0) (0.441588 -0.66954 0) (0.484229 -0.671855 0) (0.52688 -0.67208 0) (0.569454 -0.670205 0) (0.611865 -0.666218 0) (0.65402 -0.660107 0) (0.695823 -0.651858 0) (0.737173 -0.641459 0) (0.77797 -0.628893 0) (0.818105 -0.614144 0) (0.857467 -0.597192 0) (0.895938 -0.578012 0) (0.933393 -0.556573 0) (0.969696 -0.532839 0) (1.0047 -0.506763 0) (1.03822 -0.478295 0) (1.07008 -0.447377 0) (1.10005 -0.413952 0) (1.12787 -0.377969 0) (1.15323 -0.339401 0) (1.1758 -0.29827 0) (1.19521 -0.254682 0) (1.21112 -0.208884 0) (1.22329 -0.161324 0) (1.23167 -0.112696 0) (1.23663 -0.0638143 0) (1.23432 -0.0195905 0) (1.2434 0.0643205 0) (1.23851 0.113601 0) (1.23025 0.162716 0) (1.21824 0.210864 0) (1.20249 0.257341 0) (1.18321 0.301678 0) (1.16073 0.343606 0) (1.1354 0.382998 0) (1.10756 0.419818 0) (1.07749 0.454079 0) (1.04547 0.485821 0) (1.01171 0.515093 0) (0.976417 0.541944 0) (0.939759 0.56642 0) (0.90189 0.588558 0) (0.862948 0.60839 0) (0.823064 0.625939 0) (0.782357 0.641224 0) (0.740946 0.65426 0) (0.698943 0.665059 0) (0.656458 0.673631 0) (0.613597 0.679985 0) (0.570463 0.684131 0) (0.527159 0.68608 0) (0.48378 0.685842 0) (0.440419 0.683428 0) (0.397167 0.678848 0) (0.354106 0.672109 0) (0.31132 0.663217 0) (0.268887 0.652168 0) (0.226886 0.638953 0) (0.185397 0.623553 0) (0.144508 0.605937 0) (0.104314 0.586059 0) (0.0649275 0.56386 0) (0.0264833 0.539268 0) (-0.0108565 0.512198 0) (-0.0468933 0.482557 0) (-0.0813864 0.450253 0) (-0.114046 0.415204 0) (-0.144532 0.377357 0) (-0.172453 0.336712 0) (-0.197381 0.293354 0) (-0.218875 0.247492 0) (-0.23653 0.199503 0) (-0.250039 0.149962 0) (-0.259253 0.099644 0) (-0.264212 0.0494861 0) (-0.265643 -9.55453e-18 0) (-0.264212 -0.0494861 0) (-0.259253 -0.099644 0) (-0.250039 -0.149962 0) (-0.23653 -0.199503 0) (-0.218875 -0.247492 0) (-0.197381 -0.293354 0) (-0.172453 -0.336712 0) (-0.144532 -0.377357 0) (-0.114046 -0.415204 0) (-0.0813864 -0.450253 0) (-0.0468933 -0.482557 0) (-0.0108565 -0.512198 0) (0.0264833 -0.539268 0) (0.0649275 -0.56386 0) (0.104314 -0.586059 0) (0.144508 -0.605937 0) (0.185397 -0.623553 0) (0.226886 -0.638953 0) (0.268887 -0.652168 0) (0.31132 -0.663217 0) (0.354106 -0.672109 0) (0.397167 -0.678848 0) (0.440419 -0.683428 0) (0.48378 -0.685842 0) (0.527159 -0.68608 0) (0.570463 -0.684131 0) (0.613597 -0.679985 0) (0.656458 -0.673631 0) (0.698943 -0.665059 0) (0.740946 -0.65426 0) (0.782357 -0.641224 0) (0.823064 -0.625939 0) (0.862948 -0.60839 0) (0.90189 -0.588558 0) (0.939759 -0.56642 0) (0.976417 -0.541944 0) (1.01171 -0.515093 0) (1.04547 -0.485821 0) (1.07749 -0.454079 0) (1.10756 -0.419818 0) (1.1354 -0.382998 0) (1.16073 -0.343606 0) (1.18321 -0.301678 0) (1.20249 -0.257341 0) (1.21824 -0.210864 0) (1.23025 -0.162716 0) (1.23851 -0.113601 0) (1.2434 -0.0643205 0) (1.24108 -0.0197554 0) (1.25037 0.0648354 0) (1.24554 0.114516 0) (1.2374 0.164116 0) (1.22554 0.212851 0) (1.20995 0.260008 0) (1.19082 0.305097 0) (1.16843 0.347827 0) (1.14314 0.388052 0) (1.11527 0.425719 0) (1.0851 0.460827 0) (1.05292 0.493407 0) (1.01893 0.523498 0) (0.983341 0.55114 0) (0.946323 0.576373 0) (0.908031 0.599225 0) (0.868607 0.619722 0) (0.828185 0.637882 0) (0.786892 0.653716 0) (0.744847 0.667234 0) (0.702172 0.678442 0) (0.658981 0.687345 0) (0.615389 0.693948 0) (0.571509 0.698259 0) (0.527448 0.700284 0) (0.483315 0.700035 0) (0.439209 0.69752 0) (0.39523 0.692753 0) (0.35147 0.685743 0) (0.308019 0.676497 0) (0.264963 0.665019 0) (0.222386 0.651305 0) (0.180374 0.635342 0) (0.139016 0.617106 0) (0.098411 0.596558 0) (0.0586715 0.573648 0) (0.0199314 0.548309 0) (-0.0176476 0.520466 0) (-0.0538687 0.490031 0) (-0.0884926 0.456921 0) (-0.121232 0.421063 0) (-0.151748 0.382411 0) (-0.179655 0.340977 0) (-0.20453 0.296857 0) (-0.225941 0.250274 0) (-0.243497 0.201618 0) (-0.256909 0.151471 0) (-0.266045 0.100608 0) (-0.270956 0.0499547 0) (-0.272371 -9.50032e-18 0) (-0.270956 -0.0499547 0) (-0.266045 -0.100608 0) (-0.256909 -0.151471 0) (-0.243497 -0.201618 0) (-0.225941 -0.250274 0) (-0.20453 -0.296857 0) (-0.179655 -0.340977 0) (-0.151748 -0.382411 0) (-0.121232 -0.421063 0) (-0.0884926 -0.456921 0) (-0.0538687 -0.490031 0) (-0.0176476 -0.520466 0) (0.0199314 -0.548309 0) (0.0586715 -0.573648 0) (0.098411 -0.596558 0) (0.139016 -0.617106 0) (0.180374 -0.635342 0) (0.222386 -0.651305 0) (0.264963 -0.665019 0) (0.308019 -0.676497 0) (0.35147 -0.685743 0) (0.39523 -0.692753 0) (0.439209 -0.69752 0) (0.483315 -0.700035 0) (0.527448 -0.700284 0) (0.571509 -0.698259 0) (0.615389 -0.693948 0) (0.658981 -0.687345 0) (0.702172 -0.678442 0) (0.744847 -0.667234 0) (0.786892 -0.653716 0) (0.828185 -0.637882 0) (0.868607 -0.619722 0) (0.908031 -0.599225 0) (0.946323 -0.576373 0) (0.983341 -0.55114 0) (1.01893 -0.523498 0) (1.05292 -0.493407 0) (1.0851 -0.460827 0) (1.11527 -0.425719 0) (1.14314 -0.388052 0) (1.16843 -0.347827 0) (1.19082 -0.305097 0) (1.20995 -0.260008 0) (1.22554 -0.212851 0) (1.2374 -0.164116 0) (1.24554 -0.114516 0) (1.25037 -0.0648354 0) (1.24804 -0.0199238 0) (1.25755 0.0653593 0) (1.25278 0.115441 0) (1.24475 0.165526 0) (1.23305 0.214847 0) (1.21762 0.262683 0) (1.19862 0.308526 0) (1.17633 0.352064 0) (1.15108 0.39313 0) (1.12318 0.431654 0) (1.09293 0.467623 0) (1.06058 0.501055 0) (1.02636 0.531979 0) (0.990472 0.560428 0) (0.953086 0.586431 0) (0.914362 0.610013 0) (0.874445 0.63119 0) (0.833472 0.649974 0) (0.791574 0.66637 0) (0.748878 0.680381 0) (0.705509 0.692008 0) (0.66159 0.701251 0) (0.617244 0.70811 0) (0.572591 0.712589 0) (0.527749 0.714695 0) (0.482834 0.714434 0) (0.437957 0.711819 0) (0.393225 0.706861 0) (0.348741 0.699574 0) (0.304601 0.689969 0) (0.2609 0.678054 0) (0.217728 0.663831 0) (0.175174 0.647293 0) (0.133333 0.628424 0) (0.0923045 0.607193 0) (0.0522031 0.583557 0) (0.013162 0.557457 0) (-0.0246585 0.528825 0) (-0.0610631 0.497584 0) (-0.0958148 0.463655 0) (-0.128629 0.426974 0) (-0.15917 0.387507 0) (-0.187056 0.345275 0) (-0.211871 0.300386 0) (-0.233195 0.253078 0) (-0.25065 0.20375 0) (-0.263964 0.152994 0) (-0.273023 0.101582 0) (-0.277886 0.0504286 0) (-0.279286 -9.17506e-18 0) (-0.277886 -0.0504286 0) (-0.273023 -0.101582 0) (-0.263964 -0.152994 0) (-0.25065 -0.20375 0) (-0.233195 -0.253078 0) (-0.211871 -0.300386 0) (-0.187056 -0.345275 0) (-0.15917 -0.387507 0) (-0.128629 -0.426974 0) (-0.0958148 -0.463655 0) (-0.0610631 -0.497584 0) (-0.0246585 -0.528825 0) (0.013162 -0.557457 0) (0.0522031 -0.583557 0) (0.0923045 -0.607193 0) (0.133333 -0.628424 0) (0.175174 -0.647293 0) (0.217728 -0.663831 0) (0.2609 -0.678054 0) (0.304601 -0.689969 0) (0.348741 -0.699574 0) (0.393225 -0.706861 0) (0.437957 -0.711819 0) (0.482834 -0.714434 0) (0.527749 -0.714695 0) (0.572591 -0.712589 0) (0.617244 -0.70811 0) (0.66159 -0.701251 0) (0.705509 -0.692008 0) (0.748878 -0.680381 0) (0.791574 -0.66637 0) (0.833472 -0.649974 0) (0.874445 -0.63119 0) (0.914362 -0.610013 0) (0.953086 -0.586431 0) (0.990472 -0.560428 0) (1.02636 -0.531979 0) (1.06058 -0.501055 0) (1.09293 -0.467623 0) (1.12318 -0.431654 0) (1.15108 -0.39313 0) (1.17633 -0.352064 0) (1.19862 -0.308526 0) (1.21762 -0.262683 0) (1.23305 -0.214847 0) (1.24475 -0.165526 0) (1.25278 -0.115441 0) (1.25755 -0.0653593 0) (1.25521 -0.0200957 0) (1.26495 0.0658924 0) (1.26022 0.116378 0) (1.25231 0.166948 0) (1.24075 0.216852 0) (1.22548 0.265367 0) (1.20663 0.311966 0) (1.18444 0.356317 0) (1.15923 0.398232 0) (1.13131 0.437625 0) (1.10097 0.474467 0) (1.06846 0.508764 0) (1.03401 0.540536 0) (0.997813 0.569806 0) (0.960052 0.596597 0) (0.920887 0.620923 0) (0.880464 0.642795 0) (0.838925 0.662217 0) (0.796406 0.679188 0) (0.753039 0.693703 0) (0.708955 0.705759 0) (0.664286 0.715349 0) (0.619161 0.722471 0) (0.573711 0.727124 0) (0.528062 0.729312 0) (0.482339 0.729041 0) (0.436664 0.726324 0) (0.391153 0.721173 0) (0.345919 0.713604 0) (0.301067 0.703633 0) (0.256697 0.691273 0) (0.212908 0.676531 0) (0.169795 0.659407 0) (0.127455 0.639892 0) (0.0859915 0.617964 0) (0.045519 0.593588 0) (0.00617095 0.566712 0) (-0.0318935 0.537278 0) (-0.0684813 0.505214 0) (-0.103358 0.470453 0) (-0.136242 0.432938 0) (-0.166802 0.392646 0) (-0.194662 0.349606 0) (-0.219412 0.303942 0) (-0.240644 0.255902 0) (-0.257994 0.205899 0) (-0.271209 0.15453 0) (-0.280191 0.102566 0) (-0.285008 0.0509079 0) (-0.286392 -9.50032e-18 0) (-0.285008 -0.0509079 0) (-0.280191 -0.102566 0) (-0.271209 -0.15453 0) (-0.257994 -0.205899 0) (-0.240644 -0.255902 0) (-0.219412 -0.303942 0) (-0.194662 -0.349606 0) (-0.166802 -0.392646 0) (-0.136242 -0.432938 0) (-0.103358 -0.470453 0) (-0.0684813 -0.505214 0) (-0.0318935 -0.537278 0) (0.00617095 -0.566712 0) (0.045519 -0.593588 0) (0.0859915 -0.617964 0) (0.127455 -0.639892 0) (0.169795 -0.659407 0) (0.212908 -0.676531 0) (0.256697 -0.691273 0) (0.301067 -0.703633 0) (0.345919 -0.713604 0) (0.391153 -0.721173 0) (0.436664 -0.726324 0) (0.482339 -0.729041 0) (0.528062 -0.729312 0) (0.573711 -0.727124 0) (0.619161 -0.722471 0) (0.664286 -0.715349 0) (0.708955 -0.705759 0) (0.753039 -0.693703 0) (0.796406 -0.679188 0) (0.838925 -0.662217 0) (0.880464 -0.642795 0) (0.920887 -0.620923 0) (0.960052 -0.596597 0) (0.997813 -0.569806 0) (1.03401 -0.540536 0) (1.06846 -0.508764 0) (1.10097 -0.474467 0) (1.13131 -0.437625 0) (1.15923 -0.398232 0) (1.18444 -0.356317 0) (1.20663 -0.311966 0) (1.22548 -0.265367 0) (1.24075 -0.216852 0) (1.25231 -0.166948 0) (1.26022 -0.116378 0) (1.26495 -0.0658924 0) (1.26259 -0.020271 0) (1.27256 0.0664348 0) (1.26789 0.117328 0) (1.26008 0.168381 0) (1.24867 0.218868 0) (1.23355 0.268061 0) (1.21484 0.315419 0) (1.19276 0.360587 0) (1.1676 0.40336 0) (1.13966 0.443631 0) (1.10923 0.481358 0) (1.07656 0.516535 0) (1.04187 0.54917 0) (1.00537 0.579277 0) (0.967224 0.60687 0) (0.927607 0.631957 0) (0.886666 0.654538 0) (0.844547 0.674612 0) (0.801389 0.69217 0) (0.757332 0.707202 0) (0.712512 0.719696 0) (0.667069 0.729642 0) (0.621142 0.737033 0) (0.574868 0.741865 0) (0.528386 0.744137 0) (0.481829 0.743858 0) (0.435329 0.741037 0) (0.389014 0.73569 0) (0.343004 0.727835 0) (0.297414 0.717491 0) (0.252354 0.704677 0) (0.207928 0.689405 0) (0.164236 0.671684 0) (0.121382 0.651512 0) (0.0794695 0.628873 0) (0.0386161 0.603741 0) (-0.00104532 0.576075 0) (-0.0393569 0.545822 0) (-0.0761281 0.512923 0) (-0.111127 0.477316 0) (-0.144077 0.438955 0) (-0.174651 0.397826 0) (-0.202477 0.353971 0) (-0.227157 0.307524 0) (-0.248293 0.258748 0) (-0.265536 0.208066 0) (-0.278652 0.156081 0) (-0.287556 0.10356 0) (-0.292326 0.0513926 0) (-0.293696 -9.60874e-18 0) (-0.292326 -0.0513926 0) (-0.287556 -0.10356 0) (-0.278652 -0.156081 0) (-0.265536 -0.208066 0) (-0.248293 -0.258748 0) (-0.227157 -0.307524 0) (-0.202477 -0.353971 0) (-0.174651 -0.397826 0) (-0.144077 -0.438955 0) (-0.111127 -0.477316 0) (-0.0761281 -0.512923 0) (-0.0393569 -0.545822 0) (-0.00104532 -0.576075 0) (0.0386161 -0.603741 0) (0.0794695 -0.628873 0) (0.121382 -0.651512 0) (0.164236 -0.671684 0) (0.207928 -0.689405 0) (0.252354 -0.704677 0) (0.297414 -0.717491 0) (0.343004 -0.727835 0) (0.389014 -0.73569 0) (0.435329 -0.741037 0) (0.481829 -0.743858 0) (0.528386 -0.744137 0) (0.574868 -0.741865 0) (0.621142 -0.737033 0) (0.667069 -0.729642 0) (0.712512 -0.719696 0) (0.757332 -0.707202 0) (0.801389 -0.69217 0) (0.844547 -0.674612 0) (0.886666 -0.654538 0) (0.927607 -0.631957 0) (0.967224 -0.60687 0) (1.00537 -0.579277 0) (1.04187 -0.54917 0) (1.07656 -0.516535 0) (1.10923 -0.481358 0) (1.13966 -0.443631 0) (1.1676 -0.40336 0) (1.19276 -0.360587 0) (1.21484 -0.315419 0) (1.23355 -0.268061 0) (1.24867 -0.218868 0) (1.26008 -0.168381 0) (1.26789 -0.117328 0) (1.27256 -0.0664348 0) (1.27019 -0.0204498 0) (1.28039 0.0669868 0) (1.27577 0.118289 0) (1.26806 0.169827 0) (1.25679 0.220895 0) (1.24184 0.270766 0) (1.22327 0.318884 0) (1.20129 0.364875 0) (1.17619 0.408512 0) (1.14823 0.449672 0) (1.11772 0.488297 0) (1.08488 0.524367 0) (1.04995 0.55788 0) (1.01314 0.588841 0) (0.974604 0.617252 0) (0.934525 0.643114 0) (0.893054 0.66642 0) (0.850339 0.68716 0) (0.806525 0.705318 0) (0.761757 0.720877 0) (0.71618 0.73382 0) (0.669941 0.744131 0) (0.623186 0.751798 0) (0.576064 0.756812 0) (0.528722 0.759173 0) (0.481304 0.758886 0) (0.433953 0.75596 0) (0.386807 0.750414 0) (0.339996 0.742268 0) (0.293644 0.731544 0) (0.24787 0.718267 0) (0.202785 0.702456 0) (0.158496 0.684126 0) (0.11511 0.663282 0) (0.0727359 0.639919 0) (0.0314913 0.614017 0) (-0.0084905 0.585546 0) (-0.047053 0.55446 0) (-0.0840081 0.52071 0) (-0.119128 0.484243 0) (-0.152139 0.445024 0) (-0.182721 0.403048 0) (-0.210509 0.358369 0) (-0.235113 0.311133 0) (-0.256148 0.261616 0) (-0.273283 0.21025 0) (-0.286297 0.157646 0) (-0.295124 0.104565 0) (-0.299848 0.051883 0) (-0.301203 -9.87979e-18 0) (-0.299848 -0.051883 0) (-0.295124 -0.104565 0) (-0.286297 -0.157646 0) (-0.273283 -0.21025 0) (-0.256148 -0.261616 0) (-0.235113 -0.311133 0) (-0.210509 -0.358369 0) (-0.182721 -0.403048 0) (-0.152139 -0.445024 0) (-0.119128 -0.484243 0) (-0.0840081 -0.52071 0) (-0.047053 -0.55446 0) (-0.0084905 -0.585546 0) (0.0314913 -0.614017 0) (0.0727359 -0.639919 0) (0.11511 -0.663282 0) (0.158496 -0.684126 0) (0.202785 -0.702456 0) (0.24787 -0.718267 0) (0.293644 -0.731544 0) (0.339996 -0.742268 0) (0.386807 -0.750414 0) (0.433953 -0.75596 0) (0.481304 -0.758886 0) (0.528722 -0.759173 0) (0.576064 -0.756812 0) (0.623186 -0.751798 0) (0.669941 -0.744131 0) (0.71618 -0.73382 0) (0.761757 -0.720877 0) (0.806525 -0.705318 0) (0.850339 -0.68716 0) (0.893054 -0.66642 0) (0.934525 -0.643114 0) (0.974604 -0.617252 0) (1.01314 -0.588841 0) (1.04995 -0.55788 0) (1.08488 -0.524367 0) (1.11772 -0.488297 0) (1.14823 -0.449672 0) (1.17619 -0.408512 0) (1.20129 -0.364875 0) (1.22327 -0.318884 0) (1.24184 -0.270766 0) (1.25679 -0.220895 0) (1.26806 -0.169827 0) (1.27577 -0.118289 0) (1.28039 -0.0669868 0) (1.27802 -0.020632 0) (1.28846 0.0675486 0) (1.28389 0.119265 0) (1.27627 0.171286 0) (1.26514 0.222935 0) (1.25034 0.273483 0) (1.23192 0.322363 0) (1.21005 0.369181 0) (1.185 0.413691 0) (1.15703 0.45575 0) (1.12643 0.495285 0) (1.09343 0.532263 0) (1.05826 0.566669 0) (1.02112 0.598498 0) (0.982195 0.627744 0) (0.941644 0.654397 0) (0.899629 0.678443 0) (0.856302 0.699863 0) (0.811814 0.718634 0) (0.766316 0.734733 0) (0.719961 0.748134 0) (0.672901 0.758818 0) (0.625295 0.766767 0) (0.577298 0.771969 0) (0.52907 0.774421 0) (0.480765 0.774126 0) (0.432537 0.771095 0) (0.384532 0.765346 0) (0.336894 0.756903 0) (0.289756 0.745794 0) (0.243244 0.732045 0) (0.197478 0.715685 0) (0.152573 0.696733 0) (0.108639 0.675205 0) (0.0657884 0.651102 0) (0.0241417 0.624416 0) (-0.0161681 0.595124 0) (-0.0549859 0.563191 0) (-0.0921262 0.528575 0) (-0.127365 0.491236 0) (-0.160434 0.451146 0) (-0.191019 0.408312 0) (-0.218762 0.3628 0) (-0.243285 0.314769 0) (-0.264216 0.264505 0) (-0.281239 0.212453 0) (-0.294152 0.159225 0) (-0.302901 0.10558 0) (-0.30758 0.0523789 0) (-0.30892 -1.04219e-17 0) (-0.30758 -0.0523789 0) (-0.302901 -0.10558 0) (-0.294152 -0.159225 0) (-0.281239 -0.212453 0) (-0.264216 -0.264505 0) (-0.243285 -0.314769 0) (-0.218762 -0.3628 0) (-0.191019 -0.408312 0) (-0.160434 -0.451146 0) (-0.127365 -0.491236 0) (-0.0921262 -0.528575 0) (-0.0549859 -0.563191 0) (-0.0161681 -0.595124 0) (0.0241417 -0.624416 0) (0.0657884 -0.651102 0) (0.108639 -0.675205 0) (0.152573 -0.696733 0) (0.197478 -0.715685 0) (0.243244 -0.732045 0) (0.289756 -0.745794 0) (0.336894 -0.756903 0) (0.384532 -0.765346 0) (0.432537 -0.771095 0) (0.480765 -0.774126 0) (0.52907 -0.774421 0) (0.577298 -0.771969 0) (0.625295 -0.766767 0) (0.672901 -0.758818 0) (0.719961 -0.748134 0) (0.766316 -0.734733 0) (0.811814 -0.718634 0) (0.856302 -0.699863 0) (0.899629 -0.678443 0) (0.941644 -0.654397 0) (0.982195 -0.627744 0) (1.02112 -0.598498 0) (1.05826 -0.566669 0) (1.09343 -0.532263 0) (1.12643 -0.495285 0) (1.15703 -0.45575 0) (1.185 -0.413691 0) (1.21005 -0.369181 0) (1.23192 -0.322363 0) (1.25034 -0.273483 0) (1.26514 -0.222935 0) (1.27627 -0.171286 0) (1.28389 -0.119265 0) (1.28846 -0.0675486 0) (1.28608 -0.0208177 0) (1.29677 0.0681202 0) (1.29224 0.120254 0) (1.28472 0.172761 0) (1.27372 0.224988 0) (1.25907 0.276213 0) (1.24079 0.325856 0) (1.21903 0.373506 0) (1.19403 0.418896 0) (1.16606 0.461864 0) (1.13537 0.502322 0) (1.10221 0.540221 0) (1.0668 0.575536 0) (1.02933 0.60825 0) (0.99 0.638346 0) (0.948966 0.665806 0) (0.906393 0.690607 0) (0.862439 0.712721 0) (0.817259 0.732119 0) (0.771011 0.748769 0) (0.723854 0.76264 0) (0.675951 0.773705 0) (0.627468 0.781943 0) (0.578572 0.787337 0) (0.529431 0.789883 0) (0.480212 0.789581 0) (0.431079 0.786443 0) (0.38219 0.780489 0) (0.333699 0.771744 0) (0.285749 0.760241 0) (0.238476 0.746012 0) (0.192008 0.729091 0) (0.146465 0.709507 0) (0.101966 0.687281 0) (0.0586247 0.662425 0) (0.0165644 0.63494 0) (-0.0240817 0.604811 0) (-0.0631596 0.572015 0) (-0.100487 0.536519 0) (-0.135844 0.498293 0) (-0.168967 0.45732 0) (-0.19955 0.413618 0) (-0.227244 0.367265 0) (-0.251681 0.318431 0) (-0.272503 0.267416 0) (-0.289412 0.214674 0) (-0.302222 0.160819 0) (-0.310895 0.106606 0) (-0.315528 0.0528806 0) (-0.316853 -1.06387e-17 0) (-0.315528 -0.0528806 0) (-0.310895 -0.106606 0) (-0.302222 -0.160819 0) (-0.289412 -0.214674 0) (-0.272503 -0.267416 0) (-0.251681 -0.318431 0) (-0.227244 -0.367265 0) (-0.19955 -0.413618 0) (-0.168967 -0.45732 0) (-0.135844 -0.498293 0) (-0.100487 -0.536519 0) (-0.0631596 -0.572015 0) (-0.0240817 -0.604811 0) (0.0165644 -0.63494 0) (0.0586247 -0.662425 0) (0.101966 -0.687281 0) (0.146465 -0.709507 0) (0.192008 -0.729091 0) (0.238476 -0.746012 0) (0.285749 -0.760241 0) (0.333699 -0.771744 0) (0.38219 -0.780489 0) (0.431079 -0.786443 0) (0.480212 -0.789581 0) (0.529431 -0.789883 0) (0.578572 -0.787337 0) (0.627468 -0.781943 0) (0.675951 -0.773705 0) (0.723854 -0.76264 0) (0.771011 -0.748769 0) (0.817259 -0.732119 0) (0.862439 -0.712721 0) (0.906393 -0.690607 0) (0.948966 -0.665806 0) (0.99 -0.638346 0) (1.02933 -0.60825 0) (1.0668 -0.575536 0) (1.10221 -0.540221 0) (1.13537 -0.502322 0) (1.16606 -0.461864 0) (1.19403 -0.418896 0) (1.21903 -0.373506 0) (1.24079 -0.325856 0) (1.25907 -0.276213 0) (1.27372 -0.224988 0) (1.28472 -0.172761 0) (1.29224 -0.120254 0) (1.29677 -0.0681202 0) (1.29438 -0.0210069 0) (1.30533 0.0687019 0) (1.30084 0.121257 0) (1.2934 0.174251 0) (1.28253 0.227057 0) (1.26804 0.278958 0) (1.2499 0.329366 0) (1.22825 0.377852 0) (1.20331 0.424128 0) (1.17532 0.468016 0) (1.14455 0.509409 0) (1.11122 0.548244 0) (1.07556 0.584483 0) (1.03777 0.618097 0) (0.998021 0.649059 0) (0.956492 0.677343 0) (0.913349 0.702914 0) (0.868751 0.725738 0) (0.82286 0.745775 0) (0.775841 0.762988 0) (0.727861 0.777339 0) (0.679091 0.788794 0) (0.629706 0.797327 0) (0.579884 0.802919 0) (0.529804 0.80556 0) (0.479644 0.805253 0) (0.42958 0.802007 0) (0.37978 0.795843 0) (0.33041 0.786792 0) (0.281623 0.774887 0) (0.233565 0.760169 0) (0.186372 0.742677 0) (0.140173 0.722448 0) (0.0950894 0.699511 0) (0.0512427 0.673888 0) (0.00875663 0.645588 0) (-0.0322345 0.614607 0) (-0.0715781 0.580933 0) (-0.109094 0.544542 0) (-0.144569 0.505416 0) (-0.177744 0.463547 0) (-0.20832 0.418967 0) (-0.23596 0.371763 0) (-0.260306 0.322121 0) (-0.281016 0.27035 0) (-0.297808 0.216913 0) (-0.310515 0.162428 0) (-0.319111 0.107643 0) (-0.323699 0.053388 0) (-0.32501 -1.05303e-17 0) (-0.323699 -0.053388 0) (-0.319111 -0.107643 0) (-0.310515 -0.162428 0) (-0.297808 -0.216913 0) (-0.281016 -0.27035 0) (-0.260306 -0.322121 0) (-0.23596 -0.371763 0) (-0.20832 -0.418967 0) (-0.177744 -0.463547 0) (-0.144569 -0.505416 0) (-0.109094 -0.544542 0) (-0.0715781 -0.580933 0) (-0.0322345 -0.614607 0) (0.00875663 -0.645588 0) (0.0512427 -0.673888 0) (0.0950894 -0.699511 0) (0.140173 -0.722448 0) (0.186372 -0.742677 0) (0.233565 -0.760169 0) (0.281623 -0.774887 0) (0.33041 -0.786792 0) (0.37978 -0.795843 0) (0.42958 -0.802007 0) (0.479644 -0.805253 0) (0.529804 -0.80556 0) (0.579884 -0.802919 0) (0.629706 -0.797327 0) (0.679091 -0.788794 0) (0.727861 -0.777339 0) (0.775841 -0.762988 0) (0.82286 -0.745775 0) (0.868751 -0.725738 0) (0.913349 -0.702914 0) (0.956492 -0.677343 0) (0.998021 -0.649059 0) (1.03777 -0.618097 0) (1.07556 -0.584483 0) (1.11122 -0.548244 0) (1.14455 -0.509409 0) (1.17532 -0.468016 0) (1.20331 -0.424128 0) (1.22825 -0.377852 0) (1.2499 -0.329366 0) (1.26804 -0.278958 0) (1.28253 -0.227057 0) (1.2934 -0.174251 0) (1.30084 -0.121257 0) (1.30533 -0.0687019 0) (1.30293 -0.0211996 0) (1.31414 0.069294 0) (1.30969 0.122276 0) (1.30234 0.175758 0) (1.29159 0.229142 0) (1.27724 0.281718 0) (1.25924 0.332892 0) (1.2377 0.382218 0) (1.21282 0.429389 0) (1.18483 0.474206 0) (1.15397 0.516546 0) (1.12048 0.556331 0) (1.08456 0.593509 0) (1.04643 0.62804 0) (1.00626 0.659886 0) (0.964226 0.689008 0) (0.920497 0.715366 0) (0.875239 0.738914 0) (0.82862 0.759605 0) (0.780809 0.777392 0) (0.731983 0.792233 0) (0.682322 0.804087 0) (0.632011 0.812922 0) (0.581237 0.818716 0) (0.530191 0.821457 0) (0.479063 0.821144 0) (0.42804 0.817788 0) (0.377303 0.811412 0) (0.327027 0.802048 0) (0.277377 0.789735 0) (0.22851 0.774519 0) (0.18057 0.756445 0) (0.133693 0.735558 0) (0.0880082 0.711896 0) (0.0436401 0.685491 0) (0.000715734 0.656361 0) (-0.0406299 0.624513 0) (-0.0802452 0.589945 0) (-0.117954 0.552645 0) (-0.153545 0.512604 0) (-0.18677 0.469827 0) (-0.217335 0.424357 0) (-0.244916 0.376295 0) (-0.269167 0.325838 0) (-0.289761 0.273306 0) (-0.306435 0.219171 0) (-0.319038 0.164053 0) (-0.327556 0.108691 0) (-0.3321 0.0539013 0) (-0.333396 -1.00966e-17 0) (-0.3321 -0.0539013 0) (-0.327556 -0.108691 0) (-0.319038 -0.164053 0) (-0.306435 -0.219171 0) (-0.289761 -0.273306 0) (-0.269167 -0.325838 0) (-0.244916 -0.376295 0) (-0.217335 -0.424357 0) (-0.18677 -0.469827 0) (-0.153545 -0.512604 0) (-0.117954 -0.552645 0) (-0.0802452 -0.589945 0) (-0.0406299 -0.624513 0) (0.000715734 -0.656361 0) (0.0436401 -0.685491 0) (0.0880082 -0.711896 0) (0.133693 -0.735558 0) (0.18057 -0.756445 0) (0.22851 -0.774519 0) (0.277377 -0.789735 0) (0.327027 -0.802048 0) (0.377303 -0.811412 0) (0.42804 -0.817788 0) (0.479063 -0.821144 0) (0.530191 -0.821457 0) (0.581237 -0.818716 0) (0.632011 -0.812922 0) (0.682322 -0.804087 0) (0.731983 -0.792233 0) (0.780809 -0.777392 0) (0.82862 -0.759605 0) (0.875239 -0.738914 0) (0.920497 -0.715366 0) (0.964226 -0.689008 0) (1.00626 -0.659886 0) (1.04643 -0.62804 0) (1.08456 -0.593509 0) (1.12048 -0.556331 0) (1.15397 -0.516546 0) (1.18483 -0.474206 0) (1.21282 -0.429389 0) (1.2377 -0.382218 0) (1.25924 -0.332892 0) (1.27724 -0.281718 0) (1.29159 -0.229142 0) (1.30234 -0.175758 0) (1.30969 -0.122276 0) (1.31414 -0.069294 0) (1.31173 -0.0213957 0) (1.32322 0.0698966 0) (1.3188 0.12331 0) (1.31153 0.177283 0) (1.3009 0.231244 0) (1.28669 0.284496 0) (1.26883 0.336438 0) (1.2474 0.386607 0) (1.22258 0.434679 0) (1.19458 0.480435 0) (1.16363 0.523735 0) (1.12997 0.564484 0) (1.0938 0.602617 0) (1.05533 0.638081 0) (1.01472 0.670826 0) (0.97217 0.700805 0) (0.927841 0.727964 0) (0.881906 0.752251 0) (0.834539 0.773609 0) (0.785916 0.791984 0) (0.736221 0.807325 0) (0.685645 0.819586 0) (0.634381 0.828731 0) (0.582629 0.834732 0) (0.530591 0.837574 0) (0.478468 0.837256 0) (0.426458 0.833789 0) (0.374757 0.827197 0) (0.323549 0.817515 0) (0.273012 0.804787 0) (0.223311 0.789063 0) (0.174601 0.770396 0) (0.127026 0.748838 0) (0.0807204 0.724438 0) (0.0358149 0.697236 0) (-0.00756092 0.66726 0) (-0.049271 0.63453 0) (-0.0891649 0.599051 0) (-0.127069 0.560826 0) (-0.162778 0.519857 0) (-0.19605 0.47616 0) (-0.226602 0.42979 0) (-0.254119 0.380862 0) (-0.27827 0.329582 0) (-0.298746 0.276285 0) (-0.3153 0.221448 0) (-0.327798 0.165692 0) (-0.336239 0.10975 0) (-0.340737 0.0544204 0) (-0.34202 -9.98821e-18 0) (-0.340737 -0.0544204 0) (-0.336239 -0.10975 0) (-0.327798 -0.165692 0) (-0.3153 -0.221448 0) (-0.298746 -0.276285 0) (-0.27827 -0.329582 0) (-0.254119 -0.380862 0) (-0.226602 -0.42979 0) (-0.19605 -0.47616 0) (-0.162778 -0.519857 0) (-0.127069 -0.560826 0) (-0.0891649 -0.599051 0) (-0.049271 -0.63453 0) (-0.00756092 -0.66726 0) (0.0358149 -0.697236 0) (0.0807204 -0.724438 0) (0.127026 -0.748838 0) (0.174601 -0.770396 0) (0.223311 -0.789063 0) (0.273012 -0.804787 0) (0.323549 -0.817515 0) (0.374757 -0.827197 0) (0.426458 -0.833789 0) (0.478468 -0.837256 0) (0.530591 -0.837574 0) (0.582629 -0.834732 0) (0.634381 -0.828731 0) (0.685645 -0.819586 0) (0.736221 -0.807325 0) (0.785916 -0.791984 0) (0.834539 -0.773609 0) (0.881906 -0.752251 0) (0.927841 -0.727964 0) (0.97217 -0.700805 0) (1.01472 -0.670826 0) (1.05533 -0.638081 0) (1.0938 -0.602617 0) (1.12997 -0.564484 0) (1.16363 -0.523735 0) (1.19458 -0.480435 0) (1.22258 -0.434679 0) (1.2474 -0.386607 0) (1.26883 -0.336438 0) (1.28669 -0.284496 0) (1.3009 -0.231244 0) (1.31153 -0.177283 0) (1.3188 -0.12331 0) (1.32322 -0.0698966 0) (1.3208 -0.0215954 0) (1.33256 0.0705098 0) (1.32818 0.124361 0) (1.32098 0.178826 0) (1.31046 0.233366 0) (1.29639 0.287293 0) (1.27867 0.340003 0) (1.25735 0.39102 0) (1.23259 0.439999 0) (1.20458 0.486704 0) (1.17355 0.530976 0) (1.13971 0.572704 0) (1.10328 0.611807 0) (1.06445 0.64822 0) (1.02341 0.681882 0) (0.980326 0.712733 0) (0.935382 0.740711 0) (0.888754 0.765751 0) (0.840618 0.78779 0) (0.791162 0.806765 0) (0.740576 0.822618 0) (0.68906 0.835295 0) (0.636819 0.844756 0) (0.584063 0.850968 0) (0.531005 0.853915 0) (0.477859 0.853593 0) (0.424836 0.850013 0) (0.372143 0.843201 0) (0.319976 0.833195 0) (0.268526 0.820044 0) (0.217967 0.803802 0) (0.168464 0.784531 0) (0.120169 0.762291 0) (0.0732243 0.737138 0) (0.027765 0.709123 0) (-0.0160759 0.678287 0) (-0.058161 0.644657 0) (-0.0983408 0.608253 0) (-0.136445 0.569088 0) (-0.172273 0.527176 0) (-0.205591 0.482547 0) (-0.236126 0.435266 0) (-0.263575 0.385462 0) (-0.287623 0.333355 0) (-0.307977 0.279288 0) (-0.324409 0.223745 0) (-0.336801 0.167348 0) (-0.345166 0.11082 0) (-0.349619 0.0549455 0) (-0.350888 -9.55453e-18 0) (-0.349619 -0.0549455 0) (-0.345166 -0.11082 0) (-0.336801 -0.167348 0) (-0.324409 -0.223745 0) (-0.307977 -0.279288 0) (-0.287623 -0.333355 0) (-0.263575 -0.385462 0) (-0.236126 -0.435266 0) (-0.205591 -0.482547 0) (-0.172273 -0.527176 0) (-0.136445 -0.569088 0) (-0.0983408 -0.608253 0) (-0.058161 -0.644657 0) (-0.0160759 -0.678287 0) (0.027765 -0.709123 0) (0.0732243 -0.737138 0) (0.120169 -0.762291 0) (0.168464 -0.784531 0) (0.217967 -0.803802 0) (0.268526 -0.820044 0) (0.319976 -0.833195 0) (0.372143 -0.843201 0) (0.424836 -0.850013 0) (0.477859 -0.853593 0) (0.531005 -0.853915 0) (0.584063 -0.850968 0) (0.636819 -0.844756 0) (0.68906 -0.835295 0) (0.740576 -0.822618 0) (0.791162 -0.806765 0) (0.840618 -0.78779 0) (0.888754 -0.765751 0) (0.935382 -0.740711 0) (0.980326 -0.712733 0) (1.02341 -0.681882 0) (1.06445 -0.64822 0) (1.10328 -0.611807 0) (1.13971 -0.572704 0) (1.17355 -0.530976 0) (1.20458 -0.486704 0) (1.23259 -0.439999 0) (1.25735 -0.39102 0) (1.27867 -0.340003 0) (1.29639 -0.287293 0) (1.31046 -0.233366 0) (1.32098 -0.178826 0) (1.32818 -0.124361 0) (1.33256 -0.0705098 0) (1.33013 -0.0217987 0) (1.34218 0.0711341 0) (1.33784 0.125428 0) (1.3307 0.18039 0) (1.32029 0.235508 0) (1.30635 0.29011 0) (1.28877 0.34359 0) (1.26755 0.395458 0) (1.24285 0.445352 0) (1.21483 0.493015 0) (1.18371 0.538271 0) (1.1497 0.580991 0) (1.11301 0.621081 0) (1.07382 0.65846 0) (1.03232 0.693056 0) (0.988696 0.724796 0) (0.943123 0.753607 0) (0.895783 0.779417 0) (0.846861 0.802151 0) (0.796549 0.821739 0) (0.745049 0.838113 0) (0.692569 0.851216 0) (0.639324 0.861 0) (0.585537 0.867428 0) (0.531432 0.870482 0) (0.477236 0.870157 0) (0.423173 0.866463 0) (0.36946 0.859427 0) (0.316309 0.849091 0) (0.263919 0.835508 0) (0.212477 0.81874 0) (0.162158 0.798853 0) (0.113122 0.775917 0) (0.0655184 0.749998 0) (0.0194884 0.721155 0) (-0.0248317 0.689441 0) (-0.067303 0.654896 0) (-0.107777 0.617551 0) (-0.146085 0.57743 0) (-0.182035 0.534561 0) (-0.215398 0.488987 0) (-0.245914 0.440785 0) (-0.273292 0.390097 0) (-0.297233 0.337156 0) (-0.317462 0.282313 0) (-0.33377 0.226061 0) (-0.346057 0.169019 0) (-0.354344 0.111901 0) (-0.358753 0.0554765 0) (-0.360007 -9.22927e-18 0) (-0.358753 -0.0554765 0) (-0.354344 -0.111901 0) (-0.346057 -0.169019 0) (-0.33377 -0.226061 0) (-0.317462 -0.282313 0) (-0.297233 -0.337156 0) (-0.273292 -0.390097 0) (-0.245914 -0.440785 0) (-0.215398 -0.488987 0) (-0.182035 -0.534561 0) (-0.146085 -0.57743 0) (-0.107777 -0.617551 0) (-0.067303 -0.654896 0) (-0.0248317 -0.689441 0) (0.0194884 -0.721155 0) (0.0655184 -0.749998 0) (0.113122 -0.775917 0) (0.162158 -0.798853 0) (0.212477 -0.81874 0) (0.263919 -0.835508 0) (0.316309 -0.849091 0) (0.36946 -0.859427 0) (0.423173 -0.866463 0) (0.477236 -0.870157 0) (0.531432 -0.870482 0) (0.585537 -0.867428 0) (0.639324 -0.861 0) (0.692569 -0.851216 0) (0.745049 -0.838113 0) (0.796549 -0.821739 0) (0.846861 -0.802151 0) (0.895783 -0.779417 0) (0.943123 -0.753607 0) (0.988696 -0.724796 0) (1.03232 -0.693056 0) (1.07382 -0.65846 0) (1.11301 -0.621081 0) (1.1497 -0.580991 0) (1.18371 -0.538271 0) (1.21483 -0.493015 0) (1.24285 -0.445352 0) (1.26755 -0.395458 0) (1.28877 -0.34359 0) (1.30635 -0.29011 0) (1.32029 -0.235508 0) (1.3307 -0.18039 0) (1.33784 -0.125428 0) (1.34218 -0.0711341 0) (1.33975 -0.0220056 0) (1.35209 0.0717695 0) (1.34778 0.126513 0) (1.34071 0.181975 0) (1.3304 0.237673 0) (1.31659 0.29295 0) (1.29913 0.3472 0) (1.27802 0.399923 0) (1.25337 0.450738 0) (1.22534 0.499369 0) (1.19414 0.545621 0) (1.15995 0.589348 0) (1.12298 0.63044 0) (1.08342 0.668802 0) (1.04146 0.704348 0) (0.997283 0.736994 0) (0.951065 0.766656 0) (0.902996 0.793251 0) (0.853267 0.816694 0) (0.802078 0.836907 0) (0.74964 0.853814 0) (0.696171 0.867352 0) (0.641897 0.877465 0) (0.587052 0.884116 0) (0.531874 0.887279 0) (0.4766 0.886951 0) (0.421468 0.88314 0) (0.366709 0.875877 0) (0.312545 0.865206 0) (0.25919 0.851184 0) (0.20684 0.833878 0) (0.155681 0.813364 0) (0.105883 0.789719 0) (0.0576011 0.763018 0) (0.010983 0.733333 0) (-0.0338309 0.700726 0) (-0.0766999 0.665249 0) (-0.117476 0.626946 0) (-0.155995 0.585854 0) (-0.192068 0.542014 0) (-0.225477 0.495481 0) (-0.255971 0.446348 0) (-0.283275 0.394767 0) (-0.307106 0.340985 0) (-0.327208 0.285363 0) (-0.343391 0.228398 0) (-0.355572 0.170707 0) (-0.363782 0.112995 0) (-0.368146 0.0560136 0) (-0.369386 -8.90401e-18 0) (-0.368146 -0.0560136 0) (-0.363782 -0.112995 0) (-0.355572 -0.170707 0) (-0.343391 -0.228398 0) (-0.327208 -0.285363 0) (-0.307106 -0.340985 0) (-0.283275 -0.394767 0) (-0.255971 -0.446348 0) (-0.225477 -0.495481 0) (-0.192068 -0.542014 0) (-0.155995 -0.585854 0) (-0.117476 -0.626946 0) (-0.0766999 -0.665249 0) (-0.0338309 -0.700726 0) (0.010983 -0.733333 0) (0.0576011 -0.763018 0) (0.105883 -0.789719 0) (0.155681 -0.813364 0) (0.20684 -0.833878 0) (0.25919 -0.851184 0) (0.312545 -0.865206 0) (0.366709 -0.875877 0) (0.421468 -0.88314 0) (0.4766 -0.886951 0) (0.531874 -0.887279 0) (0.587052 -0.884116 0) (0.641897 -0.877465 0) (0.696171 -0.867352 0) (0.74964 -0.853814 0) (0.802078 -0.836907 0) (0.853267 -0.816694 0) (0.902996 -0.793251 0) (0.951065 -0.766656 0) (0.997283 -0.736994 0) (1.04146 -0.704348 0) (1.08342 -0.668802 0) (1.12298 -0.63044 0) (1.15995 -0.589348 0) (1.19414 -0.545621 0) (1.22534 -0.499369 0) (1.25337 -0.450738 0) (1.27802 -0.399923 0) (1.29913 -0.3472 0) (1.31659 -0.29295 0) (1.3304 -0.237673 0) (1.34071 -0.181975 0) (1.34778 -0.126513 0) (1.35209 -0.0717695 0) (1.34965 -0.0222162 0) (1.3623 0.0724165 0) (1.35801 0.127617 0) (1.351 0.183582 0) (1.34079 0.239861 0) (1.3271 0.295814 0) (1.30976 0.350836 0) (1.28876 0.404417 0) (1.26416 0.456159 0) (1.23612 0.505768 0) (1.20482 0.553027 0) (1.17045 0.597776 0) (1.1332 0.639885 0) (1.09327 0.679247 0) (1.05084 0.71576 0) (1.00609 0.74933 0) (0.959211 0.77986 0) (0.910394 0.807255 0) (0.859838 0.831422 0) (0.807751 0.852273 0) (0.754352 0.869724 0) (0.699869 0.883705 0) (0.64454 0.894156 0) (0.58861 0.901033 0) (0.532329 0.904309 0) (0.47595 0.903978 0) (0.419722 0.90005 0) (0.363888 0.892555 0) (0.308686 0.881542 0) (0.254339 0.867072 0) (0.201056 0.849219 0) (0.149034 0.828066 0) (0.0984504 0.803698 0) (0.0494705 0.776202 0) (0.00224684 0.745658 0) (-0.0430759 0.712141 0) (-0.0863548 0.675715 0) (-0.127442 0.636438 0) (-0.166177 0.59436 0) (-0.202377 0.549534 0) (-0.235832 0.50203 0) (-0.266304 0.451954 0) (-0.293532 0.399473 0) (-0.31725 0.344843 0) (-0.337223 0.288437 0) (-0.35328 0.230755 0) (-0.365354 0.172411 0) (-0.373487 0.114099 0) (-0.377807 0.0565567 0) (-0.379033 -8.47033e-18 0) (-0.377807 -0.0565567 0) (-0.373487 -0.114099 0) (-0.365354 -0.172411 0) (-0.35328 -0.230755 0) (-0.337223 -0.288437 0) (-0.31725 -0.344843 0) (-0.293532 -0.399473 0) (-0.266304 -0.451954 0) (-0.235832 -0.50203 0) (-0.202377 -0.549534 0) (-0.166177 -0.59436 0) (-0.127442 -0.636438 0) (-0.0863548 -0.675715 0) (-0.0430759 -0.712141 0) (0.00224684 -0.745658 0) (0.0494705 -0.776202 0) (0.0984504 -0.803698 0) (0.149034 -0.828066 0) (0.201056 -0.849219 0) (0.254339 -0.867072 0) (0.308686 -0.881542 0) (0.363888 -0.892555 0) (0.419722 -0.90005 0) (0.47595 -0.903978 0) (0.532329 -0.904309 0) (0.58861 -0.901033 0) (0.64454 -0.894156 0) (0.699869 -0.883705 0) (0.754352 -0.869724 0) (0.807751 -0.852273 0) (0.859838 -0.831422 0) (0.910394 -0.807255 0) (0.959211 -0.77986 0) (1.00609 -0.74933 0) (1.05084 -0.71576 0) (1.09327 -0.679247 0) (1.1332 -0.639885 0) (1.17045 -0.597776 0) (1.20482 -0.553027 0) (1.23612 -0.505768 0) (1.26416 -0.456159 0) (1.28876 -0.404417 0) (1.30976 -0.350836 0) (1.3271 -0.295814 0) (1.34079 -0.239861 0) (1.351 -0.183582 0) (1.35801 -0.127617 0) (1.3623 -0.0724165 0) (1.35984 -0.0224306 0) (1.37281 0.0730752 0) (1.36855 0.128739 0) (1.36159 0.185213 0) (1.35147 0.242075 0) (1.33789 0.298705 0) (1.32068 0.3545 0) (1.29977 0.408941 0) (1.27522 0.461617 0) (1.24717 0.512212 0) (1.21577 0.560492 0) (1.18121 0.606276 0) (1.14368 0.649419 0) (1.10337 0.689797 0) (1.06045 0.727296 0) (1.01512 0.761806 0) (0.967562 0.79322 0) (0.91798 0.821431 0) (0.866577 0.846337 0) (0.813569 0.867838 0) (0.759185 0.885846 0) (0.703662 0.90028 0) (0.647251 0.911075 0) (0.590209 0.918183 0) (0.5328 0.921575 0) (0.475287 0.921241 0) (0.417934 0.917193 0) (0.360998 0.909464 0) (0.30473 0.898102 0) (0.249364 0.883176 0) (0.195124 0.864766 0) (0.142214 0.842962 0) (0.0908235 0.817858 0) (0.0411251 0.78955 0) (-0.00672217 0.758132 0) (-0.0525691 0.723688 0) (-0.0962707 0.686298 0) (-0.137679 0.646029 0) (-0.176637 0.602948 0) (-0.212968 0.557122 0) (-0.24647 0.508634 0) (-0.276919 0.457605 0) (-0.304069 0.404215 0) (-0.327673 0.348731 0) (-0.347516 0.291536 0) (-0.363445 0.233132 0) (-0.375412 0.174131 0) (-0.383468 0.115216 0) (-0.387744 0.0571059 0) (-0.388956 -8.68717e-18 0) (-0.387744 -0.0571059 0) (-0.383468 -0.115216 0) (-0.375412 -0.174131 0) (-0.363445 -0.233132 0) (-0.347516 -0.291536 0) (-0.327673 -0.348731 0) (-0.304069 -0.404215 0) (-0.276919 -0.457605 0) (-0.24647 -0.508634 0) (-0.212968 -0.557122 0) (-0.176637 -0.602948 0) (-0.137679 -0.646029 0) (-0.0962707 -0.686298 0) (-0.0525691 -0.723688 0) (-0.00672217 -0.758132 0) (0.0411251 -0.78955 0) (0.0908235 -0.817858 0) (0.142214 -0.842962 0) (0.195124 -0.864766 0) (0.249364 -0.883176 0) (0.30473 -0.898102 0) (0.360998 -0.909464 0) (0.417934 -0.917193 0) (0.475287 -0.921241 0) (0.5328 -0.921575 0) (0.590209 -0.918183 0) (0.647251 -0.911075 0) (0.703662 -0.90028 0) (0.759185 -0.885846 0) (0.813569 -0.867838 0) (0.866577 -0.846337 0) (0.91798 -0.821431 0) (0.967562 -0.79322 0) (1.01512 -0.761806 0) (1.06045 -0.727296 0) (1.10337 -0.689797 0) (1.14368 -0.649419 0) (1.18121 -0.606276 0) (1.21577 -0.560492 0) (1.24717 -0.512212 0) (1.27522 -0.461617 0) (1.29977 -0.408941 0) (1.32068 -0.3545 0) (1.33789 -0.298705 0) (1.35147 -0.242075 0) (1.36159 -0.185213 0) (1.36855 -0.128739 0) (1.37281 -0.0730752 0) (1.37034 -0.0226488 0) (1.38363 0.073746 0) (1.37939 0.12988 0) (1.37249 0.186868 0) (1.36245 0.244317 0) (1.34898 0.301624 0) (1.33188 0.358193 0) (1.31106 0.4135 0) (1.28656 0.467114 0) (1.25849 0.518705 0) (1.22699 0.568017 0) (1.19224 0.61485 0) (1.15442 0.659043 0) (1.11371 0.700454 0) (1.0703 0.738956 0) (1.02437 0.774424 0) (0.976121 0.806739 0) (0.925755 0.835783 0) (0.873485 0.861441 0) (0.819533 0.883608 0) (0.764139 0.902182 0) (0.707552 0.917079 0) (0.650033 0.928226 0) (0.591852 0.93557 0) (0.533284 0.93908 0) (0.474609 0.938745 0) (0.416104 0.934575 0) (0.358039 0.926606 0) (0.300676 0.91489 0) (0.244266 0.899499 0) (0.189042 0.880521 0) (0.135221 0.858053 0) (0.0830006 0.832199 0) (0.0325631 0.803066 0) (-0.0159261 0.770756 0) (-0.0623131 0.73537 0) (-0.10645 0.696997 0) (-0.148191 0.655721 0) (-0.187379 0.611621 0) (-0.223844 0.56478 0) (-0.257397 0.515295 0) (-0.287823 0.463302 0) (-0.314893 0.408993 0) (-0.338382 0.352649 0) (-0.358093 0.294659 0) (-0.373895 0.23553 0) (-0.385754 0.175868 0) (-0.393734 0.116344 0) (-0.397965 0.0576612 0) (-0.399163 -8.57875e-18 0) (-0.397965 -0.0576612 0) (-0.393734 -0.116344 0) (-0.385754 -0.175868 0) (-0.373895 -0.23553 0) (-0.358093 -0.294659 0) (-0.338382 -0.352649 0) (-0.314893 -0.408993 0) (-0.287823 -0.463302 0) (-0.257397 -0.515295 0) (-0.223844 -0.56478 0) (-0.187379 -0.611621 0) (-0.148191 -0.655721 0) (-0.10645 -0.696997 0) (-0.0623131 -0.73537 0) (-0.0159261 -0.770756 0) (0.0325631 -0.803066 0) (0.0830006 -0.832199 0) (0.135221 -0.858053 0) (0.189042 -0.880521 0) (0.244266 -0.899499 0) (0.300676 -0.91489 0) (0.358039 -0.926606 0) (0.416104 -0.934575 0) (0.474609 -0.938745 0) (0.533284 -0.93908 0) (0.591852 -0.93557 0) (0.650033 -0.928226 0) (0.707552 -0.917079 0) (0.764139 -0.902182 0) (0.819533 -0.883608 0) (0.873485 -0.861441 0) (0.925755 -0.835783 0) (0.976121 -0.806739 0) (1.02437 -0.774424 0) (1.0703 -0.738956 0) (1.11371 -0.700454 0) (1.15442 -0.659043 0) (1.19224 -0.61485 0) (1.22699 -0.568017 0) (1.25849 -0.518705 0) (1.28656 -0.467114 0) (1.31106 -0.4135 0) (1.33188 -0.358193 0) (1.34898 -0.301624 0) (1.36245 -0.244317 0) (1.37249 -0.186868 0) (1.37939 -0.12988 0) (1.38363 -0.073746 0) (1.38115 -0.022871 0) (1.39477 0.0744293 0) (1.39056 0.131042 0) (1.3837 0.188549 0) (1.37374 0.246587 0) (1.36037 0.304573 0) (1.34337 0.361919 0) (1.32264 0.418093 0) (1.29819 0.472654 0) (1.27009 0.525249 0) (1.23849 0.575604 0) (1.20354 0.623501 0) (1.16542 0.668759 0) (1.12431 0.711221 0) (1.08038 0.750743 0) (1.03385 0.787186 0) (0.98489 0.82042 0) (0.933722 0.850312 0) (0.880563 0.876739 0) (0.825645 0.899583 0) (0.769217 0.918737 0) (0.71154 0.934105 0) (0.652885 0.945611 0) (0.593537 0.953198 0) (0.533784 0.956829 0) (0.473919 0.956492 0) (0.414232 0.952199 0) (0.355008 0.943985 0) (0.296525 0.931908 0) (0.239043 0.916045 0) (0.182809 0.896488 0) (0.128052 0.873344 0) (0.0749801 0.846726 0) (0.0237828 0.81675 0) (-0.025367 0.783534 0) (-0.0723103 0.747187 0) (-0.116897 0.707814 0) (-0.15898 0.665514 0) (-0.198406 0.620379 0) (-0.235012 0.572507 0) (-0.268617 0.522013 0) (-0.299021 0.469044 0) (-0.326013 0.413809 0) (-0.349385 0.356598 0) (-0.368963 0.297809 0) (-0.384637 0.23795 0) (-0.39639 0.177622 0) (-0.404292 0.117484 0) (-0.408479 0.0582228 0) (-0.409662 -8.57875e-18 0) (-0.408479 -0.0582228 0) (-0.404292 -0.117484 0) (-0.39639 -0.177622 0) (-0.384637 -0.23795 0) (-0.368963 -0.297809 0) (-0.349385 -0.356598 0) (-0.326013 -0.413809 0) (-0.299021 -0.469044 0) (-0.268617 -0.522013 0) (-0.235012 -0.572507 0) (-0.198406 -0.620379 0) (-0.15898 -0.665514 0) (-0.116897 -0.707814 0) (-0.0723103 -0.747187 0) (-0.025367 -0.783534 0) (0.0237828 -0.81675 0) (0.0749801 -0.846726 0) (0.128052 -0.873344 0) (0.182809 -0.896488 0) (0.239043 -0.916045 0) (0.296525 -0.931908 0) (0.355008 -0.943985 0) (0.414232 -0.952199 0) (0.473919 -0.956492 0) (0.533784 -0.956829 0) (0.593537 -0.953198 0) (0.652885 -0.945611 0) (0.71154 -0.934105 0) (0.769217 -0.918737 0) (0.825645 -0.899583 0) (0.880563 -0.876739 0) (0.933722 -0.850312 0) (0.98489 -0.82042 0) (1.03385 -0.787186 0) (1.08038 -0.750743 0) (1.12431 -0.711221 0) (1.16542 -0.668759 0) (1.20354 -0.623501 0) (1.23849 -0.575604 0) (1.27009 -0.525249 0) (1.29819 -0.472654 0) (1.32264 -0.418093 0) (1.34337 -0.361919 0) (1.36037 -0.304573 0) (1.37374 -0.246587 0) (1.3837 -0.188549 0) (1.39056 -0.131042 0) (1.39477 -0.0744293 0) (1.39229 -0.0230971 0) (1.4063 0.0751315 0) (1.40211 0.13224 0) (1.3953 0.190281 0) (1.38541 0.248923 0) (1.37213 0.307605 0) (1.35524 0.365745 0) (1.3346 0.422807 0) (1.31018 0.478336 0) (1.28206 0.531961 0) (1.25035 0.583386 0) (1.21519 0.632374 0) (1.17676 0.678726 0) (1.13523 0.722267 0) (1.09078 0.762837 0) (1.04361 0.800283 0) (0.993926 0.83446 0) (0.941931 0.865225 0) (0.887856 0.892442 0) (0.831943 0.915983 0) (0.77445 0.935732 0) (0.715649 0.951585 0) (0.655825 0.963461 0) (0.595274 0.971296 0) (0.5343 0.975052 0) (0.473208 0.974713 0) (0.412304 0.970294 0) (0.351888 0.961829 0) (0.292248 0.949381 0) (0.233662 0.933031 0) (0.176388 0.91288 0) (0.120666 0.889041 0) (0.0667141 0.861637 0) (0.0147324 0.830797 0) (-0.0350997 0.796648 0) (-0.0826182 0.759314 0) (-0.12767 0.718915 0) (-0.170108 0.675561 0) (-0.209783 0.629364 0) (-0.246536 0.580435 0) (-0.280198 0.528904 0) (-0.310583 0.474935 0) (-0.337496 0.418749 0) (-0.360751 0.360649 0) (-0.380196 0.301041 0) (-0.395742 0.240434 0) (-0.407387 0.179424 0) (-0.415212 0.118655 0) (-0.419355 0.0587995 0) (-0.420524 -8.68717e-18 0) (-0.419355 -0.0587995 0) (-0.415212 -0.118655 0) (-0.407387 -0.179424 0) (-0.395742 -0.240434 0) (-0.380196 -0.301041 0) (-0.360751 -0.360649 0) (-0.337496 -0.418749 0) (-0.310583 -0.474935 0) (-0.280198 -0.528904 0) (-0.246536 -0.580435 0) (-0.209783 -0.629364 0) (-0.170108 -0.675561 0) (-0.12767 -0.718915 0) (-0.0826182 -0.759314 0) (-0.0350997 -0.796648 0) (0.0147324 -0.830797 0) (0.0667141 -0.861637 0) (0.120666 -0.889041 0) (0.176388 -0.91288 0) (0.233662 -0.933031 0) (0.292248 -0.949381 0) (0.351888 -0.961829 0) (0.412304 -0.970294 0) (0.473208 -0.974713 0) (0.5343 -0.975052 0) (0.595274 -0.971296 0) (0.655825 -0.963461 0) (0.715649 -0.951585 0) (0.77445 -0.935732 0) (0.831943 -0.915983 0) (0.887856 -0.892442 0) (0.941931 -0.865225 0) (0.993926 -0.83446 0) (1.04361 -0.800283 0) (1.09078 -0.762837 0) (1.13523 -0.722267 0) (1.17676 -0.678726 0) (1.21519 -0.632374 0) (1.25035 -0.583386 0) (1.28206 -0.531961 0) (1.31018 -0.478336 0) (1.3346 -0.422807 0) (1.35524 -0.365745 0) (1.37213 -0.307605 0) (1.38541 -0.248923 0) (1.3953 -0.190281 0) (1.40211 -0.13224 0) (1.4063 -0.0751315 0) (1.40381 -0.0233275 0) (1.41818 0.0758475 0) (1.414 0.133459 0) (1.40723 0.192041 0) (1.39741 0.251291 0) (1.38422 0.310669 0) (1.36742 0.369606 0) (1.34686 0.42756 0) (1.32248 0.484063 0) (1.29432 0.538726 0) (1.26249 0.591234 0) (1.22712 0.641328 0) (1.18837 0.68879 0) (1.14641 0.733428 0) (1.10143 0.775064 0) (1.05362 0.813532 0) (1.00318 0.848671 0) (0.95034 0.880325 0) (0.895327 0.908348 0) (0.838395 0.9326 0) (0.779811 0.952955 0) (0.71986 0.969305 0) (0.658839 0.981558 0) (0.597057 0.989647 0) (0.534832 0.99353 0) (0.472484 0.993191 0) (0.410333 0.988642 0) (0.348693 0.979922 0) (0.28787 0.967096 0) (0.228151 0.950251 0) (0.169809 0.929493 0) (0.113096 0.904946 0) (0.0582421 0.876742 0) (0.00545428 0.845021 0) (-0.0450798 0.809922 0) (-0.0931906 0.771583 0) (-0.138722 0.730138 0) (-0.181527 0.685715 0) (-0.221459 0.638437 0) (-0.258366 0.588435 0) (-0.292089 0.535853 0) (-0.322456 0.480872 0) (-0.349291 0.423727 0) (-0.372429 0.364733 0) (-0.391741 0.3043 0) (-0.407158 0.242941 0) (-0.418696 0.181243 0) (-0.426445 0.119839 0) (-0.430544 0.0593825 0) (-0.431699 -9.28348e-18 0) (-0.430544 -0.0593825 0) (-0.426445 -0.119839 0) (-0.418696 -0.181243 0) (-0.407158 -0.242941 0) (-0.391741 -0.3043 0) (-0.372429 -0.364733 0) (-0.349291 -0.423727 0) (-0.322456 -0.480872 0) (-0.292089 -0.535853 0) (-0.258366 -0.588435 0) (-0.221459 -0.638437 0) (-0.181527 -0.685715 0) (-0.138722 -0.730138 0) (-0.0931906 -0.771583 0) (-0.0450798 -0.809922 0) (0.00545428 -0.845021 0) (0.0582421 -0.876742 0) (0.113096 -0.904946 0) (0.169809 -0.929493 0) (0.228151 -0.950251 0) (0.28787 -0.967096 0) (0.348693 -0.979922 0) (0.410333 -0.988642 0) (0.472484 -0.993191 0) (0.534832 -0.99353 0) (0.597057 -0.989647 0) (0.658839 -0.981558 0) (0.71986 -0.969305 0) (0.779811 -0.952955 0) (0.838395 -0.9326 0) (0.895327 -0.908348 0) (0.95034 -0.880325 0) (1.00318 -0.848671 0) (1.05362 -0.813532 0) (1.10143 -0.775064 0) (1.14641 -0.733428 0) (1.18837 -0.68879 0) (1.22712 -0.641328 0) (1.26249 -0.591234 0) (1.29432 -0.538726 0) (1.32248 -0.484063 0) (1.34686 -0.42756 0) (1.36742 -0.369606 0) (1.38422 -0.310669 0) (1.39741 -0.251291 0) (1.40723 -0.192041 0) (1.414 -0.133459 0) (1.41818 -0.0758475 0) (1.41568 -0.0235628 0) (1.4304 0.076578 0) (1.42624 0.134701 0) (1.41951 0.19383 0) (1.40974 0.253692 0) (1.39664 0.31377 0) (1.37993 0.373505 0) (1.35943 0.432354 0) (1.33508 0.489837 0) (1.30688 0.545547 0) (1.27493 0.599149 0) (1.23934 0.650364 0) (1.20026 0.698953 0) (1.15787 0.744705 0) (1.11233 0.787427 0) (1.06386 0.826934 0) (1.01266 0.863053 0) (0.958951 0.895615 0) (0.902978 0.924459 0) (0.845003 0.949436 0) (0.785303 0.970412 0) (0.724174 0.987267 0) (0.661927 0.999905 0) (0.598885 1.00825 0) (0.535379 1.01227 0) (0.471745 1.01193 0) (0.408317 1.00725 0) (0.345425 0.998268 0) (0.283388 0.985056 0) (0.222509 0.967706 0) (0.163073 0.946331 0) (0.105344 0.921062 0) (0.0495624 0.892043 0) (-0.00405359 0.859424 0) (-0.0553094 0.823357 0) (-0.10403 0.783996 0) (-0.150056 0.741487 0) (-0.19324 0.695975 0) (-0.233438 0.6476 0) (-0.270507 0.596509 0) (-0.304295 0.542863 0) (-0.334646 0.486859 0) (-0.361405 0.428745 0) (-0.384428 0.368849 0) (-0.403607 0.307586 0) (-0.418896 0.24547 0) (-0.430328 0.18308 0) (-0.438001 0.121035 0) (-0.442056 0.0599721 0) (-0.443197 -9.82558e-18 0) (-0.442056 -0.0599721 0) (-0.438001 -0.121035 0) (-0.430328 -0.18308 0) (-0.418896 -0.24547 0) (-0.403607 -0.307586 0) (-0.384428 -0.368849 0) (-0.361405 -0.428745 0) (-0.334646 -0.486859 0) (-0.304295 -0.542863 0) (-0.270507 -0.596509 0) (-0.233438 -0.6476 0) (-0.19324 -0.695975 0) (-0.150056 -0.741487 0) (-0.10403 -0.783996 0) (-0.0553094 -0.823357 0) (-0.00405359 -0.859424 0) (0.0495624 -0.892043 0) (0.105344 -0.921062 0) (0.163073 -0.946331 0) (0.222509 -0.967706 0) (0.283388 -0.985056 0) (0.345425 -0.998268 0) (0.408317 -1.00725 0) (0.471745 -1.01193 0) (0.535379 -1.01227 0) (0.598885 -1.00825 0) (0.661927 -0.999905 0) (0.724174 -0.987267 0) (0.785303 -0.970412 0) (0.845003 -0.949436 0) (0.902978 -0.924459 0) (0.958951 -0.895615 0) (1.01266 -0.863053 0) (1.06386 -0.826934 0) (1.11233 -0.787427 0) (1.15787 -0.744705 0) (1.20026 -0.698953 0) (1.23934 -0.650364 0) (1.27493 -0.599149 0) (1.30688 -0.545547 0) (1.33508 -0.489837 0) (1.35943 -0.432354 0) (1.37993 -0.373505 0) (1.39664 -0.31377 0) (1.40974 -0.253692 0) (1.41951 -0.19383 0) (1.42624 -0.134701 0) (1.4304 -0.076578 0) (1.4279 -0.0238033 0) (1.44299 0.0773233 0) (1.43884 0.135967 0) (1.43214 0.19565 0) (1.42243 0.25613 0) (1.40939 0.31691 0) (1.39276 0.377445 0) (1.37232 0.437193 0) (1.34799 0.495661 0) (1.31975 0.552428 0) (1.28767 0.607136 0) (1.25185 0.659485 0) (1.21244 0.709218 0) (1.16959 0.756102 0) (1.1235 0.799927 0) (1.07435 0.840494 0) (1.02236 0.877611 0) (0.967766 0.911097 0) (0.910811 0.940779 0) (0.851768 0.966496 0) (0.790926 0.988104 0) (0.728592 1.00548 0) (0.665091 1.01851 0) (0.600759 1.02712 0) (0.535942 1.03127 0) (0.470992 1.03093 0) (0.406257 1.02611 0) (0.342083 1.01687 0) (0.278803 1.00327 0) (0.216734 0.985402 0) (0.156176 0.963397 0) (0.0974054 0.937393 0) (0.0406732 0.907543 0) (-0.0137932 0.874009 0) (-0.0657909 0.836957 0) (-0.115139 0.796554 0) (-0.161675 0.752963 0) (-0.205251 0.706344 0) (-0.245726 0.656855 0) (-0.282963 0.604659 0) (-0.316821 0.549935 0) (-0.347162 0.492896 0) (-0.373847 0.433804 0) (-0.396755 0.372998 0) (-0.415802 0.310901 0) (-0.430965 0.248022 0) (-0.442291 0.184935 0) (-0.449889 0.122244 0) (-0.453901 0.0605683 0) (-0.455027 -1.01508e-17 0) (-0.453901 -0.0605683 0) (-0.449889 -0.122244 0) (-0.442291 -0.184935 0) (-0.430965 -0.248022 0) (-0.415802 -0.310901 0) (-0.396755 -0.372998 0) (-0.373847 -0.433804 0) (-0.347162 -0.492896 0) (-0.316821 -0.549935 0) (-0.282963 -0.604659 0) (-0.245726 -0.656855 0) (-0.205251 -0.706344 0) (-0.161675 -0.752963 0) (-0.115139 -0.796554 0) (-0.0657909 -0.836957 0) (-0.0137932 -0.874009 0) (0.0406732 -0.907543 0) (0.0974054 -0.937393 0) (0.156176 -0.963397 0) (0.216734 -0.985402 0) (0.278803 -1.00327 0) (0.342083 -1.01687 0) (0.406257 -1.02611 0) (0.470992 -1.03093 0) (0.535942 -1.03127 0) (0.600759 -1.02712 0) (0.665091 -1.01851 0) (0.728592 -1.00548 0) (0.790926 -0.988104 0) (0.851768 -0.966496 0) (0.910811 -0.940779 0) (0.967766 -0.911097 0) (1.02236 -0.877611 0) (1.07435 -0.840494 0) (1.1235 -0.799927 0) (1.16959 -0.756102 0) (1.21244 -0.709218 0) (1.25185 -0.659485 0) (1.28767 -0.607136 0) (1.31975 -0.552428 0) (1.34799 -0.495661 0) (1.37232 -0.437193 0) (1.39276 -0.377445 0) (1.40939 -0.31691 0) (1.42243 -0.25613 0) (1.43214 -0.19565 0) (1.43884 -0.135967 0) (1.44299 -0.0773233 0) (1.44049 -0.0240489 0) (1.45596 0.0780838 0) (1.45182 0.137257 0) (1.44514 0.197504 0) (1.43547 0.258606 0) (1.4225 0.320092 0) (1.40593 0.38143 0) (1.38554 0.442079 0) (1.36122 0.50154 0) (1.33293 0.559371 0) (1.30071 0.615196 0) (1.26465 0.668695 0) (1.22489 0.719587 0) (1.18159 0.767621 0) (1.13492 0.812569 0) (1.08508 0.854213 0) (1.03229 0.892347 0) (0.976787 0.926775 0) (0.918828 0.957312 0) (0.858693 0.983784 0) (0.796682 1.00604 0) (0.733116 1.02394 0) (0.668331 1.03737 0) (0.602679 1.04625 0) (0.536522 1.05054 0) (0.470224 1.0502 0) (0.404152 1.04525 0) (0.338665 1.03573 0) (0.274113 1.02173 0) (0.210827 1.00334 0) (0.149119 0.980695 0) (0.0892804 0.953941 0) (0.0315727 0.923245 0) (-0.0237666 0.888779 0) (-0.0765266 0.850724 0) (-0.126521 0.809261 0) (-0.173583 0.764569 0) (-0.217564 0.716824 0) (-0.258326 0.666203 0) (-0.295739 0.612886 0) (-0.329675 0.55707 0) (-0.360009 0.498984 0) (-0.386623 0.438905 0) (-0.409419 0.377182 0) (-0.428337 0.314244 0) (-0.443375 0.250598 0) (-0.454597 0.186808 0) (-0.46212 0.123465 0) (-0.466088 0.061171 0) (-0.4672 -1.05303e-17 0) (-0.466088 -0.061171 0) (-0.46212 -0.123465 0) (-0.454597 -0.186808 0) (-0.443375 -0.250598 0) (-0.428337 -0.314244 0) (-0.409419 -0.377182 0) (-0.386623 -0.438905 0) (-0.360009 -0.498984 0) (-0.329675 -0.55707 0) (-0.295739 -0.612886 0) (-0.258326 -0.666203 0) (-0.217564 -0.716824 0) (-0.173583 -0.764569 0) (-0.126521 -0.809261 0) (-0.0765266 -0.850724 0) (-0.0237666 -0.888779 0) (0.0315727 -0.923245 0) (0.0892804 -0.953941 0) (0.149119 -0.980695 0) (0.210827 -1.00334 0) (0.274113 -1.02173 0) (0.338665 -1.03573 0) (0.404152 -1.04525 0) (0.470224 -1.0502 0) (0.536522 -1.05054 0) (0.602679 -1.04625 0) (0.668331 -1.03737 0) (0.733116 -1.02394 0) (0.796682 -1.00604 0) (0.858693 -0.983784 0) (0.918828 -0.957312 0) (0.976787 -0.926775 0) (1.03229 -0.892347 0) (1.08508 -0.854213 0) (1.13492 -0.812569 0) (1.18159 -0.767621 0) (1.22489 -0.719587 0) (1.26465 -0.668695 0) (1.30071 -0.615196 0) (1.33293 -0.559371 0) (1.36122 -0.50154 0) (1.38554 -0.442079 0) (1.40593 -0.38143 0) (1.4225 -0.320092 0) (1.43547 -0.258606 0) (1.44514 -0.197504 0) (1.45182 -0.137257 0) (1.45596 -0.0780838 0) (1.45345 -0.0242996 0) (1.4693 0.07886 0) (1.46517 0.138574 0) (1.45851 0.199392 0) (1.44888 0.261123 0) (1.43596 0.323319 0) (1.41944 0.385463 0) (1.3991 0.447018 0) (1.37478 0.507476 0) (1.34643 0.56638 0) (1.31406 0.623334 0) (1.27776 0.677996 0) (1.23764 0.730063 0) (1.19387 0.779266 0) (1.14661 0.825355 0) (1.09606 0.868096 0) (1.04245 0.907265 0) (0.986017 0.942653 0) (0.92703 0.974061 0) (0.865778 1.0013 0) (0.802573 1.02421 0) (0.737746 1.04265 0) (0.671649 1.05649 0) (0.604647 1.06565 0) (0.537118 1.07008 0) (0.469442 1.06974 0) (0.402002 1.06465 0) (0.335172 1.05486 0) (0.269317 1.04045 0) (0.204784 1.02153 0) (0.1419 0.998228 0) (0.0809668 0.970711 0) (0.022259 0.939152 0) (-0.033976 0.903737 0) (-0.087519 0.864661 0) (-0.138177 0.822119 0) (-0.185781 0.776307 0) (-0.230181 0.727418 0) (-0.271243 0.675647 0) (-0.308842 0.621193 0) (-0.342862 0.564271 0) (-0.373195 0.505125 0) (-0.399741 0.44405 0) (-0.422429 0.381402 0) (-0.44122 0.317616 0) (-0.456135 0.253198 0) (-0.467254 0.188701 0) (-0.474703 0.1247 0) (-0.478628 0.0617805 0) (-0.479727 -1.11808e-17 0) (-0.478628 -0.0617805 0) (-0.474703 -0.1247 0) (-0.467254 -0.188701 0) (-0.456135 -0.253198 0) (-0.44122 -0.317616 0) (-0.422429 -0.381402 0) (-0.399741 -0.44405 0) (-0.373195 -0.505125 0) (-0.342862 -0.564271 0) (-0.308842 -0.621193 0) (-0.271243 -0.675647 0) (-0.230181 -0.727418 0) (-0.185781 -0.776307 0) (-0.138177 -0.822119 0) (-0.087519 -0.864661 0) (-0.033976 -0.903737 0) (0.022259 -0.939152 0) (0.0809668 -0.970711 0) (0.1419 -0.998228 0) (0.204784 -1.02153 0) (0.269317 -1.04045 0) (0.335172 -1.05486 0) (0.402002 -1.06465 0) (0.469442 -1.06974 0) (0.537118 -1.07008 0) (0.604647 -1.06565 0) (0.671649 -1.05649 0) (0.737746 -1.04265 0) (0.802573 -1.02421 0) (0.865778 -1.0013 0) (0.92703 -0.974061 0) (0.986017 -0.942653 0) (1.04245 -0.907265 0) (1.09606 -0.868096 0) (1.14661 -0.825355 0) (1.19387 -0.779266 0) (1.23764 -0.730063 0) (1.27776 -0.677996 0) (1.31406 -0.623334 0) (1.34643 -0.56638 0) (1.37478 -0.507476 0) (1.3991 -0.447018 0) (1.41944 -0.385463 0) (1.43596 -0.323319 0) (1.44888 -0.261123 0) (1.45851 -0.199392 0) (1.46517 -0.138574 0) (1.4693 -0.07886 0) (1.46679 -0.0245556 0) (1.48304 0.0796525 0) (1.47891 0.139917 0) (1.47227 0.201316 0) (1.46266 0.263684 0) (1.44979 0.326594 0) (1.43332 0.389548 0) (1.413 0.452013 0) (1.38867 0.513473 0) (1.36025 0.573458 0) (1.32773 0.631552 0) (1.29117 0.687391 0) (1.25069 0.740651 0) (1.20643 0.791039 0) (1.15856 0.838288 0) (1.10729 0.882144 0) (1.05284 0.922369 0) (0.995458 0.958735 0) (0.935421 0.99103 0) (0.873027 1.01906 0) (0.808599 1.04264 0) (0.742483 1.06162 0) (0.675044 1.07588 0) (0.606663 1.08533 0) (0.537731 1.08989 0) (0.468646 1.08956 0) (0.399806 1.08433 0) (0.331602 1.07426 0) (0.264415 1.05943 0) (0.198606 1.03997 0) (0.134517 1.016 0) (0.0724628 0.987705 0) (0.0127301 0.955267 0) (-0.0444235 0.918886 0) (-0.0987706 0.87877 0) (-0.150112 0.83513 0) (-0.198275 0.788179 0) (-0.243108 0.738127 0) (-0.284481 0.685189 0) (-0.322276 0.629582 0) (-0.356388 0.571539 0) (-0.386725 0.511322 0) (-0.413211 0.44924 0) (-0.435793 0.38566 0) (-0.454461 0.321021 0) (-0.469256 0.255824 0) (-0.480274 0.190613 0) (-0.48765 0.125948 0) (-0.491532 0.0623967 0) (-0.492617 -1.11808e-17 0) (-0.491532 -0.0623967 0) (-0.48765 -0.125948 0) (-0.480274 -0.190613 0) (-0.469256 -0.255824 0) (-0.454461 -0.321021 0) (-0.435793 -0.38566 0) (-0.413211 -0.44924 0) (-0.386725 -0.511322 0) (-0.356388 -0.571539 0) (-0.322276 -0.629582 0) (-0.284481 -0.685189 0) (-0.243108 -0.738127 0) (-0.198275 -0.788179 0) (-0.150112 -0.83513 0) (-0.0987706 -0.87877 0) (-0.0444235 -0.918886 0) (0.0127301 -0.955267 0) (0.0724628 -0.987705 0) (0.134517 -1.016 0) (0.198606 -1.03997 0) (0.264415 -1.05943 0) (0.331602 -1.07426 0) (0.399806 -1.08433 0) (0.468646 -1.08956 0) (0.537731 -1.08989 0) (0.606663 -1.08533 0) (0.675044 -1.07588 0) (0.742483 -1.06162 0) (0.808599 -1.04264 0) (0.873027 -1.01906 0) (0.935421 -0.99103 0) (0.995458 -0.958735 0) (1.05284 -0.922369 0) (1.10729 -0.882144 0) (1.15856 -0.838288 0) (1.20643 -0.791039 0) (1.25069 -0.740651 0) (1.29117 -0.687391 0) (1.32773 -0.631552 0) (1.36025 -0.573458 0) (1.38867 -0.513473 0) (1.413 -0.452013 0) (1.43332 -0.389548 0) (1.44979 -0.326594 0) (1.46266 -0.263684 0) (1.47227 -0.201316 0) (1.47891 -0.139917 0) (1.48304 -0.0796525 0) (1.48052 -0.0248169 0) (1.49719 0.0804619 0) (1.49306 0.141289 0) (1.48643 0.203279 0) (1.47684 0.266291 0) (1.46399 0.329922 0) (1.44755 0.393689 0) (1.42726 0.457067 0) (1.40291 0.519536 0) (1.3744 0.58061 0) (1.34171 0.639856 0) (1.30489 0.696885 0) (1.26403 0.751352 0) (1.21927 0.802945 0) (1.17079 0.851372 0) (1.11878 0.896363 0) (1.06347 0.937661 0) (1.00511 0.975024 0) (0.944002 1.00822 0) (0.88044 1.03705 0) (0.814763 1.06132 0) (0.74733 1.08086 0) (0.678519 1.09555 0) (0.608727 1.10528 0) (0.538361 1.10999 0) (0.467835 1.10966 0) (0.397564 1.10428 0) (0.327955 1.09393 0) (0.259405 1.07868 0) (0.192291 1.05866 0) (0.126969 1.03402 0) (0.0637667 1.00493 0) (0.00298399 0.971596 0) (-0.0551117 0.93423 0) (-0.110284 0.893055 0) (-0.162328 0.848298 0) (-0.211066 0.800188 0) (-0.256348 0.748955 0) (-0.298044 0.694832 0) (-0.336046 0.638054 0) (-0.370259 0.578876 0) (-0.400609 0.517576 0) (-0.427038 0.454477 0) (-0.449521 0.389957 0) (-0.46807 0.324457 0) (-0.482748 0.258476 0) (-0.493667 0.192546 0) (-0.500972 0.12721 0) (-0.504811 0.0630199 0) (-0.505883 -9.77137e-18 0) (-0.504811 -0.0630199 0) (-0.500972 -0.12721 0) (-0.493667 -0.192546 0) (-0.482748 -0.258476 0) (-0.46807 -0.324457 0) (-0.449521 -0.389957 0) (-0.427038 -0.454477 0) (-0.400609 -0.517576 0) (-0.370259 -0.578876 0) (-0.336046 -0.638054 0) (-0.298044 -0.694832 0) (-0.256348 -0.748955 0) (-0.211066 -0.800188 0) (-0.162328 -0.848298 0) (-0.110284 -0.893055 0) (-0.0551117 -0.93423 0) (0.00298399 -0.971596 0) (0.0637667 -1.00493 0) (0.126969 -1.03402 0) (0.192291 -1.05866 0) (0.259405 -1.07868 0) (0.327955 -1.09393 0) (0.397564 -1.10428 0) (0.467835 -1.10966 0) (0.538361 -1.10999 0) (0.608727 -1.10528 0) (0.678519 -1.09555 0) (0.74733 -1.08086 0) (0.814763 -1.06132 0) (0.88044 -1.03705 0) (0.944002 -1.00822 0) (1.00511 -0.975024 0) (1.06347 -0.937661 0) (1.11878 -0.896363 0) (1.17079 -0.851372 0) (1.21927 -0.802945 0) (1.26403 -0.751352 0) (1.30489 -0.696885 0) (1.34171 -0.639856 0) (1.3744 -0.58061 0) (1.40291 -0.519536 0) (1.42726 -0.457067 0) (1.44755 -0.393689 0) (1.46399 -0.329922 0) (1.47684 -0.266291 0) (1.48643 -0.203279 0) (1.49306 -0.141289 0) (1.49719 -0.0804619 0) (1.49466 -0.0250838 0) (1.51175 0.0812888 0) (1.50762 0.14269 0) (1.50099 0.205282 0) (1.49141 0.268947 0) (1.47858 0.333305 0) (1.46217 0.39789 0) (1.44188 0.462186 0) (1.41749 0.525669 0) (1.38889 0.587841 0) (1.35603 0.648248 0) (1.31893 0.706481 0) (1.27768 0.762172 0) (1.23241 0.814986 0) (1.18329 0.864611 0) (1.13052 0.910756 0) (1.07433 0.953146 0) (1.01498 0.991523 0) (0.952775 1.02564 0) (0.88802 1.05529 0) (0.821066 1.08025 0) (0.752286 1.10037 0) (0.682073 1.11549 0) (0.610839 1.12552 0) (0.539008 1.13038 0) (0.46701 1.13004 0) (0.395276 1.12453 0) (0.324231 1.11388 0) (0.254287 1.0982 0) (0.185837 1.07761 0) (0.119253 1.05228 0) (0.0548766 1.02238 0) (-0.00698161 0.98814 0) (-0.0660427 0.949772 0) (-0.122062 0.90752 0) (-0.174827 0.861626 0) (-0.224159 0.812338 0) (-0.269904 0.759905 0) (-0.311937 0.704578 0) (-0.350157 0.646614 0) (-0.384482 0.586286 0) (-0.414852 0.52389 0) (-0.441233 0.459764 0) (-0.463622 0.394295 0) (-0.482057 0.327927 0) (-0.496621 0.261155 0) (-0.507444 0.194499 0) (-0.514678 0.128486 0) (-0.518477 0.0636502 0) (-0.519534 -7.81981e-18 0) (-0.518477 -0.0636502 0) (-0.514678 -0.128486 0) (-0.507444 -0.194499 0) (-0.496621 -0.261155 0) (-0.482057 -0.327927 0) (-0.463622 -0.394295 0) (-0.441233 -0.459764 0) (-0.414852 -0.52389 0) (-0.384482 -0.586286 0) (-0.350157 -0.646614 0) (-0.311937 -0.704578 0) (-0.269904 -0.759905 0) (-0.224159 -0.812338 0) (-0.174827 -0.861626 0) (-0.122062 -0.90752 0) (-0.0660427 -0.949772 0) (-0.00698161 -0.98814 0) (0.0548766 -1.02238 0) (0.119253 -1.05228 0) (0.185837 -1.07761 0) (0.254287 -1.0982 0) (0.324231 -1.11388 0) (0.395276 -1.12453 0) (0.46701 -1.13004 0) (0.539008 -1.13038 0) (0.610839 -1.12552 0) (0.682073 -1.11549 0) (0.752286 -1.10037 0) (0.821066 -1.08025 0) (0.88802 -1.05529 0) (0.952775 -1.02564 0) (1.01498 -0.991523 0) (1.07433 -0.953146 0) (1.13052 -0.910756 0) (1.18329 -0.864611 0) (1.23241 -0.814986 0) (1.27768 -0.762172 0) (1.31893 -0.706481 0) (1.35603 -0.648248 0) (1.38889 -0.587841 0) (1.41749 -0.525669 0) (1.44188 -0.462186 0) (1.46217 -0.39789 0) (1.47858 -0.333305 0) (1.49141 -0.268947 0) (1.50099 -0.205282 0) (1.50762 -0.14269 0) (1.51175 -0.0812888 0) (1.50922 -0.0253563 0) (1.52673 0.0821341 0) (1.5226 0.144122 0) (1.51597 0.207328 0) (1.50639 0.271655 0) (1.49357 0.336747 0) (1.47716 0.402156 0) (1.45686 0.467374 0) (1.43243 0.531877 0) (1.40373 0.595154 0) (1.37067 0.656733 0) (1.33328 0.716183 0) (1.29163 0.773114 0) (1.24584 0.827167 0) (1.19607 0.878008 0) (1.14252 0.925326 0) (1.08543 0.968828 0) (1.02507 1.00824 0) (0.961743 1.0433 0) (0.895768 1.07377 0) (0.827511 1.09945 0) (0.757354 1.12015 0) (0.685709 1.13571 0) (0.613002 1.14604 0) (0.539672 1.15105 0) (0.466169 1.15072 0) (0.39294 1.14505 0) (0.320427 1.13411 0) (0.249058 1.118 0) (0.179244 1.09683 0) (0.111369 1.07079 0) (0.0457903 1.04008 0) (-0.0171689 1.0049 0) (-0.0772193 0.965516 0) (-0.134107 0.922167 0) (-0.187614 0.875117 0) (-0.237556 0.824631 0) (-0.28378 0.770979 0) (-0.326165 0.71443 0) (-0.364615 0.655264 0) (-0.399061 0.593771 0) (-0.429461 0.530267 0) (-0.455802 0.465103 0) (-0.478104 0.398676 0) (-0.496431 0.331433 0) (-0.510887 0.263863 0) (-0.521616 0.196474 0) (-0.528782 0.129776 0) (-0.53254 0.0642877 0) (-0.533584 -6.95245e-18 0) (-0.53254 -0.0642877 0) (-0.528782 -0.129776 0) (-0.521616 -0.196474 0) (-0.510887 -0.263863 0) (-0.496431 -0.331433 0) (-0.478104 -0.398676 0) (-0.455802 -0.465103 0) (-0.429461 -0.530267 0) (-0.399061 -0.593771 0) (-0.364615 -0.655264 0) (-0.326165 -0.71443 0) (-0.28378 -0.770979 0) (-0.237556 -0.824631 0) (-0.187614 -0.875117 0) (-0.134107 -0.922167 0) (-0.0772193 -0.965516 0) (-0.0171689 -1.0049 0) (0.0457903 -1.04008 0) (0.111369 -1.07079 0) (0.179244 -1.09683 0) (0.249058 -1.118 0) (0.320427 -1.13411 0) (0.39294 -1.14505 0) (0.466169 -1.15072 0) (0.539672 -1.15105 0) (0.613002 -1.14604 0) (0.685709 -1.13571 0) (0.757354 -1.12015 0) (0.827511 -1.09945 0) (0.895768 -1.07377 0) (0.961743 -1.0433 0) (1.02507 -1.00824 0) (1.08543 -0.968828 0) (1.14252 -0.925326 0) (1.19607 -0.878008 0) (1.24584 -0.827167 0) (1.29163 -0.773114 0) (1.33328 -0.716183 0) (1.37067 -0.656733 0) (1.40373 -0.595154 0) (1.43243 -0.531877 0) (1.45686 -0.467374 0) (1.47716 -0.402156 0) (1.49357 -0.336747 0) (1.50639 -0.271655 0) (1.51597 -0.207328 0) (1.5226 -0.144122 0) (1.52673 -0.0821341 0) (1.5242 -0.0256348 0) (1.54215 0.0829984 0) (1.53801 0.145586 0) (1.53137 0.209419 0) (1.52179 0.274419 0) (1.50896 0.340252 0) (1.49255 0.40649 0) (1.47223 0.472637 0) (1.44774 0.538165 0) (1.41891 0.602554 0) (1.38566 0.665316 0) (1.34797 0.725997 0) (1.3059 0.784183 0) (1.25956 0.839491 0) (1.20913 0.891567 0) (1.15479 0.940078 0) (1.09678 0.984711 0) (1.03539 1.02517 0) (0.970908 1.06119 0) (0.903688 1.09251 0) (0.834097 1.11891 0) (0.762536 1.1402 0) (0.689427 1.15622 0) (0.615214 1.16686 0) (0.540355 1.17202 0) (0.465314 1.17169 0) (0.390557 1.16588 0) (0.316544 1.15464 0) (0.243719 1.13807 0) (0.172509 1.11632 0) (0.103314 1.08956 0) (0.0365059 1.05801 0) (-0.0275803 1.02189 0) (-0.088644 0.981466 0) (-0.146423 0.937001 0) (-0.200691 0.888775 0) (-0.251262 0.837072 0) (-0.297982 0.78218 0) (-0.340732 0.724392 0) (-0.379425 0.664006 0) (-0.414004 0.601334 0) (-0.444444 0.536708 0) (-0.470753 0.470496 0) (-0.492977 0.403102 0) (-0.511202 0.334976 0) (-0.525555 0.2666 0) (-0.536195 0.198471 0) (-0.543295 0.131082 0) (-0.547012 0.0649327 0) (-0.548043 -4.5672e-18 0) (-0.547012 -0.0649327 0) (-0.543295 -0.131082 0) (-0.536195 -0.198471 0) (-0.525555 -0.2666 0) (-0.511202 -0.334976 0) (-0.492977 -0.403102 0) (-0.470753 -0.470496 0) (-0.444444 -0.536708 0) (-0.414004 -0.601334 0) (-0.379425 -0.664006 0) (-0.340732 -0.724392 0) (-0.297982 -0.78218 0) (-0.251262 -0.837072 0) (-0.200691 -0.888775 0) (-0.146423 -0.937001 0) (-0.088644 -0.981466 0) (-0.0275803 -1.02189 0) (0.0365059 -1.05801 0) (0.103314 -1.08956 0) (0.172509 -1.11632 0) (0.243719 -1.13807 0) (0.316544 -1.15464 0) (0.390557 -1.16588 0) (0.465314 -1.17169 0) (0.540355 -1.17202 0) (0.615214 -1.16686 0) (0.689427 -1.15622 0) (0.762536 -1.1402 0) (0.834097 -1.11891 0) (0.903688 -1.09251 0) (0.970908 -1.06119 0) (1.03539 -1.02517 0) (1.09678 -0.984711 0) (1.15479 -0.940078 0) (1.20913 -0.891567 0) (1.25956 -0.839491 0) (1.3059 -0.784183 0) (1.34797 -0.725997 0) (1.38566 -0.665316 0) (1.41891 -0.602554 0) (1.44774 -0.538165 0) (1.47223 -0.472637 0) (1.49255 -0.40649 0) (1.50896 -0.340252 0) (1.52179 -0.274419 0) (1.53137 -0.209419 0) (1.53801 -0.145586 0) (1.54215 -0.0829984 0) (1.53962 -0.0259195 0) (1.55802 0.0838826 0) (1.55387 0.147084 0) (1.54722 0.211556 0) (1.53762 0.277241 0) (1.52478 0.343824 0) (1.50834 0.410899 0) (1.48798 0.477979 0) (1.46341 0.544538 0) (1.43445 0.610048 0) (1.40098 0.674002 0) (1.36298 0.735926 0) (1.32048 0.795382 0) (1.27359 0.851964 0) (1.22247 0.905293 0) (1.16732 0.955016 0) (1.10838 1.0008 0) (1.04592 1.04233 0) (0.980272 1.07932 0) (0.91178 1.11151 0) (0.840828 1.13865 0) (0.767831 1.16054 0) (0.693227 1.17702 0) (0.617477 1.18797 0) (0.541055 1.1933 0) (0.464444 1.19297 0) (0.388126 1.187 0) (0.31258 1.17545 0) (0.238267 1.15843 0) (0.165631 1.13608 0) (0.0950871 1.10859 0) (0.0270211 1.07619 0) (-0.0382182 1.03911 0) (-0.100319 0.997626 0) (-0.159011 0.952025 0) (-0.214062 0.902603 0) (-0.26528 0.849663 0) (-0.312512 0.793514 0) (-0.355643 0.734468 0) (-0.394593 0.672845 0) (-0.429317 0.608978 0) (-0.459809 0.543219 0) (-0.486097 0.475946 0) (-0.508251 0.407576 0) (-0.526382 0.338558 0) (-0.540637 0.269369 0) (-0.551191 0.200492 0) (-0.558227 0.132403 0) (-0.561907 0.0655855 0) (-0.562925 -2.50722e-18 0) (-0.561907 -0.0655855 0) (-0.558227 -0.132403 0) (-0.551191 -0.200492 0) (-0.540637 -0.269369 0) (-0.526382 -0.338558 0) (-0.508251 -0.407576 0) (-0.486097 -0.475946 0) (-0.459809 -0.543219 0) (-0.429317 -0.608978 0) (-0.394593 -0.672845 0) (-0.355643 -0.734468 0) (-0.312512 -0.793514 0) (-0.26528 -0.849663 0) (-0.214062 -0.902603 0) (-0.159011 -0.952025 0) (-0.100319 -0.997626 0) (-0.0382182 -1.03911 0) (0.0270211 -1.07619 0) (0.0950871 -1.10859 0) (0.165631 -1.13608 0) (0.238267 -1.15843 0) (0.31258 -1.17545 0) (0.388126 -1.187 0) (0.464444 -1.19297 0) (0.541055 -1.1933 0) (0.617477 -1.18797 0) (0.693227 -1.17702 0) (0.767831 -1.16054 0) (0.840828 -1.13865 0) (0.91178 -1.11151 0) (0.980272 -1.07932 0) (1.04592 -1.04233 0) (1.10838 -1.0008 0) (1.16732 -0.955016 0) (1.22247 -0.905293 0) (1.27359 -0.851964 0) (1.32048 -0.795382 0) (1.36298 -0.735926 0) (1.40098 -0.674002 0) (1.43445 -0.610048 0) (1.46341 -0.544538 0) (1.48798 -0.477979 0) (1.50834 -0.410899 0) (1.52478 -0.343824 0) (1.53762 -0.277241 0) (1.54722 -0.211556 0) (1.55387 -0.147084 0) (1.55802 -0.0838826 0) (1.55549 -0.0262106 0) (1.57435 0.0847878 0) (1.57019 0.148618 0) (1.56351 0.213743 0) (1.55389 0.280124 0) (1.54101 0.347468 0) (1.52454 0.415386 0) (1.50412 0.483405 0) (1.47947 0.551002 0) (1.45036 0.617641 0) (1.41666 0.682797 0) (1.37833 0.745977 0) (1.33538 0.806718 0) (1.28793 0.864589 0) (1.23611 0.91919 0) (1.18012 0.970144 0) (1.12022 1.0171 0) (1.05668 1.05972 0) (0.989839 1.0977 0) (0.920047 1.13076 0) (0.847706 1.15866 0) (0.773242 1.18117 0) (0.697112 1.19812 0) (0.619792 1.20939 0) (0.541774 1.21487 0) (0.463558 1.21455 0) (0.385647 1.20843 0) (0.308534 1.19657 0) (0.232701 1.17908 0) (0.158608 1.15612 0) (0.0866854 1.12789 0) (0.0173336 1.09462 0) (-0.0490851 1.05656 0) (-0.112248 1.014 0) (-0.171876 0.967244 0) (-0.227729 0.916606 0) (-0.279614 0.862409 0) (-0.327375 0.804982 0) (-0.370902 0.74466 0) (-0.410123 0.681785 0) (-0.445006 0.616708 0) (-0.475562 0.549801 0) (-0.50184 0.481457 0) (-0.523934 0.412101 0) (-0.541979 0.342182 0) (-0.556143 0.272171 0) (-0.566618 0.202537 0) (-0.573593 0.13374 0) (-0.577235 0.0662464 0) (-0.578241 -1.09775e-18 0) (-0.577235 -0.0662464 0) (-0.573593 -0.13374 0) (-0.566618 -0.202537 0) (-0.556143 -0.272171 0) (-0.541979 -0.342182 0) (-0.523934 -0.412101 0) (-0.50184 -0.481457 0) (-0.475562 -0.549801 0) (-0.445006 -0.616708 0) (-0.410123 -0.681785 0) (-0.370902 -0.74466 0) (-0.327375 -0.804982 0) (-0.279614 -0.862409 0) (-0.227729 -0.916606 0) (-0.171876 -0.967244 0) (-0.112248 -1.014 0) (-0.0490851 -1.05656 0) (0.0173336 -1.09462 0) (0.0866854 -1.12789 0) (0.158608 -1.15612 0) (0.232701 -1.17908 0) (0.308534 -1.19657 0) (0.385647 -1.20843 0) (0.463558 -1.21455 0) (0.541774 -1.21487 0) (0.619792 -1.20939 0) (0.697112 -1.19812 0) (0.773242 -1.18117 0) (0.847706 -1.15866 0) (0.920047 -1.13076 0) (0.989839 -1.0977 0) (1.05668 -1.05972 0) (1.12022 -1.0171 0) (1.18012 -0.970144 0) (1.23611 -0.91919 0) (1.28793 -0.864589 0) (1.33538 -0.806718 0) (1.37833 -0.745977 0) (1.41666 -0.682797 0) (1.45036 -0.617641 0) (1.47947 -0.551002 0) (1.50412 -0.483405 0) (1.52454 -0.415386 0) (1.54101 -0.347468 0) (1.55389 -0.280124 0) (1.56351 -0.213743 0) (1.57019 -0.148618 0) (1.57435 -0.0847878 0) (1.57181 -0.0265085 0) (1.59115 0.0857148 0) (1.58697 0.150189 0) (1.58026 0.215982 0) (1.57061 0.283073 0) (1.55769 0.351188 0) (1.54116 0.419958 0) (1.52068 0.488923 0) (1.49592 0.557564 0) (1.46664 0.625338 0) (1.4327 0.691706 0) (1.39402 0.756153 0) (1.35062 0.818194 0) (1.30257 0.877373 0) (1.25004 0.933264 0) (1.1932 0.985468 0) (1.13232 1.03361 0) (1.06768 1.07734 0) (0.999611 1.11633 0) (0.928492 1.15029 0) (0.854731 1.17895 0) (0.778771 1.20209 0) (0.701082 1.21953 0) (0.622159 1.23111 0) (0.542511 1.23677 0) (0.462657 1.23645 0) (0.383118 1.23016 0) (0.304406 1.21798 0) (0.227021 1.20003 0) (0.151438 1.17645 0) (0.0781071 1.14746 0) (0.00744122 1.1133 0) (-0.0601838 1.07424 0) (-0.124434 1.03059 0) (-0.18502 0.982661 0) (-0.241698 0.930787 0) (-0.294267 0.875313 0) (-0.342576 0.81659 0) (-0.386516 0.754974 0) (-0.426023 0.690828 0) (-0.461078 0.624527 0) (-0.49171 0.556459 0) (-0.517991 0.487032 0) (-0.540037 0.416679 0) (-0.558006 0.34585 0) (-0.572086 0.275008 0) (-0.582485 0.204608 0) (-0.589403 0.135094 0) (-0.59301 0.0669157 0) (-0.594004 1.72117e-18 0) (-0.59301 -0.0669157 0) (-0.589403 -0.135094 0) (-0.582485 -0.204608 0) (-0.572086 -0.275008 0) (-0.558006 -0.34585 0) (-0.540037 -0.416679 0) (-0.517991 -0.487032 0) (-0.49171 -0.556459 0) (-0.461078 -0.624527 0) (-0.426023 -0.690828 0) (-0.386516 -0.754974 0) (-0.342576 -0.81659 0) (-0.294267 -0.875313 0) (-0.241698 -0.930787 0) (-0.18502 -0.982661 0) (-0.124434 -1.03059 0) (-0.0601838 -1.07424 0) (0.00744122 -1.1133 0) (0.0781071 -1.14746 0) (0.151438 -1.17645 0) (0.227021 -1.20003 0) (0.304406 -1.21798 0) (0.383118 -1.23016 0) (0.462657 -1.23645 0) (0.542511 -1.23677 0) (0.622159 -1.23111 0) (0.701082 -1.21953 0) (0.778771 -1.20209 0) (0.854731 -1.17895 0) (0.928492 -1.15029 0) (0.999611 -1.11633 0) (1.06768 -1.07734 0) (1.13232 -1.03361 0) (1.1932 -0.985468 0) (1.25004 -0.933264 0) (1.30257 -0.877373 0) (1.35062 -0.818194 0) (1.39402 -0.756153 0) (1.4327 -0.691706 0) (1.46664 -0.625338 0) (1.49592 -0.557564 0) (1.52068 -0.488923 0) (1.54116 -0.419958 0) (1.55769 -0.351188 0) (1.57061 -0.283073 0) (1.58026 -0.215982 0) (1.58697 -0.150189 0) (1.59115 -0.0857148 0) (1.58861 -0.0268134 0) (1.60843 0.0866649 0) (1.60422 0.151799 0) (1.59749 0.218276 0) (1.58778 0.28609 0) (1.57481 0.354988 0) (1.55822 0.424619 0) (1.53765 0.494537 0) (1.51276 0.564229 0) (1.4833 0.633146 0) (1.4491 0.700735 0) (1.41006 0.766462 0) (1.36618 0.829817 0) (1.31754 0.890319 0) (1.26426 0.947518 0) (1.20656 1.00099 0) (1.14467 1.05034 0) (1.0789 1.0952 0) (1.00959 1.13522 0) (0.937116 1.17009 0) (0.861906 1.19953 0) (0.784418 1.22331 0) (0.705138 1.24124 0) (0.624579 1.25316 0) (0.543267 1.25898 0) (0.461741 1.25866 0) (0.38054 1.25221 0) (0.300195 1.23971 0) (0.221224 1.22127 0) (0.144121 1.19706 0) (0.0693503 1.1673 0) (-0.00265864 1.13224 0) (-0.0715169 1.09217 0) (-0.136879 1.04741 0) (-0.198447 0.998282 0) (-0.25597 0.945152 0) (-0.309245 0.888381 0) (-0.358119 0.828342 0) (-0.402488 0.765413 0) (-0.442296 0.69998 0) (-0.47754 0.632439 0) (-0.508263 0.563197 0) (-0.534559 0.492675 0) (-0.556568 0.421314 0) (-0.574471 0.349564 0) (-0.588477 0.277881 0) (-0.598807 0.206707 0) (-0.605671 0.136466 0) (-0.609245 0.0675939 0) (-0.610228 4.5401e-18 0) (-0.609245 -0.0675939 0) (-0.605671 -0.136466 0) (-0.598807 -0.206707 0) (-0.588477 -0.277881 0) (-0.574471 -0.349564 0) (-0.556568 -0.421314 0) (-0.534559 -0.492675 0) (-0.508263 -0.563197 0) (-0.47754 -0.632439 0) (-0.442296 -0.69998 0) (-0.402488 -0.765413 0) (-0.358119 -0.828342 0) (-0.309245 -0.888381 0) (-0.25597 -0.945152 0) (-0.198447 -0.998282 0) (-0.136879 -1.04741 0) (-0.0715169 -1.09217 0) (-0.00265864 -1.13224 0) (0.0693503 -1.1673 0) (0.144121 -1.19706 0) (0.221224 -1.22127 0) (0.300195 -1.23971 0) (0.38054 -1.25221 0) (0.461741 -1.25866 0) (0.543267 -1.25898 0) (0.624579 -1.25316 0) (0.705138 -1.24124 0) (0.784418 -1.22331 0) (0.861906 -1.19953 0) (0.937116 -1.17009 0) (1.00959 -1.13522 0) (1.0789 -1.0952 0) (1.14467 -1.05034 0) (1.20656 -1.00099 0) (1.26426 -0.947518 0) (1.31754 -0.890319 0) (1.36618 -0.829817 0) (1.41006 -0.766462 0) (1.4491 -0.700735 0) (1.4833 -0.633146 0) (1.51276 -0.564229 0) (1.53765 -0.494537 0) (1.55822 -0.424619 0) (1.57481 -0.354988 0) (1.58778 -0.28609 0) (1.59749 -0.218276 0) (1.60422 -0.151799 0) (1.60843 -0.0866649 0) (1.60589 -0.0271257 0) (1.6262 0.0876392 0) (1.62197 0.153449 0) (1.61519 0.220627 0) (1.60543 0.28918 0) (1.5924 0.358873 0) (1.57572 0.429374 0) (1.55504 0.500254 0) (1.53001 0.571003 0) (1.50035 0.641071 0) (1.46587 0.709891 0) (1.42645 0.776909 0) (1.38208 0.841592 0) (1.33282 0.903434 0) (1.27879 0.961959 0) (1.2202 1.01672 0) (1.15729 1.0673 0) (1.09037 1.1133 0) (1.01978 1.15436 0) (0.945922 1.19016 0) (0.869234 1.2204 0) (0.790186 1.24484 0) (0.709282 1.26326 0) (0.627052 1.27552 0) (0.544042 1.28151 0) (0.460809 1.2812 0) (0.377911 1.27459 0) (0.295899 1.26176 0) (0.215309 1.24283 0) (0.136653 1.21797 0) (0.0604125 1.18743 0) (-0.0129685 1.15145 0) (-0.0830873 1.11035 0) (-0.149587 1.06445 0) (-0.212161 1.01411 0) (-0.27055 0.959704 0) (-0.32455 0.901616 0) (-0.374008 0.840241 0) (-0.418824 0.775982 0) (-0.458951 0.709245 0) (-0.494398 0.640449 0) (-0.525227 0.570018 0) (-0.551552 0.49839 0) (-0.573538 0.426009 0) (-0.591387 0.353328 0) (-0.605327 0.280794 0) (-0.615594 0.208834 0) (-0.622409 0.137858 0) (-0.625952 0.0682816 0) (-0.626925 6.81692e-18 0) (-0.625952 -0.0682816 0) (-0.622409 -0.137858 0) (-0.615594 -0.208834 0) (-0.605327 -0.280794 0) (-0.591387 -0.353328 0) (-0.573538 -0.426009 0) (-0.551552 -0.49839 0) (-0.525227 -0.570018 0) (-0.494398 -0.640449 0) (-0.458951 -0.709245 0) (-0.418824 -0.775982 0) (-0.374008 -0.840241 0) (-0.32455 -0.901616 0) (-0.27055 -0.959704 0) (-0.212161 -1.01411 0) (-0.149587 -1.06445 0) (-0.0830873 -1.11035 0) (-0.0129685 -1.15145 0) (0.0604125 -1.18743 0) (0.136653 -1.21797 0) (0.215309 -1.24283 0) (0.295899 -1.26176 0) (0.377911 -1.27459 0) (0.460809 -1.2812 0) (0.544042 -1.28151 0) (0.627052 -1.27552 0) (0.709282 -1.26326 0) (0.790186 -1.24484 0) (0.869234 -1.2204 0) (0.945922 -1.19016 0) (1.01978 -1.15436 0) (1.09037 -1.1133 0) (1.15729 -1.0673 0) (1.2202 -1.01672 0) (1.27879 -0.961959 0) (1.33282 -0.903434 0) (1.38208 -0.841592 0) (1.42645 -0.776909 0) (1.46587 -0.709891 0) (1.50035 -0.641071 0) (1.53001 -0.571003 0) (1.55504 -0.500254 0) (1.57572 -0.429374 0) (1.5924 -0.358873 0) (1.60543 -0.28918 0) (1.61519 -0.220627 0) (1.62197 -0.153449 0) (1.6262 -0.0876392 0) (1.62367 -0.0274459 0) (1.64448 0.0886388 0) (1.64022 0.155143 0) (1.63339 0.223038 0) (1.62357 0.292345 0) (1.61045 0.362847 0) (1.59367 0.434231 0) (1.57286 0.50608 0) (1.54767 0.577895 0) (1.5178 0.64912 0) (1.48302 0.71918 0) (1.4432 0.787501 0) (1.39832 0.853525 0) (1.34842 0.916723 0) (1.29363 0.976592 0) (1.23412 1.03266 0) (1.17017 1.08448 0) (1.10207 1.13165 0) (1.03018 1.17378 0) (0.954913 1.21052 0) (0.876715 1.24157 0) (0.796076 1.26667 0) (0.713515 1.2856 0) (0.62958 1.29821 0) (0.544836 1.30438 0) (0.459861 1.30407 0) (0.375231 1.29729 0) (0.291517 1.28412 0) (0.209275 1.26469 0) (0.129034 1.23919 0) (0.0512917 1.20784 0) (-0.0234909 1.17093 0) (-0.0948979 1.12878 0) (-0.162561 1.08172 0) (-0.226164 1.03015 0) (-0.285443 0.974449 0) (-0.340188 0.915024 0) (-0.390249 0.852294 0) (-0.435529 0.786685 0) (-0.475992 0.718629 0) (-0.511659 0.648562 0) (-0.54261 0.576929 0) (-0.56898 0.50418 0) (-0.590957 0.430769 0) (-0.608763 0.357145 0) (-0.622647 0.283748 0) (-0.63286 0.210992 0) (-0.639631 0.139269 0) (-0.643145 0.0689792 0) (-0.644108 6.27482e-18 0) (-0.643145 -0.0689792 0) (-0.639631 -0.139269 0) (-0.63286 -0.210992 0) (-0.622647 -0.283748 0) (-0.608763 -0.357145 0) (-0.590957 -0.430769 0) (-0.56898 -0.50418 0) (-0.54261 -0.576929 0) (-0.511659 -0.648562 0) (-0.475992 -0.718629 0) (-0.435529 -0.786685 0) (-0.390249 -0.852294 0) (-0.340188 -0.915024 0) (-0.285443 -0.974449 0) (-0.226164 -1.03015 0) (-0.162561 -1.08172 0) (-0.0948979 -1.12878 0) (-0.0234909 -1.17093 0) (0.0512917 -1.20784 0) (0.129034 -1.23919 0) (0.209275 -1.26469 0) (0.291517 -1.28412 0) (0.375231 -1.29729 0) (0.459861 -1.30407 0) (0.544836 -1.30438 0) (0.62958 -1.29821 0) (0.713515 -1.2856 0) (0.796076 -1.26667 0) (0.876715 -1.24157 0) (0.954913 -1.21052 0) (1.03018 -1.17378 0) (1.10207 -1.13165 0) (1.17017 -1.08448 0) (1.23412 -1.03266 0) (1.29363 -0.976592 0) (1.34842 -0.916723 0) (1.39832 -0.853525 0) (1.4432 -0.787501 0) (1.48302 -0.71918 0) (1.5178 -0.64912 0) (1.54767 -0.577895 0) (1.57286 -0.50608 0) (1.59367 -0.434231 0) (1.61045 -0.362847 0) (1.62357 -0.292345 0) (1.63339 -0.223038 0) (1.64022 -0.155143 0) (1.64448 -0.0886388 0) (1.64195 -0.0277742 0) (1.66333 0.0896673 0) (1.65903 0.156889 0) (1.65215 0.225521 0) (1.64225 0.295604 0) (1.62904 0.366934 0) (1.61215 0.439218 0) (1.5912 0.512054 0) (1.56583 0.584951 0) (1.53572 0.657353 0) (1.50062 0.728672 0) (1.4604 0.798317 0) (1.41499 0.865707 0) (1.36443 0.930285 0) (1.30884 0.991525 0) (1.2484 1.04893 0) (1.18337 1.10202 0) (1.11407 1.15038 0) (1.04085 1.1936 0) (0.964132 1.2313 0) (0.884387 1.26319 0) (0.802116 1.28897 0) (0.717856 1.30842 0) (0.632173 1.32137 0) (0.545653 1.32772 0) (0.458891 1.32742 0) (0.372486 1.32047 0) (0.287028 1.30696 0) (0.203091 1.28702 0) (0.121224 1.26084 0) (0.0419425 1.22868 0) (-0.0342779 1.19081 0) (-0.107007 1.14758 0) (-0.175865 1.09936 0) (-0.240526 1.04652 0) (-0.300719 0.989495 0) (-0.356234 0.928705 0) (-0.406918 0.864592 0) (-0.452682 0.797607 0) (-0.493498 0.728204 0) (-0.5294 0.656842 0) (-0.560487 0.583984 0) (-0.586916 0.510093 0) (-0.608895 0.435631 0) (-0.626669 0.361046 0) (-0.640505 0.286768 0) (-0.650669 0.213199 0) (-0.6574 0.140712 0) (-0.66089 0.0696922 0) (-0.661844 4.75694e-18 0) (-0.66089 -0.0696922 0) (-0.6574 -0.140712 0) (-0.650669 -0.213199 0) (-0.640505 -0.286768 0) (-0.626669 -0.361046 0) (-0.608895 -0.435631 0) (-0.586916 -0.510093 0) (-0.560487 -0.583984 0) (-0.5294 -0.656842 0) (-0.493498 -0.728204 0) (-0.452682 -0.797607 0) (-0.406918 -0.864592 0) (-0.356234 -0.928705 0) (-0.300719 -0.989495 0) (-0.240526 -1.04652 0) (-0.175865 -1.09936 0) (-0.107007 -1.14758 0) (-0.0342779 -1.19081 0) (0.0419425 -1.22868 0) (0.121224 -1.26084 0) (0.203091 -1.28702 0) (0.287028 -1.30696 0) (0.372486 -1.32047 0) (0.458891 -1.32742 0) (0.545653 -1.32772 0) (0.632173 -1.32137 0) (0.717856 -1.30842 0) (0.802116 -1.28897 0) (0.884387 -1.26319 0) (0.964132 -1.2313 0) (1.04085 -1.1936 0) (1.11407 -1.15038 0) (1.18337 -1.10202 0) (1.2484 -1.04893 0) (1.30884 -0.991525 0) (1.36443 -0.930285 0) (1.41499 -0.865707 0) (1.4604 -0.798317 0) (1.50062 -0.728672 0) (1.53572 -0.657353 0) (1.56583 -0.584951 0) (1.5912 -0.512054 0) (1.61215 -0.439218 0) (1.62904 -0.366934 0) (1.64225 -0.295604 0) (1.65215 -0.225521 0) (1.65903 -0.156889 0) (1.66333 -0.0896673 0) (1.66081 -0.0281107 0) (1.68271 0.0907244 0) (1.67837 0.158681 0) (1.67143 0.228071 0) (1.66145 0.298946 0) (1.64812 0.37112 0) (1.6311 0.444316 0) (1.60999 0.518149 0) (1.58442 0.592136 0) (1.55406 0.665722 0) (1.51863 0.73831 0) (1.47797 0.80929 0) (1.43202 0.878059 0) (1.38078 0.944034 0) (1.32437 1.00666 0) (1.26298 1.06542 0) (1.19685 1.11981 0) (1.12631 1.16937 0) (1.05173 1.21369 0) (0.973541 1.25239 0) (0.892218 1.28511 0) (0.808282 1.31158 0) (0.722289 1.33157 0) (0.634823 1.34488 0) (0.546489 1.35141 0) (0.457905 1.35111 0) (0.369688 1.34399 0) (0.28245 1.33013 0) (0.196784 1.30967 0) (0.113257 1.28281 0) (0.0324037 1.24981 0) (-0.045285 1.21098 0) (-0.119365 1.16666 0) (-0.189444 1.11723 0) (-0.255187 1.06312 0) (-0.316319 1.00474 0) (-0.372624 0.942568 0) (-0.423952 0.877054 0) (-0.470219 0.808673 0) (-0.511406 0.737906 0) (-0.547562 0.665233 0) (-0.578804 0.591136 0) (-0.605308 0.516091 0) (-0.627304 0.440564 0) (-0.645061 0.365005 0) (-0.658861 0.289834 0) (-0.668985 0.215439 0) (-0.675682 0.142178 0) (-0.67915 0.0704166 0) (-0.680096 3.23905e-18 0) (-0.67915 -0.0704166 0) (-0.675682 -0.142178 0) (-0.668985 -0.215439 0) (-0.658861 -0.289834 0) (-0.645061 -0.365005 0) (-0.627304 -0.440564 0) (-0.605308 -0.516091 0) (-0.578804 -0.591136 0) (-0.547562 -0.665233 0) (-0.511406 -0.737906 0) (-0.470219 -0.808673 0) (-0.423952 -0.877054 0) (-0.372624 -0.942568 0) (-0.316319 -1.00474 0) (-0.255187 -1.06312 0) (-0.189444 -1.11723 0) (-0.119365 -1.16666 0) (-0.045285 -1.21098 0) (0.0324037 -1.24981 0) (0.113257 -1.28281 0) (0.196784 -1.30967 0) (0.28245 -1.33013 0) (0.369688 -1.34399 0) (0.457905 -1.35111 0) (0.546489 -1.35141 0) (0.634823 -1.34488 0) (0.722289 -1.33157 0) (0.808282 -1.31158 0) (0.892218 -1.28511 0) (0.973541 -1.25239 0) (1.05173 -1.21369 0) (1.12631 -1.16937 0) (1.19685 -1.11981 0) (1.26298 -1.06542 0) (1.32437 -1.00666 0) (1.38078 -0.944034 0) (1.43202 -0.878059 0) (1.47797 -0.80929 0) (1.51863 -0.73831 0) (1.55406 -0.665722 0) (1.58442 -0.592136 0) (1.60999 -0.518149 0) (1.6311 -0.444316 0) (1.64812 -0.37112 0) (1.66145 -0.298946 0) (1.67143 -0.228071 0) (1.67837 -0.158681 0) (1.68271 -0.0907244 0) (1.6802 -0.0284568 0) (1.70264 0.0918115 0) (1.69825 0.160524 0) (1.69124 0.23069 0) (1.68116 0.302376 0) (1.66771 0.37541 0) (1.65054 0.449531 0) (1.62925 0.524371 0) (1.60346 0.599458 0) (1.57282 0.674236 0) (1.53703 0.748101 0) (1.49593 0.820427 0) (1.4494 0.890588 0) (1.39747 0.957975 0) (1.34023 1.02201 0) (1.27786 1.08213 0) (1.21061 1.13784 0) (1.13881 1.18863 0) (1.06284 1.23408 0) (0.983145 1.27377 0) (0.900211 1.30736 0) (0.814577 1.33453 0) (0.726815 1.35506 0) (0.63753 1.36874 0) (0.547346 1.37546 0) (0.456902 1.37516 0) (0.366837 1.36786 0) (0.277782 1.35364 0) (0.190351 1.33265 0) (0.105131 1.3051 0) (0.0226728 1.27126 0) (-0.056515 1.23143 0) (-0.131974 1.186 0) (-0.203302 1.13536 0) (-0.270153 1.07994 0) (-0.332246 1.0202 0) (-0.389363 0.95662 0) (-0.441356 0.889683 0) (-0.488146 0.819889 0) (-0.529723 0.747741 0) (-0.566152 0.673742 0) (-0.597566 0.59839 0) (-0.624164 0.522177 0) (-0.646196 0.445573 0) (-0.663949 0.369027 0) (-0.677726 0.292951 0) (-0.68782 0.217717 0) (-0.69449 0.143668 0) (-0.697939 0.0711529 0) (-0.698879 2.80537e-18 0) (-0.697939 -0.0711529 0) (-0.69449 -0.143668 0) (-0.68782 -0.217717 0) (-0.677726 -0.292951 0) (-0.663949 -0.369027 0) (-0.646196 -0.445573 0) (-0.624164 -0.522177 0) (-0.597566 -0.59839 0) (-0.566152 -0.673742 0) (-0.529723 -0.747741 0) (-0.488146 -0.819889 0) (-0.441356 -0.889683 0) (-0.389363 -0.95662 0) (-0.332246 -1.0202 0) (-0.270153 -1.07994 0) (-0.203302 -1.13536 0) (-0.131974 -1.186 0) (-0.056515 -1.23143 0) (0.0226728 -1.27126 0) (0.105131 -1.3051 0) (0.190351 -1.33265 0) (0.277782 -1.35364 0) (0.366837 -1.36786 0) (0.456902 -1.37516 0) (0.547346 -1.37546 0) (0.63753 -1.36874 0) (0.726815 -1.35506 0) (0.814577 -1.33453 0) (0.900211 -1.30736 0) (0.983145 -1.27377 0) (1.06284 -1.23408 0) (1.13881 -1.18863 0) (1.21061 -1.13784 0) (1.27786 -1.08213 0) (1.34023 -1.02201 0) (1.39747 -0.957975 0) (1.4494 -0.890588 0) (1.49593 -0.820427 0) (1.53703 -0.748101 0) (1.57282 -0.674236 0) (1.60346 -0.599458 0) (1.62925 -0.524371 0) (1.65054 -0.449531 0) (1.66771 -0.37541 0) (1.68116 -0.302376 0) (1.69124 -0.23069 0) (1.69825 -0.160524 0) (1.70264 -0.0918115 0) (1.70014 -0.028813 0) (1.72312 0.0929298 0) (1.71868 0.162419 0) (1.71159 0.233383 0) (1.7014 0.305899 0) (1.68781 0.37981 0) (1.67048 0.454871 0) (1.64899 0.530729 0) (1.62295 0.606924 0) (1.59201 0.682903 0) (1.55585 0.758054 0) (1.51427 0.831736 0) (1.46716 0.903301 0) (1.41451 0.972116 0) (1.35641 1.03757 0) (1.29304 1.09909 0) (1.22465 1.15612 0) (1.15156 1.20816 0) (1.07418 1.25475 0) (0.992945 1.29546 0) (0.908368 1.32992 0) (0.821001 1.35782 0) (0.731435 1.37889 0) (0.640294 1.39295 0) (0.548224 1.39986 0) (0.455883 1.39957 0) (0.363931 1.39209 0) (0.273023 1.37751 0) (0.183791 1.35598 0) (0.0968428 1.32772 0) (0.0127473 1.29301 0) (-0.067971 1.25218 0) (-0.144839 1.20562 0) (-0.217443 1.15374 0) (-0.285427 1.097 0) (-0.348505 1.03587 0) (-0.406457 0.970865 0) (-0.459136 0.902487 0) (-0.506468 0.831261 0) (-0.548456 0.757715 0) (-0.585178 0.682374 0) (-0.616785 0.605754 0) (-0.643494 0.528357 0) (-0.665579 0.450663 0) (-0.683346 0.373116 0) (-0.697112 0.29612 0) (-0.707186 0.220035 0) (-0.713837 0.145184 0) (-0.717272 0.0719023 0) (-0.718207 2.58853e-18 0) (-0.717272 -0.0719023 0) (-0.713837 -0.145184 0) (-0.707186 -0.220035 0) (-0.697112 -0.29612 0) (-0.683346 -0.373116 0) (-0.665579 -0.450663 0) (-0.643494 -0.528357 0) (-0.616785 -0.605754 0) (-0.585178 -0.682374 0) (-0.548456 -0.757715 0) (-0.506468 -0.831261 0) (-0.459136 -0.902487 0) (-0.406457 -0.970865 0) (-0.348505 -1.03587 0) (-0.285427 -1.097 0) (-0.217443 -1.15374 0) (-0.144839 -1.20562 0) (-0.067971 -1.25218 0) (0.0127473 -1.29301 0) (0.0968428 -1.32772 0) (0.183791 -1.35598 0) (0.273023 -1.37751 0) (0.363931 -1.39209 0) (0.455883 -1.39957 0) (0.548224 -1.39986 0) (0.640294 -1.39295 0) (0.731435 -1.37889 0) (0.821001 -1.35782 0) (0.908368 -1.32992 0) (0.992945 -1.29546 0) (1.07418 -1.25475 0) (1.15156 -1.20816 0) (1.22465 -1.15612 0) (1.29304 -1.09909 0) (1.35641 -1.03757 0) (1.41451 -0.972116 0) (1.46716 -0.903301 0) (1.51427 -0.831736 0) (1.55585 -0.758054 0) (1.59201 -0.682903 0) (1.62295 -0.606924 0) (1.64899 -0.530729 0) (1.67048 -0.454871 0) (1.68781 -0.37981 0) (1.7014 -0.305899 0) (1.71159 -0.233383 0) (1.71868 -0.162419 0) (1.72312 -0.0929298 0) (1.72063 -0.0291795 0) (1.74417 0.0940807 0) (1.73967 0.164368 0) (1.73249 0.236151 0) (1.72218 0.309519 0) (1.70844 0.384325 0) (1.69092 0.460341 0) (1.66921 0.53723 0) (1.64291 0.614542 0) (1.61164 0.69173 0) (1.57508 0.768176 0) (1.53301 0.843225 0) (1.48529 0.916207 0) (1.4319 0.986463 0) (1.37293 1.05336 0) (1.30853 1.11628 0) (1.23897 1.17466 0) (1.16458 1.22797 0) (1.08575 1.27572 0) (1.00294 1.31747 0) (0.916692 1.35282 0) (0.827558 1.38145 0) (0.736152 1.40308 0) (0.643118 1.41752 0) (0.549123 1.42462 0) (0.454846 1.42434 0) (0.360971 1.41667 0) (0.268171 1.40172 0) (0.177102 1.37965 0) (0.088391 1.35067 0) (0.00262456 1.31508 0) (-0.0796559 1.27323 0) (-0.157963 1.22552 0) (-0.23187 1.17239 0) (-0.301013 1.1143 0) (-0.3651 1.05177 0) (-0.42391 0.98531 0) (-0.477296 0.915471 0) (-0.525193 0.842795 0) (-0.567612 0.767834 0) (-0.604647 0.691135 0) (-0.636467 0.613232 0) (-0.663309 0.534639 0) (-0.685465 0.45584 0) (-0.703262 0.377277 0) (-0.717033 0.299347 0) (-0.727099 0.222395 0) (-0.733737 0.146729 0) (-0.737163 0.0726657 0) (-0.738094 2.37169e-18 0) (-0.737163 -0.0726657 0) (-0.733737 -0.146729 0) (-0.727099 -0.222395 0) (-0.717033 -0.299347 0) (-0.703262 -0.377277 0) (-0.685465 -0.45584 0) (-0.663309 -0.534639 0) (-0.636467 -0.613232 0) (-0.604647 -0.691135 0) (-0.567612 -0.767834 0) (-0.525193 -0.842795 0) (-0.477296 -0.915471 0) (-0.42391 -0.98531 0) (-0.3651 -1.05177 0) (-0.301013 -1.1143 0) (-0.23187 -1.17239 0) (-0.157963 -1.22552 0) (-0.0796559 -1.27323 0) (0.00262456 -1.31508 0) (0.088391 -1.35067 0) (0.177102 -1.37965 0) (0.268171 -1.40172 0) (0.360971 -1.41667 0) (0.454846 -1.42434 0) (0.549123 -1.42462 0) (0.643118 -1.41752 0) (0.736152 -1.40308 0) (0.827558 -1.38145 0) (0.916692 -1.35282 0) (1.00294 -1.31747 0) (1.08575 -1.27572 0) (1.16458 -1.22797 0) (1.23897 -1.17466 0) (1.30853 -1.11628 0) (1.37293 -1.05336 0) (1.4319 -0.986463 0) (1.48529 -0.916207 0) (1.53301 -0.843225 0) (1.57508 -0.768176 0) (1.61164 -0.69173 0) (1.64291 -0.614542 0) (1.66921 -0.53723 0) (1.69092 -0.460341 0) (1.70844 -0.384325 0) (1.72218 -0.309519 0) (1.73249 -0.236151 0) (1.73967 -0.164368 0) (1.74417 -0.0940807 0) (1.74169 -0.0295567 0) (1.76579 0.0952657 0) (1.76123 0.166376 0) (1.75396 0.239001 0) (1.74351 0.313241 0) (1.72961 0.388961 0) (1.71188 0.465949 0) (1.68992 0.543882 0) (1.66334 0.622322 0) (1.63172 0.700728 0) (1.59474 0.778477 0) (1.55215 0.854902 0) (1.5038 0.929312 0) (1.44966 1.00102 0) (1.38978 1.06937 0) (1.32434 1.13372 0) (1.25358 1.19348 0) (1.17785 1.24807 0) (1.09754 1.297 0) (1.01314 1.3398 0) (0.925184 1.37606 0) (0.834248 1.40543 0) (0.740966 1.42763 0) (0.646001 1.44246 0) (0.550042 1.44976 0) (0.453792 1.44948 0) (0.357954 1.44163 0) (0.263226 1.4263 0) (0.170283 1.40367 0) (0.0797732 1.37396 0) (-0.00769818 1.33748 0) (-0.0915729 1.29459 0) (-0.171349 1.24571 0) (-0.246587 1.1913 0) (-0.316916 1.13185 0) (-0.382037 1.06788 0) (-0.441727 0.999962 0) (-0.495843 0.928642 0) (-0.544325 0.854498 0) (-0.587198 0.778106 0) (-0.624567 0.700032 0) (-0.656621 0.620831 0) (-0.683617 0.541026 0) (-0.705865 0.461108 0) (-0.72371 0.381515 0) (-0.7375 0.302636 0) (-0.747569 0.224801 0) (-0.754204 0.148304 0) (-0.757625 0.0734441 0) (-0.758555 2.37169e-18 0) (-0.757625 -0.0734441 0) (-0.754204 -0.148304 0) (-0.747569 -0.224801 0) (-0.7375 -0.302636 0) (-0.72371 -0.381515 0) (-0.705865 -0.461108 0) (-0.683617 -0.541026 0) (-0.656621 -0.620831 0) (-0.624567 -0.700032 0) (-0.587198 -0.778106 0) (-0.544325 -0.854498 0) (-0.495843 -0.928642 0) (-0.441727 -0.999962 0) (-0.382037 -1.06788 0) (-0.316916 -1.13185 0) (-0.246587 -1.1913 0) (-0.171349 -1.24571 0) (-0.0915729 -1.29459 0) (-0.00769818 -1.33748 0) (0.0797732 -1.37396 0) (0.170283 -1.40367 0) (0.263226 -1.4263 0) (0.357954 -1.44163 0) (0.453792 -1.44948 0) (0.550042 -1.44976 0) (0.646001 -1.44246 0) (0.740966 -1.42763 0) (0.834248 -1.40543 0) (0.925184 -1.37606 0) (1.01314 -1.3398 0) (1.09754 -1.297 0) (1.17785 -1.24807 0) (1.25358 -1.19348 0) (1.32434 -1.13372 0) (1.38978 -1.06937 0) (1.44966 -1.00102 0) (1.5038 -0.929312 0) (1.55215 -0.854902 0) (1.59474 -0.778477 0) (1.63172 -0.700728 0) (1.66334 -0.622322 0) (1.68992 -0.543882 0) (1.71188 -0.465949 0) (1.72961 -0.388961 0) (1.74351 -0.313241 0) (1.75396 -0.239001 0) (1.76123 -0.166376 0) (1.76579 -0.0952657 0) (1.76332 -0.0299451 0) (1.788 0.0964863 0) (1.78337 0.168443 0) (1.77599 0.241934 0) (1.76541 0.317069 0) (1.75132 0.393724 0) (1.73336 0.471701 0) (1.71115 0.550692 0) (1.68425 0.630271 0) (1.65226 0.709904 0) (1.61484 0.788966 0) (1.5717 0.866776 0) (1.5227 0.942627 0) (1.46778 1.01581 0) (1.40698 1.08563 0) (1.34046 1.15142 0) (1.26849 1.21256 0) (1.19139 1.26846 0) (1.10958 1.31859 0) (1.02355 1.36246 0) (0.933847 1.39964 0) (0.841074 1.42977 0) (0.745878 1.45255 0) (0.648945 1.46777 0) (0.550984 1.47527 0) (0.45272 1.475 0) (0.354882 1.46696 0) (0.258186 1.45125 0) (0.163332 1.42805 0) (0.0709871 1.39759 0) (-0.0182237 1.36021 0) (-0.103725 1.31626 0) (-0.185001 1.26619 0) (-0.261599 1.21048 0) (-0.33314 1.14965 0) (-0.39932 1.08424 0) (-0.459914 1.01483 0) (-0.514783 0.942007 0) (-0.563873 0.866377 0) (-0.60722 0.788536 0) (-0.644947 0.709073 0) (-0.677257 0.628558 0) (-0.704428 0.547528 0) (-0.726789 0.466474 0) (-0.7447 0.385836 0) (-0.758527 0.30599 0) (-0.768612 0.227256 0) (-0.775252 0.149911 0) (-0.778674 0.0742388 0) (-0.779603 2.37169e-18 0) (-0.778674 -0.0742388 0) (-0.775252 -0.149911 0) (-0.768612 -0.227256 0) (-0.758527 -0.30599 0) (-0.7447 -0.385836 0) (-0.726789 -0.466474 0) (-0.704428 -0.547528 0) (-0.677257 -0.628558 0) (-0.644947 -0.709073 0) (-0.60722 -0.788536 0) (-0.563873 -0.866377 0) (-0.514783 -0.942007 0) (-0.459914 -1.01483 0) (-0.39932 -1.08424 0) (-0.33314 -1.14965 0) (-0.261599 -1.21048 0) (-0.185001 -1.26619 0) (-0.103725 -1.31626 0) (-0.0182237 -1.36021 0) (0.0709871 -1.39759 0) (0.163332 -1.42805 0) (0.258186 -1.45125 0) (0.354882 -1.46696 0) (0.45272 -1.475 0) (0.550984 -1.47527 0) (0.648945 -1.46777 0) (0.745878 -1.45255 0) (0.841074 -1.42977 0) (0.933847 -1.39964 0) (1.02355 -1.36246 0) (1.10958 -1.31859 0) (1.19139 -1.26846 0) (1.26849 -1.21256 0) (1.34046 -1.15142 0) (1.40698 -1.08563 0) (1.46778 -1.01581 0) (1.5227 -0.942627 0) (1.5717 -0.866776 0) (1.61484 -0.788966 0) (1.65226 -0.709904 0) (1.68425 -0.630271 0) (1.71115 -0.550692 0) (1.73336 -0.471701 0) (1.75132 -0.393724 0) (1.76541 -0.317069 0) (1.77599 -0.241934 0) (1.78337 -0.168443 0) (1.788 -0.0964863 0) (1.78555 -0.030345 0) (1.81081 0.0977441 0) (1.80611 0.170573 0) (1.79862 0.244955 0) (1.78787 0.321009 0) (1.77358 0.398621 0) (1.75539 0.477605 0) (1.73289 0.557669 0) (1.70565 0.638399 0) (1.67327 0.719268 0) (1.63537 0.799651 0) (1.59168 0.878857 0) (1.542 0.956159 0) (1.48627 1.03082 0) (1.42452 1.10213 0) (1.35691 1.16938 0) (1.28369 1.23193 0) (1.2052 1.28916 0) (1.12186 1.3405 0) (1.03416 1.38545 0) (0.942684 1.42357 0) (0.848037 1.45447 0) (0.75089 1.47785 0) (0.651949 1.49347 0) (0.551947 1.50118 0) (0.451631 1.50091 0) (0.351751 1.49267 0) (0.25305 1.47658 0) (0.156247 1.45279 0) (0.0620302 1.42158 0) (-0.0289548 1.38327 0) (-0.116116 1.33825 0) (-0.198922 1.28698 0) (-0.27691 1.22995 0) (-0.34969 1.16771 0) (-0.416954 1.10083 0) (-0.478476 1.02991 0) (-0.534121 0.955572 0) (-0.583843 0.878438 0) (-0.627688 0.799132 0) (-0.665794 0.718264 0) (-0.698385 0.636421 0) (-0.725753 0.554149 0) (-0.748248 0.471945 0) (-0.766245 0.390244 0) (-0.780124 0.309415 0) (-0.790239 0.229764 0) (-0.796895 0.151554 0) (-0.800323 0.0750511 0) (-0.801254 2.37169e-18 0) (-0.800323 -0.0750511 0) (-0.796895 -0.151554 0) (-0.790239 -0.229764 0) (-0.780124 -0.309415 0) (-0.766245 -0.390244 0) (-0.748248 -0.471945 0) (-0.725753 -0.554149 0) (-0.698385 -0.636421 0) (-0.665794 -0.718264 0) (-0.627688 -0.799132 0) (-0.583843 -0.878438 0) (-0.534121 -0.955572 0) (-0.478476 -1.02991 0) (-0.416954 -1.10083 0) (-0.34969 -1.16771 0) (-0.27691 -1.22995 0) (-0.198922 -1.28698 0) (-0.116116 -1.33825 0) (-0.0289548 -1.38327 0) (0.0620302 -1.42158 0) (0.156247 -1.45279 0) (0.25305 -1.47658 0) (0.351751 -1.49267 0) (0.451631 -1.50091 0) (0.551947 -1.50118 0) (0.651949 -1.49347 0) (0.75089 -1.47785 0) (0.848037 -1.45447 0) (0.942684 -1.42357 0) (1.03416 -1.38545 0) (1.12186 -1.3405 0) (1.2052 -1.28916 0) (1.28369 -1.23193 0) (1.35691 -1.16938 0) (1.42452 -1.10213 0) (1.48627 -1.03082 0) (1.542 -0.956159 0) (1.59168 -0.878857 0) (1.63537 -0.799651 0) (1.67327 -0.719268 0) (1.70565 -0.638399 0) (1.73289 -0.557669 0) (1.75539 -0.477605 0) (1.77358 -0.398621 0) (1.78787 -0.321009 0) (1.79862 -0.244955 0) (1.80611 -0.170573 0) (1.81081 -0.0977441 0) (1.80838 -0.0307571 0) (1.83423 0.0990406 0) (1.82945 0.172768 0) (1.82184 0.248068 0) (1.81092 0.325065 0) (1.79642 0.403656 0) (1.77796 0.483668 0) (1.75515 0.56482 0) (1.72756 0.646715 0) (1.69475 0.72883 0) (1.65636 0.810543 0) (1.61208 0.891154 0) (1.5617 0.969918 0) (1.50514 1.04608 0) (1.44242 1.11889 0) (1.37369 1.18762 0) (1.2992 1.25159 0) (1.21928 1.31016 0) (1.13438 1.36273 0) (1.04499 1.40879 0) (0.951697 1.44786 0) (0.85514 1.47954 0) (0.756004 1.50352 0) (0.655017 1.51955 0) (0.552933 1.52747 0) (0.450524 1.52721 0) (0.348563 1.51878 0) (0.247816 1.50229 0) (0.149025 1.47791 0) (0.0529002 1.44593 0) (-0.0398944 1.40668 0) (-0.128749 1.36057 0) (-0.213117 1.30807 0) (-0.292523 1.2497 0) (-0.36657 1.18604 0) (-0.434944 1.11767 0) (-0.49742 1.04522 0) (-0.553865 0.969346 0) (-0.604241 0.89069 0) (-0.648608 0.809903 0) (-0.687118 0.727614 0) (-0.720012 0.644426 0) (-0.747602 0.560897 0) (-0.770253 0.477527 0) (-0.788357 0.394746 0) (-0.802307 0.312916 0) (-0.812465 0.23233 0) (-0.819146 0.153235 0) (-0.822587 0.0758823 0) (-0.823521 1.72117e-18 0) (-0.822587 -0.0758823 0) (-0.819146 -0.153235 0) (-0.812465 -0.23233 0) (-0.802307 -0.312916 0) (-0.788357 -0.394746 0) (-0.770253 -0.477527 0) (-0.747602 -0.560897 0) (-0.720012 -0.644426 0) (-0.687118 -0.727614 0) (-0.648608 -0.809903 0) (-0.604241 -0.89069 0) (-0.553865 -0.969346 0) (-0.49742 -1.04522 0) (-0.434944 -1.11767 0) (-0.36657 -1.18604 0) (-0.292523 -1.2497 0) (-0.213117 -1.30807 0) (-0.128749 -1.36057 0) (-0.0398944 -1.40668 0) (0.0529002 -1.44593 0) (0.149025 -1.47791 0) (0.247816 -1.50229 0) (0.348563 -1.51878 0) (0.450524 -1.52721 0) (0.552933 -1.52747 0) (0.655017 -1.51955 0) (0.756004 -1.50352 0) (0.85514 -1.47954 0) (0.951697 -1.44786 0) (1.04499 -1.40879 0) (1.13438 -1.36273 0) (1.21928 -1.31016 0) (1.2992 -1.25159 0) (1.37369 -1.18762 0) (1.44242 -1.11889 0) (1.50514 -1.04608 0) (1.5617 -0.969918 0) (1.61208 -0.891154 0) (1.65636 -0.810543 0) (1.69475 -0.72883 0) (1.72756 -0.646715 0) (1.75515 -0.56482 0) (1.77796 -0.483668 0) (1.79642 -0.403656 0) (1.81092 -0.325065 0) (1.82184 -0.248068 0) (1.82945 -0.172768 0) (1.83423 -0.0990406 0) (1.83182 -0.0311816 0) (1.85828 0.100378 0) (1.85341 0.175032 0) (1.84566 0.251276 0) (1.83457 0.329243 0) (1.81983 0.408837 0) (1.8011 0.489896 0) (1.77795 0.572155 0) (1.74997 0.655226 0) (1.71672 0.7386 0) (1.67781 0.821652 0) (1.63291 0.903677 0) (1.58181 0.983914 0) (1.52439 1.06158 0) (1.46068 1.13591 0) (1.3908 1.20613 0) (1.31501 1.27154 0) (1.23364 1.33147 0) (1.14714 1.3853 0) (1.05603 1.43248 0) (0.960889 1.47252 0) (0.862384 1.505 0) (0.761221 1.52959 0) (0.658147 1.54603 0) (0.553941 1.55417 0) (0.449398 1.55391 0) (0.345316 1.54528 0) (0.242483 1.52839 0) (0.141665 1.50342 0) (0.0435945 1.47065 0) (-0.0510456 1.43045 0) (-0.141627 1.38322 0) (-0.227589 1.32948 0) (-0.308443 1.26975 0) (-0.383785 1.20464 0) (-0.453296 1.13476 0) (-0.516751 1.06077 0) (-0.57402 0.983336 0) (-0.625075 0.903141 0) (-0.669988 0.820855 0) (-0.708927 0.73713 0) (-0.742149 0.652583 0) (-0.769984 0.567781 0) (-0.792815 0.483227 0) (-0.811048 0.399348 0) (-0.825085 0.316498 0) (-0.835303 0.234957 0) (-0.84202 0.154956 0) (-0.84548 0.076734 0) (-0.84642 1.61275e-18 0) (-0.84548 -0.076734 0) (-0.84202 -0.154956 0) (-0.835303 -0.234957 0) (-0.825085 -0.316498 0) (-0.811048 -0.399348 0) (-0.792815 -0.483227 0) (-0.769984 -0.567781 0) (-0.742149 -0.652583 0) (-0.708927 -0.73713 0) (-0.669988 -0.820855 0) (-0.625075 -0.903141 0) (-0.57402 -0.983336 0) (-0.516751 -1.06077 0) (-0.453296 -1.13476 0) (-0.383785 -1.20464 0) (-0.308443 -1.26975 0) (-0.227589 -1.32948 0) (-0.141627 -1.38322 0) (-0.0510456 -1.43045 0) (0.0435945 -1.47065 0) (0.141665 -1.50342 0) (0.242483 -1.52839 0) (0.345316 -1.54528 0) (0.449398 -1.55391 0) (0.553941 -1.55417 0) (0.658147 -1.54603 0) (0.761221 -1.52959 0) (0.862384 -1.505 0) (0.960889 -1.47252 0) (1.05603 -1.43248 0) (1.14714 -1.3853 0) (1.23364 -1.33147 0) (1.31501 -1.27154 0) (1.3908 -1.20613 0) (1.46068 -1.13591 0) (1.52439 -1.06158 0) (1.58181 -0.983914 0) (1.63291 -0.903677 0) (1.67781 -0.821652 0) (1.71672 -0.7386 0) (1.74997 -0.655226 0) (1.77795 -0.572155 0) (1.8011 -0.489896 0) (1.81983 -0.408837 0) (1.83457 -0.329243 0) (1.84566 -0.251276 0) (1.85341 -0.175032 0) (1.85828 -0.100378 0) (1.85588 -0.0316193 0) (1.88296 0.101757 0) (1.878 0.177367 0) (1.87011 0.254584 0) (1.85882 0.333547 0) (1.84384 0.414169 0) (1.8248 0.496298 0) (1.8013 0.579681 0) (1.77291 0.663945 0) (1.73919 0.748587 0) (1.69973 0.832988 0) (1.65419 0.916436 0) (1.60233 0.998155 0) (1.54403 1.07734 0) (1.4793 1.1532 0) (1.40825 1.22493 0) (1.33113 1.2918 0) (1.24829 1.35311 0) (1.16016 1.40821 0) (1.06728 1.45653 0) (0.970262 1.49755 0) (0.869772 1.53084 0) (0.766542 1.55605 0) (0.661341 1.57292 0) (0.554972 1.58127 0) (0.448254 1.58102 0) (0.342008 1.57219 0) (0.237049 1.55489 0) (0.134166 1.52931 0) (0.0341106 1.49575 0) (-0.0624113 1.45457 0) (-0.154754 1.40622 0) (-0.242342 1.35121 0) (-0.324676 1.29011 0) (-0.401341 1.22352 0) (-0.472016 1.15211 0) (-0.536475 1.07656 0) (-0.594594 0.997549 0) (-0.646353 0.915799 0) (-0.691837 0.831998 0) (-0.731229 0.746821 0) (-0.764805 0.660899 0) (-0.792911 0.574807 0) (-0.815945 0.489052 0) (-0.834328 0.404058 0) (-0.848474 0.320167 0) (-0.858765 0.237649 0) (-0.86553 0.156722 0) (-0.869015 0.0776077 0) (-0.869963 5.28549e-19 0) (-0.869015 -0.0776077 0) (-0.86553 -0.156722 0) (-0.858765 -0.237649 0) (-0.848474 -0.320167 0) (-0.834328 -0.404058 0) (-0.815945 -0.489052 0) (-0.792911 -0.574807 0) (-0.764805 -0.660899 0) (-0.731229 -0.746821 0) (-0.691837 -0.831998 0) (-0.646353 -0.915799 0) (-0.594594 -0.997549 0) (-0.536475 -1.07656 0) (-0.472016 -1.15211 0) (-0.401341 -1.22352 0) (-0.324676 -1.29011 0) (-0.242342 -1.35121 0) (-0.154754 -1.40622 0) (-0.0624113 -1.45457 0) (0.0341106 -1.49575 0) (0.134166 -1.52931 0) (0.237049 -1.55489 0) (0.342008 -1.57219 0) (0.448254 -1.58102 0) (0.554972 -1.58127 0) (0.661341 -1.57292 0) (0.766542 -1.55605 0) (0.869772 -1.53084 0) (0.970262 -1.49755 0) (1.06728 -1.45653 0) (1.16016 -1.40821 0) (1.24829 -1.35311 0) (1.33113 -1.2918 0) (1.40825 -1.22493 0) (1.4793 -1.1532 0) (1.54403 -1.07734 0) (1.60233 -0.998155 0) (1.65419 -0.916436 0) (1.69973 -0.832988 0) (1.73919 -0.748587 0) (1.77291 -0.663945 0) (1.8013 -0.579681 0) (1.8248 -0.496298 0) (1.84384 -0.414169 0) (1.85882 -0.333547 0) (1.87011 -0.254584 0) (1.878 -0.177367 0) (1.88296 -0.101757 0) (1.88058 -0.0320707 0) (1.90828 0.103179 0) (1.90322 0.179777 0) (1.89518 0.257996 0) (1.88369 0.337983 0) (1.86844 0.419659 0) (1.84908 0.502881 0) (1.82521 0.587408 0) (1.79639 0.672878 0) (1.76216 0.758801 0) (1.72212 0.844561 0) (1.67591 0.929442 0) (1.62328 1.01265 0) (1.56407 1.09337 0) (1.49829 1.17077 0) (1.42605 1.24403 0) (1.34757 1.31238 0) (1.26321 1.37508 0) (1.17343 1.43147 0) (1.07876 1.48094 0) (0.979818 1.52296 0) (0.877306 1.55708 0) (0.771969 1.58292 0) (0.664601 1.60022 0) (0.556026 1.60879 0) (0.447091 1.60855 0) (0.338641 1.59951 0) (0.231514 1.58179 0) (0.126524 1.5556 0) (0.0244459 1.52122 0) (-0.0739948 1.47906 0) (-0.168134 1.42957 0) (-0.257381 1.37327 0) (-0.341225 1.31077 0) (-0.419242 1.2427 0) (-0.491109 1.16974 0) (-0.556598 1.09259 0) (-0.615593 1.012 0) (-0.668081 0.928671 0) (-0.714162 0.843341 0) (-0.754035 0.756695 0) (-0.78799 0.669382 0) (-0.816393 0.581985 0) (-0.839656 0.495011 0) (-0.858211 0.40888 0) (-0.872484 0.323928 0) (-0.882866 0.240412 0) (-0.88969 0.158535 0) (-0.893207 0.078505 0) (-0.894165 -2.61564e-18 0) (-0.893207 -0.078505 0) (-0.88969 -0.158535 0) (-0.882866 -0.240412 0) (-0.872484 -0.323928 0) (-0.858211 -0.40888 0) (-0.839656 -0.495011 0) (-0.816393 -0.581985 0) (-0.78799 -0.669382 0) (-0.754035 -0.756695 0) (-0.714162 -0.843341 0) (-0.668081 -0.928671 0) (-0.615593 -1.012 0) (-0.556598 -1.09259 0) (-0.491109 -1.16974 0) (-0.419242 -1.2427 0) (-0.341225 -1.31077 0) (-0.257381 -1.37327 0) (-0.168134 -1.42957 0) (-0.0739948 -1.47906 0) (0.0244459 -1.52122 0) (0.126524 -1.5556 0) (0.231514 -1.58179 0) (0.338641 -1.59951 0) (0.447091 -1.60855 0) (0.556026 -1.60879 0) (0.664601 -1.60022 0) (0.771969 -1.58292 0) (0.877306 -1.55708 0) (0.979818 -1.52296 0) (1.07876 -1.48094 0) (1.17343 -1.43147 0) (1.26321 -1.37508 0) (1.34757 -1.31238 0) (1.42605 -1.24403 0) (1.49829 -1.17077 0) (1.56407 -1.09337 0) (1.62328 -1.01265 0) (1.67591 -0.929442 0) (1.72212 -0.844561 0) (1.76216 -0.758801 0) (1.79639 -0.672878 0) (1.82521 -0.587408 0) (1.84908 -0.502881 0) (1.86844 -0.419659 0) (1.88369 -0.337983 0) (1.89518 -0.257996 0) (1.90322 -0.179777 0) (1.90828 -0.103179 0) (1.90592 -0.0325362 0) (1.93425 0.104648 0) (1.9291 0.182263 0) (1.92089 0.261515 0) (1.90918 0.342556 0) (1.89366 0.425314 0) (1.87396 0.509652 0) (1.84969 0.595343 0) (1.8204 0.682037 0) (1.78565 0.769254 0) (1.74501 0.856383 0) (1.6981 0.942705 0) (1.64466 1.02742 0) (1.58452 1.10968 0) (1.51766 1.18864 0) (1.44419 1.26344 0) (1.36433 1.33328 0) (1.27843 1.3974 0) (1.18696 1.45509 0) (1.09045 1.50574 0) (0.989561 1.54877 0) (0.884988 1.58372 0) (0.777504 1.61021 0) (0.667926 1.62795 0) (0.557104 1.63674 0) (0.445908 1.63651 0) (0.335211 1.62726 0) (0.225875 1.60911 0) (0.118738 1.58229 0) (0.0145977 1.54709 0) (-0.0857992 1.50393 0) (-0.181771 1.45327 0) (-0.27271 1.39568 0) (-0.358095 1.33175 0) (-0.437495 1.26217 0) (-0.51058 1.18764 0) (-0.577128 1.10889 0) (-0.637024 1.02668 0) (-0.690269 0.941769 0) (-0.736973 0.854891 0) (-0.777353 0.766763 0) (-0.811715 0.678042 0) (-0.840441 0.589322 0) (-0.863957 0.501111 0) (-0.882708 0.413824 0) (-0.897129 0.327789 0) (-0.907617 0.24325 0) (-0.914512 0.160399 0) (-0.91807 0.0794277 0) (-0.91904 -4.67562e-18 0) (-0.91807 -0.0794277 0) (-0.914512 -0.160399 0) (-0.907617 -0.24325 0) (-0.897129 -0.327789 0) (-0.882708 -0.413824 0) (-0.863957 -0.501111 0) (-0.840441 -0.589322 0) (-0.811715 -0.678042 0) (-0.777353 -0.766763 0) (-0.736973 -0.854891 0) (-0.690269 -0.941769 0) (-0.637024 -1.02668 0) (-0.577128 -1.10889 0) (-0.51058 -1.18764 0) (-0.437495 -1.26217 0) (-0.358095 -1.33175 0) (-0.27271 -1.39568 0) (-0.181771 -1.45327 0) (-0.0857992 -1.50393 0) (0.0145977 -1.54709 0) (0.118738 -1.58229 0) (0.225875 -1.60911 0) (0.335211 -1.62726 0) (0.445908 -1.63651 0) (0.557104 -1.63674 0) (0.667926 -1.62795 0) (0.777504 -1.61021 0) (0.884988 -1.58372 0) (0.989561 -1.54877 0) (1.09045 -1.50574 0) (1.18696 -1.45509 0) (1.27843 -1.3974 0) (1.36433 -1.33328 0) (1.44419 -1.26344 0) (1.51766 -1.18864 0) (1.58452 -1.10968 0) (1.64466 -1.02742 0) (1.6981 -0.942705 0) (1.74501 -0.856383 0) (1.78565 -0.769254 0) (1.8204 -0.682037 0) (1.84969 -0.595343 0) (1.87396 -0.509652 0) (1.89366 -0.425314 0) (1.90918 -0.342556 0) (1.92089 -0.261515 0) (1.9291 -0.182263 0) (1.93425 -0.104648 0) (1.93193 -0.0330165 0) (1.96096 0.106164 0) (1.95569 0.184831 0) (1.94732 0.26515 0) (1.93538 0.347278 0) (1.91956 0.431147 0) (1.8995 0.51663 0) (1.87481 0.603511 0) (1.84504 0.691451 0) (1.80973 0.779982 0) (1.76845 0.868498 0) (1.72082 0.956279 0) (1.66654 1.04251 0) (1.60544 1.12634 0) (1.53748 1.20687 0) (1.46275 1.28323 0) (1.38147 1.35459 0) (1.294 1.42014 0) (1.20079 1.47917 0) (1.10242 1.53101 0) (0.999523 1.57507 0) (0.892842 1.61088 0) (0.783164 1.63802 0) (0.671328 1.65621 0) (0.558209 1.66523 0) (0.444702 1.665 0) (0.331708 1.65554 0) (0.220113 1.63696 0) (0.11078 1.6095 0) (0.00453196 1.57346 0) (-0.0978653 1.52927 0) (-0.195711 1.47743 0) (-0.288382 1.41851 0) (-0.375344 1.35314 0) (-0.45616 1.28203 0) (-0.530497 1.2059 0) (-0.598133 1.12552 0) (-0.658961 1.04168 0) (-0.71299 0.955146 0) (-0.760345 0.866699 0) (-0.801258 0.777064 0) (-0.836054 0.686914 0) (-0.865128 0.596849 0) (-0.888922 0.507375 0) (-0.90789 0.418907 0) (-0.922477 0.331762 0) (-0.933088 0.246174 0) (-0.940066 0.16232 0) (-0.94367 0.080379 0) (-0.944655 -4.78404e-18 0) (-0.94367 -0.080379 0) (-0.940066 -0.16232 0) (-0.933088 -0.246174 0) (-0.922477 -0.331762 0) (-0.90789 -0.418907 0) (-0.888922 -0.507375 0) (-0.865128 -0.596849 0) (-0.836054 -0.686914 0) (-0.801258 -0.777064 0) (-0.760345 -0.866699 0) (-0.71299 -0.955146 0) (-0.658961 -1.04168 0) (-0.598133 -1.12552 0) (-0.530497 -1.2059 0) (-0.45616 -1.28203 0) (-0.375344 -1.35314 0) (-0.288382 -1.41851 0) (-0.195711 -1.47743 0) (-0.0978653 -1.52927 0) (0.00453196 -1.57346 0) (0.11078 -1.6095 0) (0.220113 -1.63696 0) (0.331708 -1.65554 0) (0.444702 -1.665 0) (0.558209 -1.66523 0) (0.671328 -1.65621 0) (0.783164 -1.63802 0) (0.892842 -1.61088 0) (0.999523 -1.57507 0) (1.10242 -1.53101 0) (1.20079 -1.47917 0) (1.294 -1.42014 0) (1.38147 -1.35459 0) (1.46275 -1.28323 0) (1.53748 -1.20687 0) (1.60544 -1.12634 0) (1.66654 -1.04251 0) (1.72082 -0.956279 0) (1.76845 -0.868498 0) (1.80973 -0.779982 0) (1.84504 -0.691451 0) (1.87481 -0.603511 0) (1.8995 -0.51663 0) (1.91956 -0.431147 0) (1.93538 -0.347278 0) (1.94732 -0.26515 0) (1.95569 -0.184831 0) (1.96096 -0.106164 0) (1.95866 -0.0335112 0) (1.98835 0.107729 0) (1.98296 0.187483 0) (1.97441 0.268901 0) (1.96222 0.352147 0) (1.94609 0.437156 0) (1.92566 0.523812 0) (1.90052 0.611905 0) (1.87024 0.70111 0) (1.83435 0.790968 0) (1.79241 0.880883 0) (1.74402 0.970133 0) (1.68888 1.0579 0) (1.62678 1.14329 0) (1.55769 1.22541 0) (1.48166 1.30335 0) (1.39894 1.37624 0) (1.30986 1.44325 0) (1.21489 1.50362 0) (1.11461 1.55667 0) (1.00968 1.60178 0) (0.90085 1.63846 0) (0.788935 1.66627 0) (0.674797 1.6849 0) (0.559337 1.69416 0) (0.443476 1.69394 0) (0.32814 1.68426 0) (0.214244 1.66525 0) (0.102674 1.63713 0) (-0.00572358 1.60024 0) (-0.11016 1.55502 0) (-0.209916 1.50197 0) (-0.304353 1.4417 0) (-0.392926 1.37487 0) (-0.47519 1.3022 0) (-0.550808 1.22445 0) (-0.61956 1.14243 0) (-0.681346 1.05693 0) (-0.736188 0.968767 0) (-0.784222 0.878734 0) (-0.825698 0.787577 0) (-0.860955 0.695981 0) (-0.890406 0.604551 0) (-0.914503 0.513797 0) (-0.933714 0.424126 0) (-0.948489 0.335846 0) (-0.959239 0.249182 0) (-0.966312 0.164298 0) (-0.969971 0.0813591 0) (-0.970973 -2.50722e-18 0) (-0.969971 -0.0813591 0) (-0.966312 -0.164298 0) (-0.959239 -0.249182 0) (-0.948489 -0.335846 0) (-0.933714 -0.424126 0) (-0.914503 -0.513797 0) (-0.890406 -0.604551 0) (-0.860955 -0.695981 0) (-0.825698 -0.787577 0) (-0.784222 -0.878734 0) (-0.736188 -0.968767 0) (-0.681346 -1.05693 0) (-0.61956 -1.14243 0) (-0.550808 -1.22445 0) (-0.47519 -1.3022 0) (-0.392926 -1.37487 0) (-0.304353 -1.4417 0) (-0.209916 -1.50197 0) (-0.11016 -1.55502 0) (-0.00572358 -1.60024 0) (0.102674 -1.63713 0) (0.214244 -1.66525 0) (0.32814 -1.68426 0) (0.443476 -1.69394 0) (0.559337 -1.69416 0) (0.674797 -1.6849 0) (0.788935 -1.66627 0) (0.90085 -1.63846 0) (1.00968 -1.60178 0) (1.11461 -1.55667 0) (1.21489 -1.50362 0) (1.30986 -1.44325 0) (1.39894 -1.37624 0) (1.48166 -1.30335 0) (1.55769 -1.22541 0) (1.62678 -1.14329 0) (1.68888 -1.0579 0) (1.74402 -0.970133 0) (1.79241 -0.880883 0) (1.83435 -0.790968 0) (1.87024 -0.70111 0) (1.90052 -0.611905 0) (1.92566 -0.523812 0) (1.94609 -0.437156 0) (1.96222 -0.352147 0) (1.97441 -0.268901 0) (1.98296 -0.187483 0) (1.98835 -0.107729 0) (1.98608 -0.0340226 0) (2.01643 0.109346 0) (2.01092 0.190221 0) (2.00218 0.272773 0) (1.98973 0.357168 0) (1.97327 0.44335 0) (1.95244 0.531205 0) (1.92684 0.620533 0) (1.89602 0.711023 0) (1.85952 0.802225 0) (1.81688 0.89355 0) (1.76771 0.984278 0) (1.71167 1.07358 0) (1.64855 1.16056 0) (1.57829 1.24428 0) (1.50095 1.32381 0) (1.41675 1.39825 0) (1.32602 1.46673 0) (1.22926 1.52846 0) (1.12703 1.58273 0) (1.02003 1.62891 0) (0.909013 1.66646 0) (0.794819 1.69495 0) (0.678336 1.71405 0) (0.560491 1.72355 0) (0.44223 1.72334 0) (0.324508 1.71343 0) (0.208266 1.69397 0) (0.0944159 1.66519 0) (-0.0161718 1.62744 0) (-0.122687 1.58116 0) (-0.22439 1.52689 0) (-0.32063 1.46526 0) (-0.410846 1.39694 0) (-0.494588 1.3227 0) (-0.571517 1.24331 0) (-0.641415 1.15962 0) (-0.704189 1.07245 0) (-0.759871 0.982639 0) (-0.808614 0.891005 0) (-0.850681 0.79831 0) (-0.886429 0.705251 0) (-0.916285 0.61244 0) (-0.940714 0.520384 0) (-0.960192 0.429487 0) (-0.975176 0.340048 0) (-0.986083 0.25228 0) (-0.993265 0.166336 0) (-0.996986 0.0823698 0) (-0.998008 2.03288e-19 0) (-0.996986 -0.0823698 0) (-0.993265 -0.166336 0) (-0.986083 -0.25228 0) (-0.975176 -0.340048 0) (-0.960192 -0.429487 0) (-0.940714 -0.520384 0) (-0.916285 -0.61244 0) (-0.886429 -0.705251 0) (-0.850681 -0.79831 0) (-0.808614 -0.891005 0) (-0.759871 -0.982639 0) (-0.704189 -1.07245 0) (-0.641415 -1.15962 0) (-0.571517 -1.24331 0) (-0.494588 -1.3227 0) (-0.410846 -1.39694 0) (-0.32063 -1.46526 0) (-0.22439 -1.52689 0) (-0.122687 -1.58116 0) (-0.0161718 -1.62744 0) (0.0944159 -1.66519 0) (0.208266 -1.69397 0) (0.324508 -1.71343 0) (0.44223 -1.72334 0) (0.560491 -1.72355 0) (0.678336 -1.71405 0) (0.794819 -1.69495 0) (0.909013 -1.66646 0) (1.02003 -1.62891 0) (1.12703 -1.58273 0) (1.22926 -1.52846 0) (1.32602 -1.46673 0) (1.41675 -1.39825 0) (1.50095 -1.32381 0) (1.57829 -1.24428 0) (1.64855 -1.16056 0) (1.71167 -1.07358 0) (1.76771 -0.984278 0) (1.81688 -0.89355 0) (1.85952 -0.802225 0) (1.89602 -0.711023 0) (1.92684 -0.620533 0) (1.95244 -0.531205 0) (1.97327 -0.44335 0) (1.98973 -0.357168 0) (2.00218 -0.272773 0) (2.01092 -0.190221 0) (2.01643 -0.109346 0) (2.01419 -0.0345509 0) (2.04521 0.111016 0) (2.03957 0.193048 0) (2.03064 0.276768 0) (2.01792 0.362348 0) (2.00111 0.449733 0) (1.97987 0.538816 0) (1.95377 0.629406 0) (1.92239 0.7212 0) (1.88524 0.813762 0) (1.84189 0.90651 0) (1.79189 0.998727 0) (1.73493 1.08958 0) (1.67076 1.17815 0) (1.5993 1.26348 0) (1.52061 1.34462 0) (1.4349 1.42061 0) (1.3425 1.49058 0) (1.2439 1.5537 0) (1.1397 1.60921 0) (1.03058 1.65647 0) (0.917333 1.69491 0) (0.800818 1.72409 0) (0.681946 1.74366 0) (0.561669 1.75339 0) (0.440964 1.75319 0) (0.320811 1.74307 0) (0.202178 1.72315 0) (0.0860042 1.6937 0) (-0.0268155 1.65506 0) (-0.135449 1.60771 0) (-0.239138 1.55221 0) (-0.337215 1.48919 0) (-0.429109 1.41937 0) (-0.514362 1.34353 0) (-0.592632 1.26249 0) (-0.663706 1.17711 0) (-0.727497 1.08825 0) (-0.78405 0.996776 0) (-0.83353 0.903524 0) (-0.876219 0.809275 0) (-0.912488 0.714737 0) (-0.942778 0.620524 0) (-0.967566 0.527146 0) (-0.987336 0.434998 0) (-1.00255 0.344374 0) (-1.01363 0.255474 0) (-1.02094 0.16844 0) (-1.02473 0.0834131 0) (-1.02577 2.09115e-17 0) (-1.02473 -0.0834131 0) (-1.02094 -0.16844 0) (-1.01363 -0.255474 0) (-1.00255 -0.344374 0) (-0.987336 -0.434998 0) (-0.967566 -0.527146 0) (-0.942778 -0.620524 0) (-0.912488 -0.714737 0) (-0.876219 -0.809275 0) (-0.83353 -0.903524 0) (-0.78405 -0.996776 0) (-0.727497 -1.08825 0) (-0.663706 -1.17711 0) (-0.592632 -1.26249 0) (-0.514362 -1.34353 0) (-0.429109 -1.41937 0) (-0.337215 -1.48919 0) (-0.239138 -1.55221 0) (-0.135449 -1.60771 0) (-0.0268155 -1.65506 0) (0.0860042 -1.6937 0) (0.202178 -1.72315 0) (0.320811 -1.74307 0) (0.440964 -1.75319 0) (0.561669 -1.75339 0) (0.681946 -1.74366 0) (0.800818 -1.72409 0) (0.917333 -1.69491 0) (1.03058 -1.65647 0) (1.1397 -1.60921 0) (1.2439 -1.5537 0) (1.3425 -1.49058 0) (1.4349 -1.42061 0) (1.52061 -1.34462 0) (1.5993 -1.26348 0) (1.67076 -1.17815 0) (1.73493 -1.08958 0) (1.79189 -0.998727 0) (1.84189 -0.90651 0) (1.88524 -0.813762 0) (1.92239 -0.7212 0) (1.95377 -0.629406 0) (1.97987 -0.538816 0) (2.00111 -0.449733 0) (2.01792 -0.362348 0) (2.03064 -0.276768 0) (2.03957 -0.193048 0) (2.04521 -0.111016 0) (2.04301 -0.0350966 0) (2.0747 0.112741 0) (2.06893 0.195966 0) (2.05979 0.280892 0) (2.04678 0.367692 0) (2.02962 0.456313 0) (2.00793 0.546654 0) (1.98133 0.638531 0) (1.94935 0.731652 0) (1.91154 0.825591 0) (1.86743 0.919776 0) (1.81658 1.01349 0) (1.75866 1.1059 0) (1.69341 1.19607 0) (1.62072 1.28303 0) (1.54065 1.36578 0) (1.45339 1.44336 0) (1.35929 1.51483 0) (1.25882 1.57934 0) (1.1526 1.63611 0) (1.04133 1.68447 0) (0.925812 1.72382 0) (0.806932 1.75369 0) (0.685626 1.77373 0) (0.562873 1.78371 0) (0.439677 1.78352 0) (0.317046 1.77317 0) (0.195977 1.75279 0) (0.0774365 1.72265 0) (-0.0376578 1.68312 0) (-0.14845 1.63469 0) (-0.254164 1.57792 0) (-0.354114 1.5135 0) (-0.44772 1.44216 0) (-0.534516 1.3647 0) (-0.61416 1.28199 0) (-0.68644 1.1949 0) (-0.751279 1.10434 0) (-0.808731 1.01119 0) (-0.85898 0.916301 0) (-0.902321 0.820482 0) (-0.939142 0.724447 0) (-0.969896 0.628815 0) (-0.995071 0.534092 0) (-1.01516 0.44067 0) (-1.03063 0.348831 0) (-1.0419 0.258769 0) (-1.04934 0.170612 0) (-1.05321 0.0844908 0) (-1.05428 4.95345e-17 0) (-1.05321 -0.0844908 0) (-1.04934 -0.170612 0) (-1.0419 -0.258769 0) (-1.03063 -0.348831 0) (-1.01516 -0.44067 0) (-0.995071 -0.534092 0) (-0.969896 -0.628815 0) (-0.939142 -0.724447 0) (-0.902321 -0.820482 0) (-0.85898 -0.916301 0) (-0.808731 -1.01119 0) (-0.751279 -1.10434 0) (-0.68644 -1.1949 0) (-0.61416 -1.28199 0) (-0.534516 -1.3647 0) (-0.44772 -1.44216 0) (-0.354114 -1.5135 0) (-0.254164 -1.57792 0) (-0.14845 -1.63469 0) (-0.0376578 -1.68312 0) (0.0774365 -1.72265 0) (0.195977 -1.75279 0) (0.317046 -1.77317 0) (0.439677 -1.78352 0) (0.562873 -1.78371 0) (0.685626 -1.77373 0) (0.806932 -1.75369 0) (0.925812 -1.72382 0) (1.04133 -1.68447 0) (1.1526 -1.63611 0) (1.25882 -1.57934 0) (1.35929 -1.51483 0) (1.45339 -1.44336 0) (1.54065 -1.36578 0) (1.62072 -1.28303 0) (1.69341 -1.19607 0) (1.75866 -1.1059 0) (1.81658 -1.01349 0) (1.86743 -0.919776 0) (1.91154 -0.825591 0) (1.94935 -0.731652 0) (1.98133 -0.638531 0) (2.00793 -0.546654 0) (2.02962 -0.456313 0) (2.04678 -0.367692 0) (2.05979 -0.280892 0) (2.06893 -0.195966 0) (2.0747 -0.112741 0) (2.07253 -0.0356601 0) (2.10492 0.114521 0) (2.09901 0.198979 0) (2.08965 0.285148 0) (2.07635 0.373203 0) (2.05881 0.463095 0) (2.03666 0.554726 0) (2.00952 0.647918 0) (1.97692 0.742389 0) (1.93841 0.837724 0) (1.89352 0.93336 0) (1.84179 1.02859 0) (1.78287 1.12256 0) (1.7165 1.21435 0) (1.64256 1.30294 0) (1.56108 1.38732 0) (1.47224 1.46648 0) (1.3764 1.53947 0) (1.27403 1.6054 0) (1.16575 1.66345 0) (1.05228 1.71291 0) (0.934453 1.75318 0) (0.813164 1.78376 0) (0.689378 1.80429 0) (0.564103 1.81452 0) (0.438369 1.81433 0) (0.313214 1.80374 0) (0.189664 1.7829 0) (0.0687104 1.75207 0) (-0.0487015 1.71163 0) (-0.161694 1.66209 0) (-0.269471 1.60405 0) (-0.371332 1.53821 0) (-0.466685 1.46532 0) (-0.555058 1.38623 0) (-0.636107 1.30182 0) (-0.709624 1.21301 0) (-0.775541 1.12073 0) (-0.833926 1.02588 0) (-0.884975 0.929348 0) (-0.928999 0.831943 0) (-0.966403 0.734394 0) (-0.997651 0.637322 0) (-1.02324 0.541231 0) (-1.04367 0.446508 0) (-1.05942 0.353427 0) (-1.0709 0.26217 0) (-1.07849 0.172855 0) (-1.08244 0.0856047 0) (-1.08354 6.44965e-17 0) (-1.08244 -0.0856047 0) (-1.07849 -0.172855 0) (-1.0709 -0.26217 0) (-1.05942 -0.353427 0) (-1.04367 -0.446508 0) (-1.02324 -0.541231 0) (-0.997651 -0.637322 0) (-0.966403 -0.734394 0) (-0.928999 -0.831943 0) (-0.884975 -0.929348 0) (-0.833926 -1.02588 0) (-0.775541 -1.12073 0) (-0.709624 -1.21301 0) (-0.636107 -1.30182 0) (-0.555058 -1.38623 0) (-0.466685 -1.46532 0) (-0.371332 -1.53821 0) (-0.269471 -1.60405 0) (-0.161694 -1.66209 0) (-0.0487015 -1.71163 0) (0.0687104 -1.75207 0) (0.189664 -1.7829 0) (0.313214 -1.80374 0) (0.438369 -1.81433 0) (0.564103 -1.81452 0) (0.689378 -1.80429 0) (0.813164 -1.78376 0) (0.934453 -1.75318 0) (1.05228 -1.71291 0) (1.16575 -1.66345 0) (1.27403 -1.6054 0) (1.3764 -1.53947 0) (1.47224 -1.46648 0) (1.56108 -1.38732 0) (1.64256 -1.30294 0) (1.7165 -1.21435 0) (1.78287 -1.12256 0) (1.84179 -1.02859 0) (1.89352 -0.93336 0) (1.93841 -0.837724 0) (1.97692 -0.742389 0) (2.00952 -0.647918 0) (2.03666 -0.554726 0) (2.05881 -0.463095 0) (2.07635 -0.373203 0) (2.08965 -0.285148 0) (2.09901 -0.198979 0) (2.10492 -0.114521 0) (2.10279 -0.0362418 0) (2.13587 0.116359 0) (2.12981 0.20209 0) (2.12022 0.28954 0) (2.10661 0.378889 0) (2.08868 0.470086 0) (2.06606 0.563039 0) (2.03835 0.657576 0) (2.00512 0.753422 0) (1.96588 0.850172 0) (1.92016 0.947274 0) (1.86752 1.04402 0) (1.80758 1.13958 0) (1.74006 1.23298 0) (1.66483 1.32322 0) (1.5819 1.40924 0) (1.49145 1.49001 0) (1.39383 1.56453 0) (1.28952 1.63188 0) (1.17914 1.69122 0) (1.06344 1.74181 0) (0.943258 1.78301 0) (0.819515 1.81431 0) (0.693204 1.83533 0) (0.565358 1.84581 0) (0.437039 1.84563 0) (0.309313 1.83481 0) (0.183234 1.81349 0) (0.0598236 1.78195 0) (-0.0599497 1.7406 0) (-0.175185 1.68994 0) (-0.285065 1.63061 0) (-0.388874 1.56332 0) (-0.48601 1.48887 0) (-0.575993 1.40812 0) (-0.65848 1.322 0) (-0.733267 1.23146 0) (-0.800294 1.13743 0) (-0.859642 1.04087 0) (-0.911523 0.942676 0) (-0.956264 0.843669 0) (-0.994282 0.744587 0) (-1.02605 0.646055 0) (-1.05209 0.548574 0) (-1.07289 0.452523 0) (-1.08893 0.358168 0) (-1.10065 0.265682 0) (-1.10839 0.175175 0) (-1.11244 0.0867567 0) (-1.11356 6.5147e-17 0) (-1.11244 -0.0867567 0) (-1.10839 -0.175175 0) (-1.10065 -0.265682 0) (-1.08893 -0.358168 0) (-1.07289 -0.452523 0) (-1.05209 -0.548574 0) (-1.02605 -0.646055 0) (-0.994282 -0.744587 0) (-0.956264 -0.843669 0) (-0.911523 -0.942676 0) (-0.859642 -1.04087 0) (-0.800294 -1.13743 0) (-0.733267 -1.23146 0) (-0.65848 -1.322 0) (-0.575993 -1.40812 0) (-0.48601 -1.48887 0) (-0.388874 -1.56332 0) (-0.285065 -1.63061 0) (-0.175185 -1.68994 0) (-0.0599497 -1.7406 0) (0.0598236 -1.78195 0) (0.183234 -1.81349 0) (0.309313 -1.83481 0) (0.437039 -1.84563 0) (0.565358 -1.84581 0) (0.693204 -1.83533 0) (0.819515 -1.81431 0) (0.943258 -1.78301 0) (1.06344 -1.74181 0) (1.17914 -1.69122 0) (1.28952 -1.63188 0) (1.39383 -1.56453 0) (1.49145 -1.49001 0) (1.5819 -1.40924 0) (1.66483 -1.32322 0) (1.74006 -1.23298 0) (1.80758 -1.13958 0) (1.86752 -1.04402 0) (1.92016 -0.947274 0) (1.96588 -0.850172 0) (2.00512 -0.753422 0) (2.03835 -0.657576 0) (2.06606 -0.563039 0) (2.08868 -0.470086 0) (2.10661 -0.378889 0) (2.12022 -0.28954 0) (2.12981 -0.20209 0) (2.13587 -0.116359 0) (2.13377 -0.0368423 0) (2.16757 0.118256 0) (2.16135 0.2053 0) (2.15153 0.294072 0) (2.1376 0.384753 0) (2.11925 0.477293 0) (2.09614 0.571602 0) (2.06785 0.667513 0) (2.03394 0.764759 0) (1.99394 0.862946 0) (1.94738 0.961531 0) (1.89379 1.05982 0) (1.83279 1.15695 0) (1.76409 1.25199 0) (1.68753 1.34388 0) (1.60312 1.43155 0) (1.51103 1.51394 0) (1.41159 1.59001 0) (1.3053 1.6588 0) (1.19279 1.71945 0) (1.07481 1.77117 0) (0.95223 1.81332 0) (0.825988 1.84535 0) (0.697103 1.86687 0) (0.56664 1.8776 0) (0.435687 1.87743 0) (0.305342 1.86637 0) (0.176688 1.84457 0) (0.0507736 1.81232 0) (-0.0714056 1.77003 0) (-0.188925 1.71824 0) (-0.300949 1.65759 0) (-0.406745 1.58884 0) (-0.505699 1.51281 0) (-0.597328 1.43039 0) (-0.681287 1.34254 0) (-0.757376 1.25024 0) (-0.825546 1.15446 0) (-0.88589 1.05618 0) (-0.938636 0.956298 0) (-0.984126 0.855672 0) (-1.02279 0.75504 0) (-1.05512 0.655026 0) (-1.08163 0.556129 0) (-1.10282 0.458721 0) (-1.11918 0.363061 0) (-1.13114 0.269312 0) (-1.13906 0.177573 0) (-1.14321 0.0879487 0) (-1.14437 8.35784e-17 0) (-1.14321 -0.0879487 0) (-1.13906 -0.177573 0) (-1.13114 -0.269312 0) (-1.11918 -0.363061 0) (-1.10282 -0.458721 0) (-1.08163 -0.556129 0) (-1.05512 -0.655026 0) (-1.02279 -0.75504 0) (-0.984126 -0.855672 0) (-0.938636 -0.956298 0) (-0.88589 -1.05618 0) (-0.825546 -1.15446 0) (-0.757376 -1.25024 0) (-0.681287 -1.34254 0) (-0.597328 -1.43039 0) (-0.505699 -1.51281 0) (-0.406745 -1.58884 0) (-0.300949 -1.65759 0) (-0.188925 -1.71824 0) (-0.0714056 -1.77003 0) (0.0507736 -1.81232 0) (0.176688 -1.84457 0) (0.305342 -1.86637 0) (0.435687 -1.87743 0) (0.56664 -1.8776 0) (0.697103 -1.86687 0) (0.825988 -1.84535 0) (0.95223 -1.81332 0) (1.07481 -1.77117 0) (1.19279 -1.71945 0) (1.3053 -1.6588 0) (1.41159 -1.59001 0) (1.51103 -1.51394 0) (1.60312 -1.43155 0) (1.68753 -1.34388 0) (1.76409 -1.25199 0) (1.83279 -1.15695 0) (1.89379 -1.05982 0) (1.94738 -0.961531 0) (1.99394 -0.862946 0) (2.03394 -0.764759 0) (2.06785 -0.667513 0) (2.09614 -0.571602 0) (2.11925 -0.477293 0) (2.1376 -0.384753 0) (2.15153 -0.294072 0) (2.16135 -0.2053 0) (2.16757 -0.118256 0) (2.16551 -0.037462 0) (2.20002 0.120214 0) (2.19364 0.208612 0) (2.18358 0.298748 0) (2.16931 0.390801 0) (2.15054 0.484722 0) (2.12691 0.580422 0) (2.09801 0.677739 0) (2.0634 0.776413 0) (2.02262 0.876059 0) (1.97517 0.976144 0) (1.9206 1.07598 0) (1.85851 1.17471 0) (1.78858 1.27139 0) (1.71066 1.36494 0) (1.62474 1.45428 0) (1.53097 1.53829 0) (1.42969 1.61592 0) (1.32138 1.68618 0) (1.2067 1.74814 0) (1.0864 1.80102 0) (0.96137 1.84412 0) (0.832583 1.87689 0) (0.701078 1.89891 0) (0.567948 1.90991 0) (0.434313 1.90975 0) (0.301301 1.89845 0) (0.170023 1.87616 0) (0.0415579 1.84317 0) (-0.0830722 1.79994 0) (-0.202919 1.74699 0) (-0.317128 1.68502 0) (-0.424949 1.61479 0) (-0.52576 1.53715 0) (-0.61907 1.45305 0) (-0.704534 1.36345 0) (-0.78196 1.26938 0) (-0.851306 1.17183 0) (-0.91268 1.0718 0) (-0.966324 0.970226 0) (-1.0126 0.867964 0) (-1.05194 0.765762 0) (-1.08486 0.664245 0) (-1.11187 0.563906 0) (-1.13348 0.465113 0) (-1.15019 0.368114 0) (-1.16241 0.273064 0) (-1.17052 0.180055 0) (-1.17477 0.0891824 0) (-1.17596 1.04287e-16 0) (-1.17477 -0.0891824 0) (-1.17052 -0.180055 0) (-1.16241 -0.273064 0) (-1.15019 -0.368114 0) (-1.13348 -0.465113 0) (-1.11187 -0.563906 0) (-1.08486 -0.664245 0) (-1.05194 -0.765762 0) (-1.0126 -0.867964 0) (-0.966324 -0.970226 0) (-0.91268 -1.0718 0) (-0.851306 -1.17183 0) (-0.78196 -1.26938 0) (-0.704534 -1.36345 0) (-0.61907 -1.45305 0) (-0.52576 -1.53715 0) (-0.424949 -1.61479 0) (-0.317128 -1.68502 0) (-0.202919 -1.74699 0) (-0.0830722 -1.79994 0) (0.0415579 -1.84317 0) (0.170023 -1.87616 0) (0.301301 -1.89845 0) (0.434313 -1.90975 0) (0.567948 -1.90991 0) (0.701078 -1.89891 0) (0.832583 -1.87689 0) (0.96137 -1.84412 0) (1.0864 -1.80102 0) (1.2067 -1.74814 0) (1.32138 -1.68618 0) (1.42969 -1.61592 0) (1.53097 -1.53829 0) (1.62474 -1.45428 0) (1.71066 -1.36494 0) (1.78858 -1.27139 0) (1.85851 -1.17471 0) (1.9206 -1.07598 0) (1.97517 -0.976144 0) (2.02262 -0.876059 0) (2.0634 -0.776413 0) (2.09801 -0.677739 0) (2.12691 -0.580422 0) (2.15054 -0.484722 0) (2.16931 -0.390801 0) (2.18358 -0.298748 0) (2.19364 -0.208612 0) (2.20002 -0.120214 0) (2.19799 -0.0381015 0) (2.23323 0.122233 0) (2.22669 0.21203 0) (2.21637 0.303572 0) (2.20176 0.397037 0) (2.18255 0.492378 0) (2.15838 0.589506 0) (2.12885 0.688262 0) (2.09352 0.788393 0) (2.05192 0.889521 0) (2.00355 0.991125 0) (1.94797 1.09252 0) (1.88474 1.19287 0) (1.81357 1.29119 0) (1.73425 1.38641 0) (1.64678 1.47742 0) (1.55129 1.56308 0) (1.44812 1.64229 0) (1.33776 1.71401 0) (1.22086 1.77731 0) (1.0982 1.83135 0) (0.970682 1.87542 0) (0.839302 1.90894 0) (0.705129 1.93148 0) (0.569284 1.94274 0) (0.432917 1.94259 0) (0.297187 1.93104 0) (0.163237 1.90825 0) (0.0321741 1.87453 0) (-0.0949527 1.83033 0) (-0.217171 1.77622 0) (-0.333606 1.7129 0) (-0.443493 1.64117 0) (-0.546198 1.56192 0) (-0.641225 1.47611 0) (-0.72823 1.38474 0) (-0.807026 1.28888 0) (-0.877583 1.18954 0) (-0.940021 1.08776 0) (-0.994598 0.984473 0) (-1.04169 0.880558 0) (-1.08174 0.776766 0) (-1.11528 0.673722 0) (-1.14282 0.571916 0) (-1.16488 0.471706 0) (-1.18195 0.373333 0) (-1.19446 0.276943 0) (-1.20276 0.182623 0) (-1.20713 0.0904595 0) (-1.20836 9.66973e-17 0) (-1.20713 -0.0904595 0) (-1.20276 -0.182623 0) (-1.19446 -0.276943 0) (-1.18195 -0.373333 0) (-1.16488 -0.471706 0) (-1.14282 -0.571916 0) (-1.11528 -0.673722 0) (-1.08174 -0.776766 0) (-1.04169 -0.880558 0) (-0.994598 -0.984473 0) (-0.940021 -1.08776 0) (-0.877583 -1.18954 0) (-0.807026 -1.28888 0) (-0.72823 -1.38474 0) (-0.641225 -1.47611 0) (-0.546198 -1.56192 0) (-0.443493 -1.64117 0) (-0.333606 -1.7129 0) (-0.217171 -1.77622 0) (-0.0949527 -1.83033 0) (0.0321741 -1.87453 0) (0.163237 -1.90825 0) (0.297187 -1.93104 0) (0.432917 -1.94259 0) (0.569284 -1.94274 0) (0.705129 -1.93148 0) (0.839302 -1.90894 0) (0.970682 -1.87542 0) (1.0982 -1.83135 0) (1.22086 -1.77731 0) (1.33776 -1.71401 0) (1.44812 -1.64229 0) (1.55129 -1.56308 0) (1.64678 -1.47742 0) (1.73425 -1.38641 0) (1.81357 -1.29119 0) (1.88474 -1.19287 0) (1.94797 -1.09252 0) (2.00355 -0.991125 0) (2.05192 -0.889521 0) (2.09352 -0.788393 0) (2.12885 -0.688262 0) (2.15838 -0.589506 0) (2.18255 -0.492378 0) (2.20176 -0.397037 0) (2.21637 -0.303572 0) (2.22669 -0.21203 0) (2.23323 -0.122233 0) (2.23125 -0.0387612 0) (2.26729 0.124318 0) (2.26058 0.215559 0) (2.24999 0.308551 0) (2.23502 0.403473 0) (2.21535 0.500276 0) (2.19062 0.598871 0) (2.16044 0.699103 0) (2.12436 0.800723 0) (2.0819 0.903363 0) (2.03259 1.00651 0) (1.97596 1.10949 0) (1.91157 1.21146 0) (1.8391 1.31145 0) (1.75834 1.40836 0) (1.66928 1.50106 0) (1.57203 1.58837 0) (1.46694 1.66917 0) (1.35448 1.74239 0) (1.23531 1.80704 0) (1.11024 1.86226 0) (0.980187 1.90732 0) (0.846162 1.9416 0) (0.709265 1.96466 0) (0.570649 1.97618 0) (0.431494 1.97604 0) (0.292991 1.96424 0) (0.156313 1.94095 0) (0.0225986 1.90648 0) (-0.107077 1.8613 0) (-0.231717 1.80601 0) (-0.350426 1.74132 0) (-0.462423 1.66807 0) (-0.567064 1.58717 0) (-0.663848 1.49963 0) (-0.752434 1.40648 0) (-0.832638 1.3088 0) (-0.904443 1.20766 0) (-0.967981 1.10409 0) (-1.02353 0.999077 0) (-1.07147 0.893486 0) (-1.11227 0.78808 0) (-1.14645 0.683482 0) (-1.17456 0.580175 0) (-1.19709 0.478513 0) (-1.21455 0.378728 0) (-1.22735 0.280958 0) (-1.23586 0.185281 0) (-1.24036 0.0917823 0) (-1.24163 8.76984e-17 0) (-1.24036 -0.0917823 0) (-1.23586 -0.185281 0) (-1.22735 -0.280958 0) (-1.21455 -0.378728 0) (-1.19709 -0.478513 0) (-1.17456 -0.580175 0) (-1.14645 -0.683482 0) (-1.11227 -0.78808 0) (-1.07147 -0.893486 0) (-1.02353 -0.999077 0) (-0.967981 -1.10409 0) (-0.904443 -1.20766 0) (-0.832638 -1.3088 0) (-0.752434 -1.40648 0) (-0.663848 -1.49963 0) (-0.567064 -1.58717 0) (-0.462423 -1.66807 0) (-0.350426 -1.74132 0) (-0.231717 -1.80601 0) (-0.107077 -1.8613 0) (0.0225986 -1.90648 0) (0.156313 -1.94095 0) (0.292991 -1.96424 0) (0.431494 -1.97604 0) (0.570649 -1.97618 0) (0.709265 -1.96466 0) (0.846162 -1.9416 0) (0.980187 -1.90732 0) (1.11024 -1.86226 0) (1.23531 -1.80704 0) (1.35448 -1.74239 0) (1.46694 -1.66917 0) (1.57203 -1.58837 0) (1.66928 -1.50106 0) (1.75834 -1.40836 0) (1.8391 -1.31145 0) (1.91157 -1.21146 0) (1.97596 -1.10949 0) (2.03259 -1.00651 0) (2.0819 -0.903363 0) (2.12436 -0.800723 0) (2.16044 -0.699103 0) (2.19062 -0.598871 0) (2.21535 -0.500276 0) (2.23502 -0.403473 0) (2.24999 -0.308551 0) (2.26058 -0.215559 0) (2.26729 -0.124318 0) (2.26535 -0.039441 0) (2.30213 0.126468 0) (2.29525 0.219199 0) (2.28439 0.313685 0) (2.26904 0.410107 0) (2.24889 0.508414 0) (2.22359 0.608516 0) (2.19273 0.710259 0) (2.15587 0.8134 0) (2.11254 0.917578 0) (2.06225 1.02229 0) (2.00452 1.12687 0) (1.93893 1.23048 0) (1.86513 1.33214 0) (1.7829 1.43075 0) (1.69221 1.52514 0) (1.59317 1.61412 0) (1.4861 1.69653 0) (1.3715 1.77125 0) (1.25004 1.83727 0) (1.12251 1.89369 0) (0.989868 1.93974 0) (0.85315 1.97479 0) (0.713481 1.99838 0) (0.572042 2.01018 0) (0.430048 2.01004 0) (0.28872 1.99799 0) (0.149265 1.97418 0) (0.0128493 1.93895 0) (-0.119422 1.89278 0) (-0.246529 1.83629 0) (-0.367555 1.77022 0) (-0.481704 1.69542 0) (-0.58832 1.61287 0) (-0.686901 1.52357 0) (-0.777103 1.42862 0) (-0.858752 1.32911 0) (-0.93184 1.22615 0) (-0.996515 1.12079 0) (-1.05307 1.01402 0) (-1.10189 0.906741 0) (-1.14347 0.799699 0) (-1.17834 0.693521 0) (-1.20703 0.588686 0) (-1.23007 0.485538 0) (-1.24793 0.384302 0) (-1.26105 0.28511 0) (-1.26978 0.188033 0) (-1.27441 0.0931519 0) (-1.27572 7.84827e-17 0) (-1.27441 -0.0931519 0) (-1.26978 -0.188033 0) (-1.26105 -0.28511 0) (-1.24793 -0.384302 0) (-1.23007 -0.485538 0) (-1.20703 -0.588686 0) (-1.17834 -0.693521 0) (-1.14347 -0.799699 0) (-1.10189 -0.906741 0) (-1.05307 -1.01402 0) (-0.996515 -1.12079 0) (-0.93184 -1.22615 0) (-0.858752 -1.32911 0) (-0.777103 -1.42862 0) (-0.686901 -1.52357 0) (-0.58832 -1.61287 0) (-0.481704 -1.69542 0) (-0.367555 -1.77022 0) (-0.246529 -1.83629 0) (-0.119422 -1.89278 0) (0.0128493 -1.93895 0) (0.149265 -1.97418 0) (0.28872 -1.99799 0) (0.430048 -2.01004 0) (0.572042 -2.01018 0) (0.713481 -1.99838 0) (0.85315 -1.97479 0) (0.989868 -1.93974 0) (1.12251 -1.89369 0) (1.25004 -1.83727 0) (1.3715 -1.77125 0) (1.4861 -1.69653 0) (1.59317 -1.61412 0) (1.69221 -1.52514 0) (1.7829 -1.43075 0) (1.86513 -1.33214 0) (1.93893 -1.23048 0) (2.00452 -1.12687 0) (2.06225 -1.02229 0) (2.11254 -0.917578 0) (2.15587 -0.8134 0) (2.19273 -0.710259 0) (2.22359 -0.608516 0) (2.24889 -0.508414 0) (2.26904 -0.410107 0) (2.28439 -0.313685 0) (2.29525 -0.219199 0) (2.30213 -0.126468 0) (2.30024 -0.0401429 0) (2.33778 0.128687 0) (2.33071 0.222952 0) (2.31957 0.318979 0) (2.30383 0.416946 0) (2.2832 0.516798 0) (2.2573 0.618447 0) (2.22574 0.721739 0) (2.18807 0.826434 0) (2.14383 0.932178 0) (2.09252 1.03848 0) (2.03367 1.14467 0) (1.96684 1.24993 0) (1.89167 1.35327 0) (1.80793 1.45359 0) (1.71557 1.54969 0) (1.6147 1.64035 0) (1.50563 1.72438 0) (1.38885 1.80061 0) (1.26503 1.86801 0) (1.13501 1.92564 0) (0.999729 1.9727 0) (0.860268 2.00853 0) (0.717775 2.03265 0) (0.573463 2.04472 0) (0.428578 2.0446 0) (0.284374 2.03228 0) (0.14209 2.00796 0) (0.00292363 1.97196 0) (-0.131992 1.92478 0) (-0.261612 1.86707 0) (-0.384999 1.7996 0) (-0.501341 1.72325 0) (-0.609974 1.63902 0) (-0.710388 1.54795 0) (-0.802245 1.45118 0) (-0.885376 1.34983 0) (-0.959785 1.24503 0) (-1.02563 1.13786 0) (-1.08322 1.02933 0) (-1.13297 0.920335 0) (-1.17537 0.811636 0) (-1.21096 0.703853 0) (-1.24026 0.597459 0) (-1.26382 0.492789 0) (-1.28211 0.390063 0) (-1.29557 0.289404 0) (-1.30453 0.190881 0) (-1.30929 0.0945701 0) (-1.31065 4.57398e-17 0) (-1.30929 -0.0945701 0) (-1.30453 -0.190881 0) (-1.29557 -0.289404 0) (-1.28211 -0.390063 0) (-1.26382 -0.492789 0) (-1.24026 -0.597459 0) (-1.21096 -0.703853 0) (-1.17537 -0.811636 0) (-1.13297 -0.920335 0) (-1.08322 -1.02933 0) (-1.02563 -1.13786 0) (-0.959785 -1.24503 0) (-0.885376 -1.34983 0) (-0.802245 -1.45118 0) (-0.710388 -1.54795 0) (-0.609974 -1.63902 0) (-0.501341 -1.72325 0) (-0.384999 -1.7996 0) (-0.261612 -1.86707 0) (-0.131992 -1.92478 0) (0.00292363 -1.97196 0) (0.14209 -2.00796 0) (0.284374 -2.03228 0) (0.428578 -2.0446 0) (0.573463 -2.04472 0) (0.717775 -2.03265 0) (0.860268 -2.00853 0) (0.999729 -1.9727 0) (1.13501 -1.92564 0) (1.26503 -1.86801 0) (1.38885 -1.80061 0) (1.50563 -1.72438 0) (1.6147 -1.64035 0) (1.71557 -1.54969 0) (1.80793 -1.45359 0) (1.89167 -1.35327 0) (1.96684 -1.24993 0) (2.03367 -1.14467 0) (2.09252 -1.03848 0) (2.14383 -0.932178 0) (2.18807 -0.826434 0) (2.22574 -0.721739 0) (2.2573 -0.618447 0) (2.2832 -0.516798 0) (2.30383 -0.416946 0) (2.31957 -0.318979 0) (2.33071 -0.222952 0) (2.33778 -0.128687 0) (2.33594 -0.040867 0) (2.37424 0.130974 0) (2.36698 0.226821 0) (2.35554 0.324435 0) (2.33941 0.423992 0) (2.31827 0.525435 0) (2.29176 0.628673 0) (2.25947 0.733551 0) (2.22097 0.839834 0) (2.17579 0.947174 0) (2.12343 1.05508 0) (2.06342 1.16291 0) (1.9953 1.26984 0) (1.91873 1.37487 0) (1.83344 1.47691 0) (1.73937 1.57472 0) (1.63663 1.66707 0) (1.52551 1.75272 0) (1.40651 1.83049 0) (1.2803 1.89928 0) (1.14773 1.95813 0) (1.00977 2.00621 0) (0.867517 2.04283 0) (0.72215 2.06749 0) (0.574912 2.07984 0) (0.427083 2.07973 0) (0.279951 2.06715 0) (0.134786 2.04229 0) (-0.00718109 2.00551 0) (-0.14479 1.95732 0) (-0.27697 1.89838 0) (-0.402762 1.82949 0) (-0.52134 1.75156 0) (-0.63203 1.66563 0) (-0.734318 1.57279 0) (-0.827868 1.47417 0) (-0.912519 1.37096 0) (-0.988287 1.26431 0) (-1.05535 1.15532 0) (-1.11402 1.04501 0) (-1.16473 0.934283 0) (-1.20797 0.823904 0) (-1.2443 0.714488 0) (-1.27426 0.606502 0) (-1.29837 0.500274 0) (-1.31711 0.396016 0) (-1.33091 0.293846 0) (-1.34012 0.193829 0) (-1.34503 0.0960383 0) (-1.34643 1.97189e-17 0) (-1.34503 -0.0960383 0) (-1.34012 -0.193829 0) (-1.33091 -0.293846 0) (-1.31711 -0.396016 0) (-1.29837 -0.500274 0) (-1.27426 -0.606502 0) (-1.2443 -0.714488 0) (-1.20797 -0.823904 0) (-1.16473 -0.934283 0) (-1.11402 -1.04501 0) (-1.05535 -1.15532 0) (-0.988287 -1.26431 0) (-0.912519 -1.37096 0) (-0.827868 -1.47417 0) (-0.734318 -1.57279 0) (-0.63203 -1.66563 0) (-0.52134 -1.75156 0) (-0.402762 -1.82949 0) (-0.27697 -1.89838 0) (-0.14479 -1.95732 0) (-0.00718109 -2.00551 0) (0.134786 -2.04229 0) (0.279951 -2.06715 0) (0.427083 -2.07973 0) (0.574912 -2.07984 0) (0.72215 -2.06749 0) (0.867517 -2.04283 0) (1.00977 -2.00621 0) (1.14773 -1.95813 0) (1.2803 -1.89928 0) (1.40651 -1.83049 0) (1.52551 -1.75272 0) (1.63663 -1.66707 0) (1.73937 -1.57472 0) (1.83344 -1.47691 0) (1.91873 -1.37487 0) (1.9953 -1.26984 0) (2.06342 -1.16291 0) (2.12343 -1.05508 0) (2.17579 -0.947174 0) (2.22097 -0.839834 0) (2.25947 -0.733551 0) (2.29176 -0.628673 0) (2.31827 -0.525435 0) (2.33941 -0.423992 0) (2.35554 -0.324435 0) (2.36698 -0.226821 0) (2.37424 -0.130974 0) (2.37245 -0.0416137 0) (2.41152 0.133331 0) (2.40407 0.230809 0) (2.39233 0.330058 0) (2.37579 0.431252 0) (2.35412 0.53433 0) (2.32697 0.639199 0) (2.29394 0.745705 0) (2.25458 0.853612 0) (2.20842 0.962578 0) (2.15498 1.07212 0) (2.09377 1.1816 0) (2.02434 1.29021 0) (1.94631 1.39695 0) (1.85944 1.50071 0) (1.76363 1.60025 0) (1.65897 1.6943 0) (1.54575 1.78159 0) (1.42449 1.86089 0) (1.29585 1.93109 0) (1.16068 1.99117 0) (1.02 2.04028 0) (0.8749 2.0777 0) (0.726606 2.10291 0) (0.57639 2.11554 0) (0.425564 2.11544 0) (0.275449 2.10259 0) (0.127352 2.0772 0) (-0.0174675 2.03963 0) (-0.157819 1.99041 0) (-0.292606 1.93022 0) (-0.420849 1.85989 0) (-0.541708 1.78037 0) (-0.654496 1.69273 0) (-0.758699 1.59808 0) (-0.853981 1.49762 0) (-0.940191 1.39254 0) (-1.01736 1.28402 0) (-1.08567 1.17319 0) (-1.14545 1.06108 0) (-1.19716 0.948597 0) (-1.24129 0.836514 0) (-1.2784 0.725437 0) (-1.30904 0.615825 0) (-1.33372 0.508001 0) (-1.35293 0.402167 0) (-1.36709 0.298439 0) (-1.37657 0.196878 0) (-1.38162 0.0975579 0) (-1.38307 1.66832e-17 0) (-1.38162 -0.0975579 0) (-1.37657 -0.196878 0) (-1.36709 -0.298439 0) (-1.35293 -0.402167 0) (-1.33372 -0.508001 0) (-1.30904 -0.615825 0) (-1.2784 -0.725437 0) (-1.24129 -0.836514 0) (-1.19716 -0.948597 0) (-1.14545 -1.06108 0) (-1.08567 -1.17319 0) (-1.01736 -1.28402 0) (-0.940191 -1.39254 0) (-0.853981 -1.49762 0) (-0.758699 -1.59808 0) (-0.654496 -1.69273 0) (-0.541708 -1.78037 0) (-0.420849 -1.85989 0) (-0.292606 -1.93022 0) (-0.157819 -1.99041 0) (-0.0174675 -2.03963 0) (0.127352 -2.0772 0) (0.275449 -2.10259 0) (0.425564 -2.11544 0) (0.57639 -2.11554 0) (0.726606 -2.10291 0) (0.8749 -2.0777 0) (1.02 -2.04028 0) (1.16068 -1.99117 0) (1.29585 -1.93109 0) (1.42449 -1.86089 0) (1.54575 -1.78159 0) (1.65897 -1.6943 0) (1.76363 -1.60025 0) (1.85944 -1.50071 0) (1.94631 -1.39695 0) (2.02434 -1.29021 0) (2.09377 -1.1816 0) (2.15498 -1.07212 0) (2.20842 -0.962578 0) (2.25458 -0.853612 0) (2.29394 -0.745705 0) (2.32697 -0.639199 0) (2.35412 -0.53433 0) (2.37579 -0.431252 0) (2.39233 -0.330058 0) (2.40407 -0.230809 0) (2.41152 -0.133331 0) (2.40978 -0.0423834 0) (2.44964 0.135759 0) (2.44198 0.234918 0) (2.42993 0.33585 0) (2.41297 0.438729 0) (2.39076 0.54349 0) (2.36296 0.650034 0) (2.32915 0.758208 0) (2.2889 0.867777 0) (2.24175 0.978401 0) (2.18719 1.08961 0) (2.12474 1.20077 0) (2.05396 1.31107 0) (1.97444 1.41953 0) (1.88594 1.52502 0) (1.78833 1.62629 0) (1.68172 1.72205 0) (1.56637 1.81098 0) (1.4428 1.89184 0) (1.31168 1.96345 0) (1.17387 2.02478 0) (1.03041 2.07493 0) (0.882418 2.11316 0) (0.731145 2.13892 0) (0.577897 2.15184 0) (0.424019 2.15174 0) (0.270869 2.13863 0) (0.119786 2.11269 0) (-0.0279384 2.07432 0) (-0.171083 2.02405 0) (-0.308525 1.9626 0) (-0.439266 1.89082 0) (-0.562449 1.8097 0) (-0.677378 1.72032 0) (-0.783536 1.62386 0) (-0.880592 1.52152 0) (-0.968401 1.41455 0) (-1.047 1.30415 0) (-1.1166 1.19147 0) (-1.17755 1.07754 0) (-1.23028 0.963292 0) (-1.27534 0.849479 0) (-1.31326 0.73671 0) (-1.3446 0.625438 0) (-1.36989 0.515976 0) (-1.38959 0.408523 0) (-1.40413 0.303189 0) (-1.41387 0.200033 0) (-1.41908 0.0991302 0) (-1.42058 2.11284e-17 0) (-1.41908 -0.0991302 0) (-1.41387 -0.200033 0) (-1.40413 -0.303189 0) (-1.38959 -0.408523 0) (-1.36989 -0.515976 0) (-1.3446 -0.625438 0) (-1.31326 -0.73671 0) (-1.27534 -0.849479 0) (-1.23028 -0.963292 0) (-1.17755 -1.07754 0) (-1.1166 -1.19147 0) (-1.047 -1.30415 0) (-0.968401 -1.41455 0) (-0.880592 -1.52152 0) (-0.783536 -1.62386 0) (-0.677378 -1.72032 0) (-0.562449 -1.8097 0) (-0.439266 -1.89082 0) (-0.308525 -1.9626 0) (-0.171083 -2.02405 0) (-0.0279384 -2.07432 0) (0.119786 -2.11269 0) (0.270869 -2.13863 0) (0.424019 -2.15174 0) (0.577897 -2.15184 0) (0.731145 -2.13892 0) (0.882418 -2.11316 0) (1.03041 -2.07493 0) (1.17387 -2.02478 0) (1.31168 -1.96345 0) (1.4428 -1.89184 0) (1.56637 -1.81098 0) (1.68172 -1.72205 0) (1.78833 -1.62629 0) (1.88594 -1.52502 0) (1.97444 -1.41953 0) (2.05396 -1.31107 0) (2.12474 -1.20077 0) (2.18719 -1.08961 0) (2.24175 -0.978401 0) (2.2889 -0.867777 0) (2.32915 -0.758208 0) (2.36296 -0.650034 0) (2.39076 -0.54349 0) (2.41297 -0.438729 0) (2.42993 -0.33585 0) (2.44198 -0.234918 0) (2.44964 -0.135759 0) (2.44795 -0.0431765 0) (2.4886 0.138261 0) (2.48074 0.239149 0) (2.46837 0.341816 0) (2.45097 0.446429 0) (2.42821 0.552918 0) (2.39973 0.661184 0) (2.36513 0.771069 0) (2.32396 0.882338 0) (2.27577 0.994655 0) (2.22006 1.10755 0) (2.15634 1.22041 0) (2.08416 1.33243 0) (2.00311 1.44262 0) (1.91293 1.54985 0) (1.8135 1.65286 0) (1.70489 1.75033 0) (1.58737 1.84092 0) (1.46144 1.92334 0) (1.32779 1.99638 0) (1.1873 2.05897 0) (1.04101 2.11016 0) (0.890072 2.14921 0) (0.735767 2.17553 0) (0.579433 2.18874 0) (0.422449 2.18865 0) (0.266208 2.17526 0) (0.112085 2.14878 0) (-0.0385964 2.10959 0) (-0.184584 2.05827 0) (-0.324732 1.99554 0) (-0.458017 1.92229 0) (-0.583569 1.83954 0) (-0.700683 1.74842 0) (-0.808839 1.65013 0) (-0.907709 1.54591 0) (-0.997159 1.43704 0) (-1.07724 1.32474 0) (-1.14817 1.21019 0) (-1.21031 1.09443 0) (-1.26412 0.978381 0) (-1.31013 0.862812 0) (-1.3489 0.74832 0) (-1.38097 0.63535 0) (-1.40688 0.524209 0) (-1.42709 0.415089 0) (-1.44203 0.308099 0) (-1.45204 0.203296 0) (-1.45741 0.100757 0) (-1.45896 2.42726e-17 0) (-1.45741 -0.100757 0) (-1.45204 -0.203296 0) (-1.44203 -0.308099 0) (-1.42709 -0.415089 0) (-1.40688 -0.524209 0) (-1.38097 -0.63535 0) (-1.3489 -0.74832 0) (-1.31013 -0.862812 0) (-1.26412 -0.978381 0) (-1.21031 -1.09443 0) (-1.14817 -1.21019 0) (-1.07724 -1.32474 0) (-0.997159 -1.43704 0) (-0.907709 -1.54591 0) (-0.808839 -1.65013 0) (-0.700683 -1.74842 0) (-0.583569 -1.83954 0) (-0.458017 -1.92229 0) (-0.324732 -1.99554 0) (-0.184584 -2.05827 0) (-0.0385964 -2.10959 0) (0.112085 -2.14878 0) (0.266208 -2.17526 0) (0.422449 -2.18865 0) (0.579433 -2.18874 0) (0.735767 -2.17553 0) (0.890072 -2.14921 0) (1.04101 -2.11016 0) (1.1873 -2.05897 0) (1.32779 -1.99638 0) (1.46144 -1.92334 0) (1.58737 -1.84092 0) (1.70489 -1.75033 0) (1.8135 -1.65286 0) (1.91293 -1.54985 0) (2.00311 -1.44262 0) (2.08416 -1.33243 0) (2.15634 -1.22041 0) (2.22006 -1.10755 0) (2.27577 -0.994655 0) (2.32396 -0.882338 0) (2.36513 -0.771069 0) (2.39973 -0.661184 0) (2.42821 -0.552918 0) (2.45097 -0.446429 0) (2.46837 -0.341816 0) (2.48074 -0.239149 0) (2.4886 -0.138261 0) (2.48696 -0.0439934 0) (1.00068 0.00166521 0) (1.00136 0.00213422 0) (1.002 0.00261901 0) (1.00259 0.00309427 0) (1.00315 0.00354827 0) (1.00369 0.00397694 0) (1.00422 0.00437989 0) (1.00474 0.00475831 0) (1.00526 0.00511404 0) (1.00577 0.00544908 0) (1.00627 0.00576536 0) (1.00678 0.00606468 0) (1.00728 0.00634865 0) (1.00779 0.00661872 0) (1.0083 0.00687616 0) (1.00881 0.00712211 0) (1.00932 0.00735757 0) (1.00984 0.00758342 0) (1.01036 0.00780045 0) (1.01089 0.00800936 0) (1.01142 0.00821077 0) (1.01196 0.00840524 0) (1.01251 0.00859327 0) (1.01307 0.0087753 0) (1.01363 0.00895175 0) (1.0142 0.00912299 0) (1.01478 0.00928933 0) (1.01537 0.00945109 0) (1.01597 0.00960853 0) (1.01658 0.00976191 0) (1.01721 0.00991145 0) (1.01784 0.0100574 0) (1.01849 0.0101998 0) (1.01915 0.0103391 0) (1.01982 0.0104752 0) (1.02051 0.0106083 0) (1.02121 0.0107387 0) (1.02192 0.0108663 0) (1.02266 0.0109915 0) (1.0234 0.0111141 0) (1.02417 0.0112344 0) (1.02495 0.0113525 0) (1.02575 0.0114684 0) (1.02657 0.0115822 0) (1.02741 0.0116941 0) (1.02826 0.0118041 0) (1.02914 0.0119122 0) (1.03004 0.0120187 0) (1.03096 0.0121234 0) (1.0319 0.0122266 0) (1.03287 0.0123282 0) (1.03386 0.0124284 0) (1.03487 0.0125272 0) (1.03591 0.0126247 0) (1.03698 0.012721 0) (1.03807 0.0128161 0) (1.03919 0.0129101 0) (1.04034 0.013003 0) (1.04152 0.0130951 0) (1.04272 0.0131862 0) (1.04396 0.0132765 0) (1.04524 0.0133661 0) (1.04654 0.013455 0) (1.04788 0.0135434 0) (1.04926 0.0136313 0) (1.05067 0.0137187 0) (1.05212 0.0138058 0) (1.0536 0.0138927 0) (1.05513 0.0139794 0) (1.05669 0.014066 0) (1.0583 0.0141526 0) (1.05996 0.0142393 0) (1.06165 0.0143262 0) (1.06339 0.0144133 0) (1.06518 0.0145002 0) (1.06702 0.0145869 0) (1.06891 0.0146734 0) (1.07084 0.0147599 0) (1.07284 0.0148463 0) (1.07488 0.0149329 0) (1.07699 0.0150195 0) (1.07915 0.0151065 0) (1.08137 0.0151937 0) (1.08365 0.0152814 0) (1.08599 0.0153695 0) (1.0884 0.0154582 0) (1.09088 0.0155477 0) (1.09342 0.0156378 0) (1.09604 0.0157289 0) (1.09873 0.0158209 0) (1.1015 0.015914 0) (1.10434 0.0160082 0) (1.10726 0.0161036 0) (1.11027 0.0162004 0) (1.11336 0.0162986 0) (1.11653 0.0163983 0) (1.1198 0.0164995 0) (1.12316 0.0166025 0) (1.12662 0.0167072 0) (1.13017 0.0168138 0) (1.13383 0.0169223 0) (1.13759 0.0170327 0) (1.14145 0.0171452 0) (1.14543 0.0172598 0) (1.14952 0.0173766 0) (1.15373 0.0174956 0) (1.15807 0.0176169 0) (1.16252 0.0177405 0) (1.16711 0.0178665 0) (1.17183 0.017995 0) (1.17668 0.0181259 0) (1.18168 0.0182593 0) (1.18683 0.0183952 0) (1.19212 0.0185337 0) (1.19763 0.0186743 0) (1.20331 0.0188183 0) (1.20916 0.0189657 0) (1.21517 0.0191167 0) (1.22137 0.0192711 0) (1.22775 0.019429 0) (1.23432 0.0195905 0) (1.24108 0.0197554 0) (1.24804 0.0199238 0) (1.25521 0.0200957 0) (1.26259 0.020271 0) (1.27019 0.0204498 0) (1.27802 0.020632 0) (1.28608 0.0208177 0) (1.29438 0.0210069 0) (1.30293 0.0211996 0) (1.31173 0.0213957 0) (1.3208 0.0215954 0) (1.33013 0.0217987 0) (1.33975 0.0220056 0) (1.34965 0.0222162 0) (1.35984 0.0224306 0) (1.37034 0.0226488 0) (1.38115 0.022871 0) (1.39229 0.0230971 0) (1.40381 0.0233275 0) (1.41568 0.0235628 0) (1.4279 0.0238033 0) (1.44049 0.0240489 0) (1.45345 0.0242996 0) (1.46679 0.0245556 0) (1.48052 0.0248169 0) (1.49466 0.0250838 0) (1.50922 0.0253563 0) (1.5242 0.0256348 0) (1.53962 0.0259195 0) (1.55549 0.0262106 0) (1.57181 0.0265085 0) (1.58861 0.0268134 0) (1.60589 0.0271257 0) (1.62367 0.0274459 0) (1.64195 0.0277742 0) (1.66081 0.0281107 0) (1.6802 0.0284568 0) (1.70014 0.028813 0) (1.72063 0.0291795 0) (1.74169 0.0295567 0) (1.76332 0.0299451 0) (1.78555 0.030345 0) (1.80838 0.0307571 0) (1.83182 0.0311816 0) (1.85588 0.0316193 0) (1.88058 0.0320707 0) (1.90592 0.0325362 0) (1.93193 0.0330165 0) (1.95866 0.0335112 0) (1.98608 0.0340226 0) (2.01419 0.0345509 0) (2.04301 0.0350966 0) (2.07253 0.0356601 0) (2.10279 0.0362418 0) (2.13377 0.0368423 0) (2.16551 0.037462 0) (2.19799 0.0381015 0) (2.23125 0.0387612 0) (2.26535 0.039441 0) (2.30024 0.0401429 0) (2.33594 0.040867 0) (2.37245 0.0416137 0) (2.40978 0.0423834 0) (2.44795 0.0431765 0) (2.48696 0.0439934 0) (2.52683 0.0448347 0) (2.52683 -0.0448347 0) (2.52842 -0.140837 0) (2.52034 -0.243507 0) (2.50765 -0.347958 0) (2.48979 -0.454354 0) (2.46647 -0.562622 0) (2.43729 -0.672656 0) (2.40187 -0.784296 0) (2.35977 -0.897306 0) (2.31051 -1.01135 0) (2.25361 -1.12597 0) (2.18858 -1.24055 0) (2.11496 -1.3543 0) (2.03234 -1.46623 0) (1.94045 -1.57522 0) (1.83914 -1.67998 0) (1.72848 -1.77917 0) (1.60875 -1.87143 0) (1.48042 -1.95542 0) (1.3442 -2.0299 0) (1.20097 -2.09375 0) (1.0518 -2.14601 0) (0.897865 -2.18588 0) (0.740474 -2.21277 0) (0.580998 -2.22627 0) (0.420852 -2.22618 0) (0.261466 -2.21252 0) (0.104247 -2.18548 0) (-0.0494443 -2.14546 0) (-0.198328 -2.09307 0) (-0.34123 -2.02905 0) (-0.477108 -1.95432 0) (-0.605075 -1.86993 0) (-0.724418 -1.77705 0) (-0.834615 -1.6769 0) (-0.935342 -1.57079 0) (-1.02647 -1.46 0) (-1.10807 -1.3458 0) (-1.18037 -1.22935 0) (-1.24375 -1.11174 0) (-1.29867 -0.993877 0) (-1.34567 -0.876525 0) (-1.38532 -0.760277 0) (-1.41816 -0.64557 0) (-1.44471 -0.532705 0) (-1.46545 -0.421871 0) (-1.4808 -0.313173 0) (-1.4911 -0.206669 0) (-1.49664 -0.102438 0) (-1.49824 2.48147e-17 0) (-1.49664 0.102438 0) (-1.4911 0.206669 0) (-1.4808 0.313173 0) (-1.46545 0.421871 0) (-1.44471 0.532705 0) (-1.41816 0.64557 0) (-1.38532 0.760277 0) (-1.34567 0.876525 0) (-1.29867 0.993877 0) (-1.24375 1.11174 0) (-1.18037 1.22935 0) (-1.10807 1.3458 0) (-1.02647 1.46 0) (-0.935342 1.57079 0) (-0.834615 1.6769 0) (-0.724418 1.77705 0) (-0.605075 1.86993 0) (-0.477108 1.95432 0) (-0.34123 2.02905 0) (-0.198328 2.09307 0) (-0.0494443 2.14546 0) (0.104247 2.18548 0) (0.261466 2.21252 0) (0.420852 2.22618 0) (0.580998 2.22627 0) (0.897865 2.18588 0) (1.0518 2.14601 0) (1.20097 2.09375 0) (1.3442 2.0299 0) (1.48042 1.95542 0) (1.60875 1.87143 0) (1.72848 1.77917 0) (1.83914 1.67998 0) (1.94045 1.57522 0) (2.03234 1.46623 0) (2.11496 1.3543 0) (2.18858 1.24055 0) (2.25361 1.12597 0) (2.31051 1.01135 0) (2.35977 0.897306 0) (2.40187 0.784296 0) (2.43729 0.672656 0) (2.46647 0.562622 0) (2.48979 0.454354 0) (2.50765 0.347958 0) (2.52034 0.243507 0) (2.52842 0.140837 0) (0.740474 2.21277 0) (0.00294975 0.00944232 -1) (0.0102995 0.0172735 -1) (0.020022 0.0236096 -1) (0.0313087 0.0289511 -1) (0.0438776 0.0336056 -1) (0.0576253 0.0377375 -1) (0.072512 0.0414415 -1) (0.0885247 0.0447708 -1) (0.10566 0.0477555 -1) (0.123917 0.0504112 -1) (0.14329 0.0527444 -1) (0.163769 0.0547568 -1) (0.185336 0.0564467 -1) (0.207963 0.0578117 -1) (0.231611 0.0588492 -1) (0.256229 0.0595587 -1) (0.281756 0.0599414 -1) (0.308119 0.0600019 -1) (0.33523 0.0597476 -1) (0.362995 0.0591896 -1) (0.391306 0.0583422 -1) (0.42005 0.0572233 -1) (0.449103 0.0558532 -1) (0.478339 0.0542548 -1) (0.507629 0.0524524 -1) (0.536842 0.0504719 -1) (0.56585 0.0483393 -1) (0.594526 0.0460809 -1) (0.622752 0.0437221 -1) (0.650415 0.0412876 -1) (0.677414 0.0388005 -1) (0.703656 0.0362825 -1) (0.72906 0.0337535 -1) (0.75356 0.0312316 -1) (0.777098 0.0287329 -1) (0.799632 0.0262719 -1) (0.821131 0.0238609 -1) (0.841575 0.0215106 -1) (0.860955 0.0192303 -1) (0.879272 0.0170273 -1) (0.896536 0.0149076 -1) (0.912766 0.0128758 -1) (0.927984 0.0109352 -1) (0.942222 0.00908797 -1) (0.955513 0.00733521 -1) (0.967895 0.00567708 -1) (0.979409 0.00411286 -1) (0.990096 0.00264118 -1) (1 0.00126 -1) (0 0 -1) (0.00294975 -0.00944232 -1) (0.0102995 -0.0172735 -1) (0.020022 -0.0236096 -1) (0.0313087 -0.0289511 -1) (0.0438776 -0.0336056 -1) (0.0576253 -0.0377375 -1) (0.072512 -0.0414415 -1) (0.0885247 -0.0447708 -1) (0.10566 -0.0477555 -1) (0.123917 -0.0504112 -1) (0.14329 -0.0527444 -1) (0.163769 -0.0547568 -1) (0.185336 -0.0564467 -1) (0.207963 -0.0578117 -1) (0.231611 -0.0588492 -1) (0.256229 -0.0595587 -1) (0.281756 -0.0599414 -1) (0.308119 -0.0600019 -1) (0.33523 -0.0597476 -1) (0.362995 -0.0591896 -1) (0.391306 -0.0583422 -1) (0.42005 -0.0572233 -1) (0.449103 -0.0558532 -1) (0.478339 -0.0542548 -1) (0.507629 -0.0524524 -1) (0.536842 -0.0504719 -1) (0.56585 -0.0483393 -1) (0.594526 -0.0460809 -1) (0.622752 -0.0437221 -1) (0.650415 -0.0412876 -1) (0.677414 -0.0388005 -1) (0.703656 -0.0362825 -1) (0.72906 -0.0337535 -1) (0.75356 -0.0312316 -1) (0.777098 -0.0287329 -1) (0.799632 -0.0262719 -1) (0.821131 -0.0238609 -1) (0.841575 -0.0215106 -1) (0.860955 -0.0192303 -1) (0.879272 -0.0170273 -1) (0.896536 -0.0149076 -1) (0.912766 -0.0128758 -1) (0.927984 -0.0109352 -1) (0.942222 -0.00908797 -1) (0.955513 -0.00733521 -1) (0.967895 -0.00567708 -1) (0.979409 -0.00411286 -1) (0.990096 -0.00264118 -1) (1 -0.00126 -1) (1.00068 0.00166521 -1) (1.00136 0.00213422 -1) (1.002 0.00261901 -1) (1.00259 0.00309427 -1) (1.00315 0.00354827 -1) (1.00369 0.00397694 -1) (1.00422 0.00437989 -1) (1.00474 0.00475831 -1) (1.00526 0.00511404 -1) (1.00577 0.00544908 -1) (1.00627 0.00576536 -1) (1.00678 0.00606468 -1) (1.00728 0.00634865 -1) (1.00779 0.00661872 -1) (1.0083 0.00687616 -1) (1.00881 0.00712211 -1) (1.00932 0.00735757 -1) (1.00984 0.00758342 -1) (1.01036 0.00780045 -1) (1.01089 0.00800936 -1) (1.01142 0.00821077 -1) (1.01196 0.00840524 -1) (1.01251 0.00859327 -1) (1.01307 0.0087753 -1) (1.01363 0.00895175 -1) (1.0142 0.00912299 -1) (1.01478 0.00928933 -1) (1.01537 0.00945109 -1) (1.01597 0.00960853 -1) (1.01658 0.00976191 -1) (1.01721 0.00991145 -1) (1.01784 0.0100574 -1) (1.01849 0.0101998 -1) (1.01915 0.0103391 -1) (1.01982 0.0104752 -1) (1.02051 0.0106083 -1) (1.02121 0.0107387 -1) (1.02192 0.0108663 -1) (1.02266 0.0109915 -1) (1.0234 0.0111141 -1) (1.02417 0.0112344 -1) (1.02495 0.0113525 -1) (1.02575 0.0114684 -1) (1.02657 0.0115822 -1) (1.02741 0.0116941 -1) (1.02826 0.0118041 -1) (1.02914 0.0119122 -1) (1.03004 0.0120187 -1) (1.03096 0.0121234 -1) (1.0319 0.0122266 -1) (1.03287 0.0123282 -1) (1.03386 0.0124284 -1) (1.03487 0.0125272 -1) (1.03591 0.0126247 -1) (1.03698 0.012721 -1) (1.03807 0.0128161 -1) (1.03919 0.0129101 -1) (1.04034 0.013003 -1) (1.04152 0.0130951 -1) (1.04272 0.0131862 -1) (1.04396 0.0132765 -1) (1.04524 0.0133661 -1) (1.04654 0.013455 -1) (1.04788 0.0135434 -1) (1.04926 0.0136313 -1) (1.05067 0.0137187 -1) (1.05212 0.0138058 -1) (1.0536 0.0138927 -1) (1.05513 0.0139794 -1) (1.05669 0.014066 -1) (1.0583 0.0141526 -1) (1.05996 0.0142393 -1) (1.06165 0.0143262 -1) (1.06339 0.0144133 -1) (1.06518 0.0145002 -1) (1.06702 0.0145869 -1) (1.06891 0.0146734 -1) (1.07084 0.0147599 -1) (1.07284 0.0148463 -1) (1.07488 0.0149329 -1) (1.07699 0.0150195 -1) (1.07915 0.0151065 -1) (1.08137 0.0151937 -1) (1.08365 0.0152814 -1) (1.08599 0.0153695 -1) (1.0884 0.0154582 -1) (1.09088 0.0155477 -1) (1.09342 0.0156378 -1) (1.09604 0.0157289 -1) (1.09873 0.0158209 -1) (1.1015 0.015914 -1) (1.10434 0.0160082 -1) (1.10726 0.0161036 -1) (1.11027 0.0162004 -1) (1.11336 0.0162986 -1) (1.11653 0.0163983 -1) (1.1198 0.0164995 -1) (1.12316 0.0166025 -1) (1.12662 0.0167072 -1) (1.13017 0.0168138 -1) (1.13383 0.0169223 -1) (1.13759 0.0170327 -1) (1.14145 0.0171452 -1) (1.14543 0.0172598 -1) (1.14952 0.0173766 -1) (1.15373 0.0174956 -1) (1.15807 0.0176169 -1) (1.16252 0.0177405 -1) (1.16711 0.0178665 -1) (1.17183 0.017995 -1) (1.17668 0.0181259 -1) (1.18168 0.0182593 -1) (1.18683 0.0183952 -1) (1.19212 0.0185337 -1) (1.19763 0.0186743 -1) (1.20331 0.0188183 -1) (1.20916 0.0189657 -1) (1.21517 0.0191167 -1) (1.22137 0.0192711 -1) (1.22775 0.019429 -1) (1.23432 0.0195905 -1) (1.24108 0.0197554 -1) (1.24804 0.0199238 -1) (1.25521 0.0200957 -1) (1.26259 0.020271 -1) (1.27019 0.0204498 -1) (1.27802 0.020632 -1) (1.28608 0.0208177 -1) (1.29438 0.0210069 -1) (1.30293 0.0211996 -1) (1.31173 0.0213957 -1) (1.3208 0.0215954 -1) (1.33013 0.0217987 -1) (1.33975 0.0220056 -1) (1.34965 0.0222162 -1) (1.35984 0.0224306 -1) (1.37034 0.0226488 -1) (1.38115 0.022871 -1) (1.39229 0.0230971 -1) (1.40381 0.0233275 -1) (1.41568 0.0235628 -1) (1.4279 0.0238033 -1) (1.44049 0.0240489 -1) (1.45345 0.0242996 -1) (1.46679 0.0245556 -1) (1.48052 0.0248169 -1) (1.49466 0.0250838 -1) (1.50922 0.0253563 -1) (1.5242 0.0256348 -1) (1.53962 0.0259195 -1) (1.55549 0.0262106 -1) (1.57181 0.0265085 -1) (1.58861 0.0268134 -1) (1.60589 0.0271257 -1) (1.62367 0.0274459 -1) (1.64195 0.0277742 -1) (1.66081 0.0281107 -1) (1.6802 0.0284568 -1) (1.70014 0.028813 -1) (1.72063 0.0291795 -1) (1.74169 0.0295567 -1) (1.76332 0.0299451 -1) (1.78555 0.030345 -1) (1.80838 0.0307571 -1) (1.83182 0.0311816 -1) (1.85588 0.0316193 -1) (1.88058 0.0320707 -1) (1.90592 0.0325362 -1) (1.93193 0.0330165 -1) (1.95866 0.0335112 -1) (1.98608 0.0340226 -1) (2.01419 0.0345509 -1) (2.04301 0.0350966 -1) (2.07253 0.0356601 -1) (2.10279 0.0362418 -1) (2.13377 0.0368423 -1) (2.16551 0.037462 -1) (2.19799 0.0381015 -1) (2.23125 0.0387612 -1) (2.26535 0.039441 -1) (2.30024 0.0401429 -1) (2.33594 0.040867 -1) (2.37245 0.0416137 -1) (2.40978 0.0423834 -1) (2.44795 0.0431765 -1) (2.48696 0.0439934 -1) (2.52683 0.0448347 -1) (2.52683 -0.0448347 -1) (2.52842 -0.140837 -1) (2.52034 -0.243507 -1) (2.50765 -0.347958 -1) (2.48979 -0.454354 -1) (2.46647 -0.562622 -1) (2.43729 -0.672656 -1) (2.40187 -0.784296 -1) (2.35977 -0.897306 -1) (2.31051 -1.01135 -1) (2.25361 -1.12597 -1) (2.18858 -1.24055 -1) (2.11496 -1.3543 -1) (2.03234 -1.46623 -1) (1.94045 -1.57522 -1) (1.83914 -1.67998 -1) (1.72848 -1.77917 -1) (1.60875 -1.87143 -1) (1.48042 -1.95542 -1) (1.3442 -2.0299 -1) (1.20097 -2.09375 -1) (1.0518 -2.14601 -1) (0.897865 -2.18588 -1) (0.740474 -2.21277 -1) (0.580998 -2.22627 -1) (0.420852 -2.22618 -1) (0.261466 -2.21252 -1) (0.104247 -2.18548 -1) (-0.0494443 -2.14546 -1) (-0.198328 -2.09307 -1) (-0.34123 -2.02905 -1) (-0.477108 -1.95432 -1) (-0.605075 -1.86993 -1) (-0.724418 -1.77705 -1) (-0.834615 -1.6769 -1) (-0.935342 -1.57079 -1) (-1.02647 -1.46 -1) (-1.10807 -1.3458 -1) (-1.18037 -1.22935 -1) (-1.24375 -1.11174 -1) (-1.29867 -0.993877 -1) (-1.34567 -0.876525 -1) (-1.38532 -0.760277 -1) (-1.41816 -0.64557 -1) (-1.44471 -0.532705 -1) (-1.46545 -0.421871 -1) (-1.4808 -0.313173 -1) (-1.4911 -0.206669 -1) (-1.49664 -0.102438 -1) (-1.49824 2.48147e-17 -1) (-1.49664 0.102438 -1) (-1.4911 0.206669 -1) (-1.4808 0.313173 -1) (-1.46545 0.421871 -1) (-1.44471 0.532705 -1) (-1.41816 0.64557 -1) (-1.38532 0.760277 -1) (-1.34567 0.876525 -1) (-1.29867 0.993877 -1) (-1.24375 1.11174 -1) (-1.18037 1.22935 -1) (-1.10807 1.3458 -1) (-1.02647 1.46 -1) (-0.935342 1.57079 -1) (-0.834615 1.6769 -1) (-0.724418 1.77705 -1) (-0.605075 1.86993 -1) (-0.477108 1.95432 -1) (-0.34123 2.02905 -1) (-0.198328 2.09307 -1) (-0.0494443 2.14546 -1) (0.104247 2.18548 -1) (0.261466 2.21252 -1) (0.420852 2.22618 -1) (0.580998 2.22627 -1) (0.740474 2.21277 -1) (0.897865 2.18588 -1) (1.0518 2.14601 -1) (1.20097 2.09375 -1) (1.3442 2.0299 -1) (1.48042 1.95542 -1) (1.60875 1.87143 -1) (1.72848 1.77917 -1) (1.83914 1.67998 -1) (1.94045 1.57522 -1) (2.03234 1.46623 -1) (2.11496 1.3543 -1) (2.18858 1.24055 -1) (2.25361 1.12597 -1) (2.31051 1.01135 -1) (2.35977 0.897306 -1) (2.40187 0.784296 -1) (2.43729 0.672656 -1) (2.46647 0.562622 -1) (2.48979 0.454354 -1) (2.50765 0.347958 -1) (2.52034 0.243507 -1) (2.52842 0.140837 -1) (0.990311 0.00350405 -1) (0.979559 0.00508537 -1) (0.968028 0.00666615 -1) (0.955641 0.0083275 -1) (0.942348 0.0100806 -1) (0.928108 0.0119279 -1) (0.912888 0.0138685 -1) (0.896656 0.0159004 -1) (0.87939 0.0180201 -1) (0.86107 0.0202233 -1) (0.841688 0.0225037 -1) (0.821241 0.024854 -1) (0.79974 0.0272652 -1) (0.777203 0.0297264 -1) (0.753662 0.0322253 -1) (0.729159 0.0347474 -1) (0.703751 0.0372766 -1) (0.677506 0.0397948 -1) (0.650503 0.0422821 -1) (0.622836 0.0447169 -1) (0.594606 0.047076 -1) (0.565925 0.0493347 -1) (0.536912 0.0514675 -1) (0.507694 0.0534483 -1) (0.478397 0.0552509 -1) (0.449154 0.0568497 -1) (0.420093 0.05822 -1) (0.391341 0.0593391 -1) (0.363021 0.0601866 -1) (0.335246 0.0607446 -1) (0.308124 0.0609989 -1) (0.281749 0.0609382 -1) (0.256209 0.0605551 -1) (0.231576 0.059845 -1) (0.207913 0.0588065 -1) (0.18527 0.0574402 -1) (0.163684 0.0557484 -1) (0.143184 0.0537334 -1) (0.123788 0.0513968 -1) (0.105506 0.0487363 -1) (0.0883413 0.0457451 -1) (0.0722942 0.0424064 -1) (0.0573662 0.0386885 -1) (0.043567 0.0345348 -1) (0.0309308 0.0298433 -1) (0.0195515 0.0244328 -1) (0.00969963 0.0179583 -1) (0.00219182 0.0098581 -1) (-0.000846408 5.42101e-20 -1) (0.00219182 -0.0098581 -1) (0.00969963 -0.0179583 -1) (0.0195515 -0.0244328 -1) (0.0309308 -0.0298433 -1) (0.043567 -0.0345348 -1) (0.0573662 -0.0386885 -1) (0.0722942 -0.0424064 -1) (0.0883413 -0.0457451 -1) (0.105506 -0.0487363 -1) (0.123788 -0.0513968 -1) (0.143184 -0.0537334 -1) (0.163684 -0.0557484 -1) (0.18527 -0.0574402 -1) (0.207913 -0.0588065 -1) (0.231576 -0.059845 -1) (0.256209 -0.0605551 -1) (0.281749 -0.0609382 -1) (0.308124 -0.0609989 -1) (0.335246 -0.0607446 -1) (0.363021 -0.0601866 -1) (0.391341 -0.0593391 -1) (0.420093 -0.05822 -1) (0.449154 -0.0568497 -1) (0.478397 -0.0552509 -1) (0.507694 -0.0534483 -1) (0.536912 -0.0514675 -1) (0.565925 -0.0493347 -1) (0.594606 -0.047076 -1) (0.622836 -0.0447169 -1) (0.650503 -0.0422821 -1) (0.677506 -0.0397948 -1) (0.703751 -0.0372766 -1) (0.729159 -0.0347474 -1) (0.753662 -0.0322253 -1) (0.777203 -0.0297264 -1) (0.79974 -0.0272652 -1) (0.821241 -0.024854 -1) (0.841688 -0.0225037 -1) (0.86107 -0.0202233 -1) (0.87939 -0.0180201 -1) (0.896656 -0.0159004 -1) (0.912888 -0.0138685 -1) (0.928108 -0.0119279 -1) (0.942348 -0.0100806 -1) (0.955641 -0.0083275 -1) (0.968028 -0.00666615 -1) (0.979559 -0.00508537 -1) (0.990311 -0.00350405 -1) (1.00068 -0.00166521 -1) (0.990534 0.00436388 -1) (0.97972 0.00607425 -1) (0.968164 0.00767677 -1) (0.955772 0.00934345 -1) (0.942476 0.0110971 -1) (0.928234 0.0129442 -1) (0.913011 0.0148846 -1) (0.896778 0.0169162 -1) (0.879509 0.0190358 -1) (0.861187 0.0212388 -1) (0.841802 0.0235192 -1) (0.821353 0.0258695 -1) (0.799849 0.0282807 -1) (0.777309 0.030742 -1) (0.753765 0.0332408 -1) (0.729259 0.035763 -1) (0.703848 0.0382923 -1) (0.677599 0.0408107 -1) (0.650593 0.0432982 -1) (0.622922 0.0457332 -1) (0.594687 0.0480924 -1) (0.566001 0.0503513 -1) (0.536984 0.0524844 -1) (0.507759 0.0544654 -1) (0.478456 0.0562683 -1) (0.449206 0.0578673 -1) (0.420138 0.0592378 -1) (0.391378 0.0603571 -1) (0.363048 0.0612047 -1) (0.335263 0.0617628 -1) (0.308129 0.062017 -1) (0.281743 0.0619561 -1) (0.256189 0.0615726 -1) (0.231542 0.0608618 -1) (0.207863 0.0598224 -1) (0.185202 0.0584547 -1) (0.163598 0.056761 -1) (0.143077 0.0547434 -1) (0.123658 0.0524031 -1) (0.10535 0.0497377 -1) (0.0881552 0.0467395 -1) (0.0720731 0.0433907 -1) (0.0571029 0.0396579 -1) (0.043251 0.0354803 -1) (0.030546 0.0307483 -1) (0.0190731 0.0252627 -1) (0.00909335 0.018643 -1) (0.00143235 0.0102718 -1) (-0.00169292 8.13152e-20 -1) (0.00143235 -0.0102718 -1) (0.00909335 -0.018643 -1) (0.0190731 -0.0252627 -1) (0.030546 -0.0307483 -1) (0.043251 -0.0354803 -1) (0.0571029 -0.0396579 -1) (0.0720731 -0.0433907 -1) (0.0881552 -0.0467395 -1) (0.10535 -0.0497377 -1) (0.123658 -0.0524031 -1) (0.143077 -0.0547434 -1) (0.163598 -0.056761 -1) (0.185202 -0.0584547 -1) (0.207863 -0.0598224 -1) (0.231542 -0.0608618 -1) (0.256189 -0.0615726 -1) (0.281743 -0.0619561 -1) (0.308129 -0.062017 -1) (0.335263 -0.0617628 -1) (0.363048 -0.0612047 -1) (0.391378 -0.0603571 -1) (0.420138 -0.0592378 -1) (0.449206 -0.0578673 -1) (0.478456 -0.0562683 -1) (0.507759 -0.0544654 -1) (0.536984 -0.0524844 -1) (0.566001 -0.0503513 -1) (0.594687 -0.0480924 -1) (0.622922 -0.0457332 -1) (0.650593 -0.0432982 -1) (0.677599 -0.0408107 -1) (0.703848 -0.0382923 -1) (0.729259 -0.035763 -1) (0.753765 -0.0332408 -1) (0.777309 -0.030742 -1) (0.799849 -0.0282807 -1) (0.821353 -0.0258695 -1) (0.841802 -0.0235192 -1) (0.861187 -0.0212388 -1) (0.879509 -0.0190358 -1) (0.896778 -0.0169162 -1) (0.913011 -0.0148846 -1) (0.928234 -0.0129442 -1) (0.942476 -0.0110971 -1) (0.955772 -0.00934345 -1) (0.968164 -0.00767677 -1) (0.97972 -0.00607425 -1) (0.990534 -0.00436388 -1) (1.00136 -0.00213422 -1) (0.990775 0.0052277 -1) (0.979893 0.00707773 -1) (0.968304 0.00870896 -1) (0.955906 0.0103834 -1) (0.942606 0.0121379 -1) (0.928362 0.0139848 -1) (0.913137 0.0159246 -1) (0.896901 0.0179558 -1) (0.879629 0.020075 -1) (0.861305 0.0222777 -1) (0.841918 0.0245578 -1) (0.821466 0.0269079 -1) (0.799959 0.0293189 -1) (0.777417 0.0317801 -1) (0.75387 0.0342789 -1) (0.729361 0.036801 -1) (0.703947 0.0393303 -1) (0.677694 0.0418487 -1) (0.650684 0.0443363 -1) (0.623009 0.0467714 -1) (0.59477 0.0491308 -1) (0.566079 0.0513899 -1) (0.537056 0.0535231 -1) (0.507826 0.0555044 -1) (0.478517 0.0573074 -1) (0.44926 0.0589066 -1) (0.420183 0.0602773 -1) (0.391415 0.0613968 -1) (0.363076 0.0622445 -1) (0.33528 0.0628026 -1) (0.308135 0.0630568 -1) (0.281737 0.0629957 -1) (0.25617 0.0626118 -1) (0.231508 0.0619004 -1) (0.207813 0.0608599 -1) (0.185135 0.0594909 -1) (0.163511 0.0577952 -1) (0.142969 0.0557749 -1) (0.123527 0.0534308 -1) (0.105191 0.0507601 -1) (0.0879661 0.0477545 -1) (0.0718481 0.044395 -1) (0.0568348 0.0406459 -1) (0.0429291 0.0364423 -1) (0.030154 0.0316656 -1) (0.0185865 0.0260981 -1) (0.00848131 0.0193242 -1) (0.000677372 0.0106778 -1) (-0.00252661 5.42101e-20 -1) (0.000677372 -0.0106778 -1) (0.00848131 -0.0193242 -1) (0.0185865 -0.0260981 -1) (0.030154 -0.0316656 -1) (0.0429291 -0.0364423 -1) (0.0568348 -0.0406459 -1) (0.0718481 -0.044395 -1) (0.0879661 -0.0477545 -1) (0.105191 -0.0507601 -1) (0.123527 -0.0534308 -1) (0.142969 -0.0557749 -1) (0.163511 -0.0577952 -1) (0.185135 -0.0594909 -1) (0.207813 -0.0608599 -1) (0.231508 -0.0619004 -1) (0.25617 -0.0626118 -1) (0.281737 -0.0629957 -1) (0.308135 -0.0630568 -1) (0.33528 -0.0628026 -1) (0.363076 -0.0622445 -1) (0.391415 -0.0613968 -1) (0.420183 -0.0602773 -1) (0.44926 -0.0589066 -1) (0.478517 -0.0573074 -1) (0.507826 -0.0555044 -1) (0.537056 -0.0535231 -1) (0.566079 -0.0513899 -1) (0.59477 -0.0491308 -1) (0.623009 -0.0467714 -1) (0.650684 -0.0443363 -1) (0.677694 -0.0418487 -1) (0.703947 -0.0393303 -1) (0.729361 -0.036801 -1) (0.75387 -0.0342789 -1) (0.777417 -0.0317801 -1) (0.799959 -0.0293189 -1) (0.821466 -0.0269079 -1) (0.841918 -0.0245578 -1) (0.861305 -0.0222777 -1) (0.879629 -0.020075 -1) (0.896901 -0.0179558 -1) (0.913137 -0.0159246 -1) (0.928362 -0.0139848 -1) (0.942606 -0.0121379 -1) (0.955906 -0.0103834 -1) (0.968304 -0.00870896 -1) (0.979893 -0.00707773 -1) (0.990775 -0.0052277 -1) (1.002 -0.00261901 -1) (0.991038 0.00609345 -1) (0.980077 0.00809416 -1) (0.96845 0.00976237 -1) (0.956042 0.0114477 -1) (0.942738 0.0132036 -1) (0.928491 0.01505 -1) (0.913264 0.0169891 -1) (0.897025 0.0190196 -1) (0.879752 0.0211382 -1) (0.861425 0.0233403 -1) (0.842035 0.0256199 -1) (0.821581 0.0279696 -1) (0.800072 0.0303803 -1) (0.777526 0.0328412 -1) (0.753976 0.0353399 -1) (0.729465 0.0378619 -1) (0.704047 0.0403911 -1) (0.677791 0.0429095 -1) (0.650777 0.045397 -1) (0.623098 0.0478322 -1) (0.594854 0.0501916 -1) (0.566159 0.0524508 -1) (0.537131 0.0545842 -1) (0.507894 0.0565656 -1) (0.478579 0.0583688 -1) (0.449314 0.0599682 -1) (0.42023 0.0613391 -1) (0.391453 0.0624587 -1) (0.363104 0.0633065 -1) (0.335299 0.0638647 -1) (0.308142 0.0641188 -1) (0.281731 0.0640575 -1) (0.25615 0.0636731 -1) (0.231474 0.0629611 -1) (0.207763 0.0619197 -1) (0.185066 0.0605491 -1) (0.163423 0.0588514 -1) (0.14286 0.0568283 -1) (0.123393 0.0544803 -1) (0.10503 0.0518041 -1) (0.0877737 0.0487906 -1) (0.0716191 0.0454196 -1) (0.0565616 0.0416528 -1) (0.0426006 0.0374208 -1) (0.0297538 0.0325951 -1) (0.0180908 0.0269387 -1) (0.00786237 0.0200019 -1) (-7.50454e-05 0.0110761 -1) (-0.00334993 9.48677e-20 -1) (-7.50454e-05 -0.0110761 -1) (0.00786237 -0.0200019 -1) (0.0180908 -0.0269387 -1) (0.0297538 -0.0325951 -1) (0.0426006 -0.0374208 -1) (0.0565616 -0.0416528 -1) (0.0716191 -0.0454196 -1) (0.0877737 -0.0487906 -1) (0.10503 -0.0518041 -1) (0.123393 -0.0544803 -1) (0.14286 -0.0568283 -1) (0.163423 -0.0588514 -1) (0.185066 -0.0605491 -1) (0.207763 -0.0619197 -1) (0.231474 -0.0629611 -1) (0.25615 -0.0636731 -1) (0.281731 -0.0640575 -1) (0.308142 -0.0641188 -1) (0.335299 -0.0638647 -1) (0.363104 -0.0633065 -1) (0.391453 -0.0624587 -1) (0.42023 -0.0613391 -1) (0.449314 -0.0599682 -1) (0.478579 -0.0583688 -1) (0.507894 -0.0565656 -1) (0.537131 -0.0545842 -1) (0.566159 -0.0524508 -1) (0.594854 -0.0501916 -1) (0.623098 -0.0478322 -1) (0.650777 -0.045397 -1) (0.677791 -0.0429095 -1) (0.704047 -0.0403911 -1) (0.729465 -0.0378619 -1) (0.753976 -0.0353399 -1) (0.777526 -0.0328412 -1) (0.800072 -0.0303803 -1) (0.821581 -0.0279696 -1) (0.842035 -0.0256199 -1) (0.861425 -0.0233403 -1) (0.879752 -0.0211382 -1) (0.897025 -0.0190196 -1) (0.913264 -0.0169891 -1) (0.928491 -0.01505 -1) (0.942738 -0.0132036 -1) (0.956042 -0.0114477 -1) (0.96845 -0.00976237 -1) (0.980077 -0.00809416 -1) (0.991038 -0.00609345 -1) (1.00259 -0.00309427 -1) (0.991326 0.00695882 -1) (0.980275 0.00912204 -1) (0.968602 0.0108366 -1) (0.956182 0.0125363 -1) (0.942872 0.0142946 -1) (0.928623 0.0161406 -1) (0.913393 0.0180787 -1) (0.897152 0.0201082 -1) (0.879876 0.0222258 -1) (0.861547 0.0244272 -1) (0.842155 0.0267062 -1) (0.821698 0.0290553 -1) (0.800186 0.0314655 -1) (0.777638 0.033926 -1) (0.754085 0.0364243 -1) (0.72957 0.0389461 -1) (0.704149 0.0414751 -1) (0.677889 0.0439933 -1) (0.650872 0.0464808 -1) (0.623188 0.0489159 -1) (0.59494 0.0512754 -1) (0.56624 0.0535346 -1) (0.537206 0.0556681 -1) (0.507964 0.0576496 -1) (0.478642 0.059453 -1) (0.44937 0.0610525 -1) (0.420278 0.0624235 -1) (0.391492 0.0635433 -1) (0.363134 0.0643912 -1) (0.335317 0.0649494 -1) (0.308149 0.0652034 -1) (0.281725 0.0651419 -1) (0.256131 0.0647571 -1) (0.231439 0.0640444 -1) (0.207711 0.063002 -1) (0.184997 0.06163 -1) (0.163334 0.0599302 -1) (0.142748 0.0579041 -1) (0.123257 0.055552 -1) (0.104866 0.05287 -1) (0.0875778 0.0498481 -1) (0.0713856 0.0464648 -1) (0.0562827 0.0426789 -1) (0.0422651 0.0384157 -1) (0.0293448 0.0335364 -1) (0.0175852 0.027784 -1) (0.00723573 0.0206759 -1) (-0.000826414 0.0114671 -1) (-0.004165 1.21973e-19 -1) (-0.000826414 -0.0114671 -1) (0.00723573 -0.0206759 -1) (0.0175852 -0.027784 -1) (0.0293448 -0.0335364 -1) (0.0422651 -0.0384157 -1) (0.0562827 -0.0426789 -1) (0.0713856 -0.0464648 -1) (0.0875778 -0.0498481 -1) (0.104866 -0.05287 -1) (0.123257 -0.055552 -1) (0.142748 -0.0579041 -1) (0.163334 -0.0599302 -1) (0.184997 -0.06163 -1) (0.207711 -0.063002 -1) (0.231439 -0.0640444 -1) (0.256131 -0.0647571 -1) (0.281725 -0.0651419 -1) (0.308149 -0.0652034 -1) (0.335317 -0.0649494 -1) (0.363134 -0.0643912 -1) (0.391492 -0.0635433 -1) (0.420278 -0.0624235 -1) (0.44937 -0.0610525 -1) (0.478642 -0.059453 -1) (0.507964 -0.0576496 -1) (0.537206 -0.0556681 -1) (0.56624 -0.0535346 -1) (0.59494 -0.0512754 -1) (0.623188 -0.0489159 -1) (0.650872 -0.0464808 -1) (0.677889 -0.0439933 -1) (0.704149 -0.0414751 -1) (0.72957 -0.0389461 -1) (0.754085 -0.0364243 -1) (0.777638 -0.033926 -1) (0.800186 -0.0314655 -1) (0.821698 -0.0290553 -1) (0.842155 -0.0267062 -1) (0.861547 -0.0244272 -1) (0.879876 -0.0222258 -1) (0.897152 -0.0201082 -1) (0.913393 -0.0180787 -1) (0.928623 -0.0161406 -1) (0.942872 -0.0142946 -1) (0.956182 -0.0125363 -1) (0.968602 -0.0108366 -1) (0.980275 -0.00912204 -1) (0.991326 -0.00695882 -1) (1.00315 -0.00354827 -1) (0.991639 0.0078219 -1) (0.980487 0.0101601 -1) (0.968762 0.011931 -1) (0.956325 0.0136495 -1) (0.943009 0.0154112 -1) (0.928756 0.017257 -1) (0.913524 0.0191939 -1) (0.897281 0.0212221 -1) (0.880003 0.0233386 -1) (0.861671 0.025539 -1) (0.842276 0.0278171 -1) (0.821817 0.0301654 -1) (0.800302 0.032575 -1) (0.777751 0.0350349 -1) (0.754195 0.0375328 -1) (0.729677 0.0400542 -1) (0.704252 0.0425829 -1) (0.677989 0.0451008 -1) (0.650968 0.0475881 -1) (0.62328 0.0500231 -1) (0.595028 0.0523825 -1) (0.566323 0.0546418 -1) (0.537283 0.0567753 -1) (0.508035 0.0587569 -1) (0.478707 0.0605604 -1) (0.449427 0.06216 -1) (0.420327 0.0635312 -1) (0.391532 0.064651 -1) (0.363164 0.065499 -1) (0.335337 0.0660573 -1) (0.308157 0.0663112 -1) (0.28172 0.0662495 -1) (0.256112 0.0658643 -1) (0.231404 0.0651509 -1) (0.20766 0.0641075 -1) (0.184927 0.062734 -1) (0.163243 0.061032 -1) (0.142635 0.0590029 -1) (0.123118 0.0566464 -1) (0.1047 0.0539583 -1) (0.0873781 0.0509275 -1) (0.0711474 0.0475308 -1) (0.055998 0.0437243 -1) (0.041922 0.0394271 -1) (0.0289265 0.0344894 -1) (0.0170692 0.0286337 -1) (0.00660076 0.0213464 -1) (-0.00157792 0.011851 -1) (-0.00497357 1.0842e-19 -1) (-0.00157792 -0.011851 -1) (0.00660076 -0.0213464 -1) (0.0170692 -0.0286337 -1) (0.0289265 -0.0344894 -1) (0.041922 -0.0394271 -1) (0.055998 -0.0437243 -1) (0.0711474 -0.0475308 -1) (0.0873781 -0.0509275 -1) (0.1047 -0.0539583 -1) (0.123118 -0.0566464 -1) (0.142635 -0.0590029 -1) (0.163243 -0.061032 -1) (0.184927 -0.062734 -1) (0.20766 -0.0641075 -1) (0.231404 -0.0651509 -1) (0.256112 -0.0658643 -1) (0.28172 -0.0662495 -1) (0.308157 -0.0663112 -1) (0.335337 -0.0660573 -1) (0.363164 -0.065499 -1) (0.391532 -0.064651 -1) (0.420327 -0.0635312 -1) (0.449427 -0.06216 -1) (0.478707 -0.0605604 -1) (0.508035 -0.0587569 -1) (0.537283 -0.0567753 -1) (0.566323 -0.0546418 -1) (0.595028 -0.0523825 -1) (0.62328 -0.0500231 -1) (0.650968 -0.0475881 -1) (0.677989 -0.0451008 -1) (0.704252 -0.0425829 -1) (0.729677 -0.0400542 -1) (0.754195 -0.0375328 -1) (0.777751 -0.0350349 -1) (0.800302 -0.032575 -1) (0.821817 -0.0301654 -1) (0.842276 -0.0278171 -1) (0.861671 -0.025539 -1) (0.880003 -0.0233386 -1) (0.897281 -0.0212221 -1) (0.913524 -0.0191939 -1) (0.928756 -0.017257 -1) (0.943009 -0.0154112 -1) (0.956325 -0.0136495 -1) (0.968762 -0.011931 -1) (0.980487 -0.0101601 -1) (0.991639 -0.0078219 -1) (1.00369 -0.00397694 -1) (0.991978 0.00868117 -1) (0.980714 0.011207 -1) (0.968931 0.0130452 -1) (0.956473 0.0147872 -1) (0.943149 0.0165541 -1) (0.928892 0.0183999 -1) (0.913658 0.0203354 -1) (0.897412 0.022362 -1) (0.880131 0.0244771 -1) (0.861797 0.0266762 -1) (0.842399 0.0289532 -1) (0.821937 0.0313006 -1) (0.80042 0.0337093 -1) (0.777866 0.0361685 -1) (0.754307 0.0386657 -1) (0.729786 0.0411866 -1) (0.704358 0.0437149 -1) (0.678091 0.0462325 -1) (0.651066 0.0487196 -1) (0.623374 0.0511544 -1) (0.595117 0.0535137 -1) (0.566407 0.0557728 -1) (0.537362 0.0579063 -1) (0.508108 0.059888 -1) (0.478773 0.0616915 -1) (0.449486 0.0632912 -1) (0.420377 0.0646625 -1) (0.391573 0.0657825 -1) (0.363195 0.0666306 -1) (0.335357 0.0671888 -1) (0.308165 0.0674427 -1) (0.281715 0.0673808 -1) (0.256092 0.0669952 -1) (0.231369 0.0662811 -1) (0.207607 0.0652366 -1) (0.184855 0.0638615 -1) (0.163151 0.0621573 -1) (0.14252 0.060125 -1) (0.122977 0.057764 -1) (0.104529 0.0550694 -1) (0.0871745 0.0520291 -1) (0.0709043 0.0486181 -1) (0.055707 0.0447891 -1) (0.041571 0.040455 -1) (0.0284984 0.0354538 -1) (0.0165422 0.0294877 -1) (0.00595698 0.0220132 -1) (-0.00233056 0.0122281 -1) (-0.00577718 1.21973e-19 -1) (-0.00233056 -0.0122281 -1) (0.00595698 -0.0220132 -1) (0.0165422 -0.0294877 -1) (0.0284984 -0.0354538 -1) (0.041571 -0.040455 -1) (0.055707 -0.0447891 -1) (0.0709043 -0.0486181 -1) (0.0871745 -0.0520291 -1) (0.104529 -0.0550694 -1) (0.122977 -0.057764 -1) (0.14252 -0.060125 -1) (0.163151 -0.0621573 -1) (0.184855 -0.0638615 -1) (0.207607 -0.0652366 -1) (0.231369 -0.0662811 -1) (0.256092 -0.0669952 -1) (0.281715 -0.0673808 -1) (0.308165 -0.0674427 -1) (0.335357 -0.0671888 -1) (0.363195 -0.0666306 -1) (0.391573 -0.0657825 -1) (0.420377 -0.0646625 -1) (0.449486 -0.0632912 -1) (0.478773 -0.0616915 -1) (0.508108 -0.059888 -1) (0.537362 -0.0579063 -1) (0.566407 -0.0557728 -1) (0.595117 -0.0535137 -1) (0.623374 -0.0511544 -1) (0.651066 -0.0487196 -1) (0.678091 -0.0462325 -1) (0.704358 -0.0437149 -1) (0.729786 -0.0411866 -1) (0.754307 -0.0386657 -1) (0.777866 -0.0361685 -1) (0.80042 -0.0337093 -1) (0.821937 -0.0313006 -1) (0.842399 -0.0289532 -1) (0.861797 -0.0266762 -1) (0.880131 -0.0244771 -1) (0.897412 -0.022362 -1) (0.913658 -0.0203354 -1) (0.928892 -0.0183999 -1) (0.943149 -0.0165541 -1) (0.956473 -0.0147872 -1) (0.968931 -0.0130452 -1) (0.980714 -0.011207 -1) (0.991978 -0.00868117 -1) (1.00422 -0.00437989 -1) (0.992342 0.00953541 -1) (0.980958 0.0122617 -1) (0.969108 0.0141784 -1) (0.956626 0.0159493 -1) (0.943292 0.0177234 -1) (0.929031 0.0195697 -1) (0.913793 0.0215037 -1) (0.897545 0.0235286 -1) (0.880262 0.025642 -1) (0.861925 0.0278395 -1) (0.842525 0.0301151 -1) (0.82206 0.0324613 -1) (0.80054 0.034869 -1) (0.777983 0.0373274 -1) (0.754421 0.0398238 -1) (0.729896 0.042344 -1) (0.704465 0.0448718 -1) (0.678195 0.047389 -1) (0.651166 0.0498757 -1) (0.62347 0.0523102 -1) (0.595208 0.0546693 -1) (0.566493 0.0569283 -1) (0.537443 0.0590617 -1) (0.508182 0.0610434 -1) (0.47884 0.0628469 -1) (0.449546 0.0644468 -1) (0.420429 0.0658181 -1) (0.391616 0.0669382 -1) (0.363227 0.0677863 -1) (0.335378 0.0683445 -1) (0.308174 0.0685983 -1) (0.28171 0.0685362 -1) (0.256073 0.0681502 -1) (0.231334 0.0674354 -1) (0.207554 0.0663898 -1) (0.184783 0.0650132 -1) (0.163057 0.0633067 -1) (0.142403 0.061271 -1) (0.122834 0.0589052 -1) (0.104356 0.0562037 -1) (0.0869667 0.0531533 -1) (0.0706559 0.049727 -1) (0.0554093 0.0458736 -1) (0.0412115 0.0414992 -1) (0.0280598 0.0364294 -1) (0.0160038 0.0303456 -1) (0.00530395 0.0226766 -1) (-0.00308517 0.012599 -1) (-0.00657715 1.35525e-19 -1) (-0.00308517 -0.012599 -1) (0.00530395 -0.0226766 -1) (0.0160038 -0.0303456 -1) (0.0280598 -0.0364294 -1) (0.0412115 -0.0414992 -1) (0.0554093 -0.0458736 -1) (0.0706559 -0.049727 -1) (0.0869667 -0.0531533 -1) (0.104356 -0.0562037 -1) (0.122834 -0.0589052 -1) (0.142403 -0.061271 -1) (0.163057 -0.0633067 -1) (0.184783 -0.0650132 -1) (0.207554 -0.0663898 -1) (0.231334 -0.0674354 -1) (0.256073 -0.0681502 -1) (0.28171 -0.0685362 -1) (0.308174 -0.0685983 -1) (0.335378 -0.0683445 -1) (0.363227 -0.0677863 -1) (0.391616 -0.0669382 -1) (0.420429 -0.0658181 -1) (0.449546 -0.0644468 -1) (0.47884 -0.0628469 -1) (0.508182 -0.0610434 -1) (0.537443 -0.0590617 -1) (0.566493 -0.0569283 -1) (0.595208 -0.0546693 -1) (0.62347 -0.0523102 -1) (0.651166 -0.0498757 -1) (0.678195 -0.047389 -1) (0.704465 -0.0448718 -1) (0.729896 -0.042344 -1) (0.754421 -0.0398238 -1) (0.777983 -0.0373274 -1) (0.80054 -0.034869 -1) (0.82206 -0.0324613 -1) (0.842525 -0.0301151 -1) (0.861925 -0.0278395 -1) (0.880262 -0.025642 -1) (0.897545 -0.0235286 -1) (0.913793 -0.0215037 -1) (0.929031 -0.0195697 -1) (0.943292 -0.0177234 -1) (0.956626 -0.0159493 -1) (0.969108 -0.0141784 -1) (0.980958 -0.0122617 -1) (0.992342 -0.00953541 -1) (1.00474 -0.00475831 -1) (0.992732 0.0103836 -1) (0.98122 0.013323 -1) (0.969297 0.0153298 -1) (0.956785 0.0171359 -1) (0.943438 0.0189196 -1) (0.929172 0.020767 -1) (0.913931 0.0226995 -1) (0.897681 0.0247223 -1) (0.880395 0.0268337 -1) (0.862055 0.0290294 -1) (0.842653 0.0313035 -1) (0.822185 0.0336483 -1) (0.800662 0.0360547 -1) (0.778102 0.038512 -1) (0.754537 0.0410076 -1) (0.730009 0.043527 -1) (0.704575 0.0460541 -1) (0.678301 0.0485707 -1) (0.651268 0.0510569 -1) (0.623567 0.0534911 -1) (0.595301 0.0558499 -1) (0.56658 0.0581088 -1) (0.537525 0.0602421 -1) (0.508258 0.0622236 -1) (0.478909 0.0640272 -1) (0.449607 0.065627 -1) (0.420482 0.0669985 -1) (0.391659 0.0681186 -1) (0.36326 0.0689668 -1) (0.3354 0.069525 -1) (0.308183 0.0697787 -1) (0.281706 0.0697163 -1) (0.256053 0.0693299 -1) (0.231298 0.0686144 -1) (0.2075 0.0675677 -1) (0.18471 0.0661894 -1) (0.162962 0.0644805 -1) (0.142283 0.0624414 -1) (0.122688 0.0600706 -1) (0.104179 0.0573618 -1) (0.0867546 0.0543006 -1) (0.0704021 0.0508576 -1) (0.0551046 0.0469777 -1) (0.0408431 0.0425596 -1) (0.0276103 0.0374159 -1) (0.0154535 0.0312072 -1) (0.00464132 0.0233365 -1) (-0.00384251 0.0129638 -1) (-0.00737468 2.30393e-19 -1) (-0.00384251 -0.0129638 -1) (0.00464132 -0.0233365 -1) (0.0154535 -0.0312072 -1) (0.0276103 -0.0374159 -1) (0.0408431 -0.0425596 -1) (0.0551046 -0.0469777 -1) (0.0704021 -0.0508576 -1) (0.0867546 -0.0543006 -1) (0.104179 -0.0573618 -1) (0.122688 -0.0600706 -1) (0.142283 -0.0624414 -1) (0.162962 -0.0644805 -1) (0.18471 -0.0661894 -1) (0.2075 -0.0675677 -1) (0.231298 -0.0686144 -1) (0.256053 -0.0693299 -1) (0.281706 -0.0697163 -1) (0.308183 -0.0697787 -1) (0.3354 -0.069525 -1) (0.36326 -0.0689668 -1) (0.391659 -0.0681186 -1) (0.420482 -0.0669985 -1) (0.449607 -0.065627 -1) (0.478909 -0.0640272 -1) (0.508258 -0.0622236 -1) (0.537525 -0.0602421 -1) (0.56658 -0.0581088 -1) (0.595301 -0.0558499 -1) (0.623567 -0.0534911 -1) (0.651268 -0.0510569 -1) (0.678301 -0.0485707 -1) (0.704575 -0.0460541 -1) (0.730009 -0.043527 -1) (0.754537 -0.0410076 -1) (0.778102 -0.038512 -1) (0.800662 -0.0360547 -1) (0.822185 -0.0336483 -1) (0.842653 -0.0313035 -1) (0.862055 -0.0290294 -1) (0.880395 -0.0268337 -1) (0.897681 -0.0247223 -1) (0.913931 -0.0226995 -1) (0.929172 -0.020767 -1) (0.943438 -0.0189196 -1) (0.956785 -0.0171359 -1) (0.969297 -0.0153298 -1) (0.98122 -0.013323 -1) (0.992732 -0.0103836 -1) (1.00526 -0.00511404 -1) (0.993147 0.0112248 -1) (0.9815 0.0143901 -1) (0.969497 0.0164989 -1) (0.956951 0.0183466 -1) (0.943589 0.0201429 -1) (0.929316 0.0219924 -1) (0.914072 0.0239234 -1) (0.897819 0.0259439 -1) (0.88053 0.028053 -1) (0.862188 0.0302467 -1) (0.842783 0.0325189 -1) (0.822312 0.0348621 -1) (0.800786 0.0372671 -1) (0.778224 0.0397231 -1) (0.754655 0.0422176 -1) (0.730124 0.0447361 -1) (0.704686 0.0472623 -1) (0.678408 0.0497783 -1) (0.651371 0.052264 -1) (0.623666 0.0546977 -1) (0.595396 0.0570561 -1) (0.56667 0.0593147 -1) (0.537608 0.0614479 -1) (0.508335 0.0634293 -1) (0.478979 0.0652328 -1) (0.449669 0.0668327 -1) (0.420535 0.0682042 -1) (0.391703 0.0693243 -1) (0.363294 0.0701725 -1) (0.335422 0.0707308 -1) (0.308193 0.0709844 -1) (0.281701 0.0709218 -1) (0.256033 0.0705349 -1) (0.231261 0.0698187 -1) (0.207446 0.0687708 -1) (0.184635 0.0673908 -1) (0.162865 0.0656794 -1) (0.142162 0.0636366 -1) (0.122539 0.0612606 -1) (0.103999 0.058544 -1) (0.086538 0.0554712 -1) (0.0701425 0.0520103 -1) (0.0547926 0.0481018 -1) (0.0404654 0.0436363 -1) (0.0271494 0.038413 -1) (0.014891 0.0320723 -1) (0.00396876 0.0239931 -1) (-0.00460325 0.0133231 -1) (-0.00817082 1.89735e-19 -1) (-0.00460325 -0.0133231 -1) (0.00396876 -0.0239931 -1) (0.014891 -0.0320723 -1) (0.0271494 -0.038413 -1) (0.0404654 -0.0436363 -1) (0.0547926 -0.0481018 -1) (0.0701425 -0.0520103 -1) (0.086538 -0.0554712 -1) (0.103999 -0.058544 -1) (0.122539 -0.0612606 -1) (0.142162 -0.0636366 -1) (0.162865 -0.0656794 -1) (0.184635 -0.0673908 -1) (0.207446 -0.0687708 -1) (0.231261 -0.0698187 -1) (0.256033 -0.0705349 -1) (0.281701 -0.0709218 -1) (0.308193 -0.0709844 -1) (0.335422 -0.0707308 -1) (0.363294 -0.0701725 -1) (0.391703 -0.0693243 -1) (0.420535 -0.0682042 -1) (0.449669 -0.0668327 -1) (0.478979 -0.0652328 -1) (0.508335 -0.0634293 -1) (0.537608 -0.0614479 -1) (0.56667 -0.0593147 -1) (0.595396 -0.0570561 -1) (0.623666 -0.0546977 -1) (0.651371 -0.052264 -1) (0.678408 -0.0497783 -1) (0.704686 -0.0472623 -1) (0.730124 -0.0447361 -1) (0.754655 -0.0422176 -1) (0.778224 -0.0397231 -1) (0.800786 -0.0372671 -1) (0.822312 -0.0348621 -1) (0.842783 -0.0325189 -1) (0.862188 -0.0302467 -1) (0.88053 -0.028053 -1) (0.897819 -0.0259439 -1) (0.914072 -0.0239234 -1) (0.929316 -0.0219924 -1) (0.943589 -0.0201429 -1) (0.956951 -0.0183466 -1) (0.969497 -0.0164989 -1) (0.9815 -0.0143901 -1) (0.993147 -0.0112248 -1) (1.00577 -0.00544908 -1) (0.993586 0.0120584 -1) (0.981798 0.0154618 -1) (0.969711 0.0176848 -1) (0.957123 0.0195812 -1) (0.943743 0.0213937 -1) (0.929463 0.0232463 -1) (0.914215 0.025176 -1) (0.897959 0.027194 -1) (0.880668 0.0293006 -1) (0.862323 0.0314919 -1) (0.842915 0.033762 -1) (0.822442 0.0361033 -1) (0.800913 0.0385066 -1) (0.778347 0.0409612 -1) (0.754776 0.0434544 -1) (0.730241 0.0459718 -1) (0.704799 0.0484972 -1) (0.678518 0.0510123 -1) (0.651477 0.0534974 -1) (0.623768 0.0559305 -1) (0.595492 0.0582885 -1) (0.566761 0.0605468 -1) (0.537694 0.0626797 -1) (0.508414 0.064661 -1) (0.479051 0.0664644 -1) (0.449733 0.0680643 -1) (0.42059 0.0694357 -1) (0.391749 0.0705559 -1) (0.363329 0.0714041 -1) (0.335445 0.0719624 -1) (0.308202 0.0722159 -1) (0.281697 0.072153 -1) (0.256014 0.0717657 -1) (0.231225 0.0710487 -1) (0.20739 0.0699997 -1) (0.184559 0.0686179 -1) (0.162767 0.0669039 -1) (0.142038 0.0648573 -1) (0.122387 0.0624756 -1) (0.103815 0.0597508 -1) (0.0863166 0.0566656 -1) (0.0698768 0.0531853 -1) (0.0544728 0.0492458 -1) (0.0400778 0.044729 -1) (0.0266767 0.0394204 -1) (0.0143159 0.0329406 -1) (0.00328596 0.0246465 -1) (-0.00536801 0.0136772 -1) (-0.00896657 2.30393e-19 -1) (-0.00536801 -0.0136772 -1) (0.00328596 -0.0246465 -1) (0.0143159 -0.0329406 -1) (0.0266767 -0.0394204 -1) (0.0400778 -0.044729 -1) (0.0544728 -0.0492458 -1) (0.0698768 -0.0531853 -1) (0.0863166 -0.0566656 -1) (0.103815 -0.0597508 -1) (0.122387 -0.0624756 -1) (0.142038 -0.0648573 -1) (0.162767 -0.0669039 -1) (0.184559 -0.0686179 -1) (0.20739 -0.0699997 -1) (0.231225 -0.0710487 -1) (0.256014 -0.0717657 -1) (0.281697 -0.072153 -1) (0.308202 -0.0722159 -1) (0.335445 -0.0719624 -1) (0.363329 -0.0714041 -1) (0.391749 -0.0705559 -1) (0.42059 -0.0694357 -1) (0.449733 -0.0680643 -1) (0.479051 -0.0664644 -1) (0.508414 -0.064661 -1) (0.537694 -0.0626797 -1) (0.566761 -0.0605468 -1) (0.595492 -0.0582885 -1) (0.623768 -0.0559305 -1) (0.651477 -0.0534974 -1) (0.678518 -0.0510123 -1) (0.704799 -0.0484972 -1) (0.730241 -0.0459718 -1) (0.754776 -0.0434544 -1) (0.778347 -0.0409612 -1) (0.800913 -0.0385066 -1) (0.822442 -0.0361033 -1) (0.842915 -0.033762 -1) (0.862323 -0.0314919 -1) (0.880668 -0.0293006 -1) (0.897959 -0.027194 -1) (0.914215 -0.025176 -1) (0.929463 -0.0232463 -1) (0.943743 -0.0213937 -1) (0.957123 -0.0195812 -1) (0.969711 -0.0176848 -1) (0.981798 -0.0154618 -1) (0.993586 -0.0120584 -1) (1.00627 -0.00576536 -1) (0.99405 0.0128836 -1) (0.982117 0.0165375 -1) (0.969938 0.0188867 -1) (0.957304 0.0208395 -1) (0.943902 0.022672 -1) (0.929613 0.0245293 -1) (0.91436 0.026458 -1) (0.898101 0.0284734 -1) (0.880807 0.0305771 -1) (0.86246 0.0327657 -1) (0.843049 0.0350334 -1) (0.822573 0.0373726 -1) (0.801042 0.0397741 -1) (0.778473 0.042227 -1) (0.754898 0.0447188 -1) (0.73036 0.047235 -1) (0.704915 0.0497592 -1) (0.67863 0.0522735 -1) (0.651585 0.0547577 -1) (0.623871 0.0571902 -1) (0.59559 0.0595477 -1) (0.566854 0.0618056 -1) (0.537781 0.0639382 -1) (0.508495 0.0659193 -1) (0.479124 0.0677226 -1) (0.449798 0.0693223 -1) (0.420647 0.0706938 -1) (0.391795 0.071814 -1) (0.363364 0.0726622 -1) (0.335468 0.0732204 -1) (0.308213 0.0734737 -1) (0.281693 0.0734107 -1) (0.255994 0.0730229 -1) (0.231187 0.0723051 -1) (0.207334 0.0712549 -1) (0.184482 0.0698712 -1) (0.162666 0.0681545 -1) (0.141912 0.0661038 -1) (0.122232 0.0637163 -1) (0.103627 0.0609827 -1) (0.0860903 0.0578841 -1) (0.0696049 0.054383 -1) (0.0541449 0.0504098 -1) (0.0396799 0.0458377 -1) (0.0261916 0.040438 -1) (0.0137278 0.033812 -1) (0.00259264 0.0252966 -1) (-0.00613736 0.0140262 -1) (-0.0097628 2.43945e-19 -1) (-0.00613736 -0.0140262 -1) (0.00259264 -0.0252966 -1) (0.0137278 -0.033812 -1) (0.0261916 -0.040438 -1) (0.0396799 -0.0458377 -1) (0.0541449 -0.0504098 -1) (0.0696049 -0.054383 -1) (0.0860903 -0.0578841 -1) (0.103627 -0.0609827 -1) (0.122232 -0.0637163 -1) (0.141912 -0.0661038 -1) (0.162666 -0.0681545 -1) (0.184482 -0.0698712 -1) (0.207334 -0.0712549 -1) (0.231187 -0.0723051 -1) (0.255994 -0.0730229 -1) (0.281693 -0.0734107 -1) (0.308213 -0.0734737 -1) (0.335468 -0.0732204 -1) (0.363364 -0.0726622 -1) (0.391795 -0.071814 -1) (0.420647 -0.0706938 -1) (0.449798 -0.0693223 -1) (0.479124 -0.0677226 -1) (0.508495 -0.0659193 -1) (0.537781 -0.0639382 -1) (0.566854 -0.0618056 -1) (0.59559 -0.0595477 -1) (0.623871 -0.0571902 -1) (0.651585 -0.0547577 -1) (0.67863 -0.0522735 -1) (0.704915 -0.0497592 -1) (0.73036 -0.047235 -1) (0.754898 -0.0447188 -1) (0.778473 -0.042227 -1) (0.801042 -0.0397741 -1) (0.822573 -0.0373726 -1) (0.843049 -0.0350334 -1) (0.86246 -0.0327657 -1) (0.880807 -0.0305771 -1) (0.898101 -0.0284734 -1) (0.91436 -0.026458 -1) (0.929613 -0.0245293 -1) (0.943902 -0.022672 -1) (0.957304 -0.0208395 -1) (0.969938 -0.0188867 -1) (0.982117 -0.0165375 -1) (0.99405 -0.0128836 -1) (1.00678 -0.00606468 -1) (0.994536 0.0136999 -1) (0.982456 0.0176162 -1) (0.97018 0.0201037 -1) (0.957494 0.0221209 -1) (0.944067 0.0239779 -1) (0.929767 0.0258419 -1) (0.914508 0.02777 -1) (0.898246 0.0297827 -1) (0.88095 0.0318833 -1) (0.8626 0.0340689 -1) (0.843186 0.0363339 -1) (0.822707 0.0386707 -1) (0.801173 0.0410701 -1) (0.778601 0.0435212 -1) (0.755023 0.0460113 -1) (0.730482 0.048526 -1) (0.705033 0.0510491 -1) (0.678744 0.0535623 -1) (0.651695 0.0560456 -1) (0.623976 0.0584774 -1) (0.595691 0.0608343 -1) (0.566949 0.0630917 -1) (0.53787 0.0652239 -1) (0.508577 0.0672047 -1) (0.479199 0.0690078 -1) (0.449865 0.0706075 -1) (0.420704 0.0719789 -1) (0.391843 0.0730991 -1) (0.363401 0.0739473 -1) (0.335493 0.0745054 -1) (0.308224 0.0747586 -1) (0.281689 0.0746953 -1) (0.255974 0.074307 -1) (0.23115 0.0735884 -1) (0.207277 0.0725369 -1) (0.184403 0.0711514 -1) (0.162564 0.0694317 -1) (0.141784 0.0673769 -1) (0.122073 0.0649831 -1) (0.103435 0.0622401 -1) (0.0858589 0.0591271 -1) (0.0693262 0.0556035 -1) (0.0538084 0.0515938 -1) (0.0392712 0.0469621 -1) (0.0256937 0.0414654 -1) (0.0131265 0.0346863 -1) (0.00188854 0.0259438 -1) (-0.00691184 0.0143707 -1) (-0.0105604 2.71051e-19 -1) (-0.00691184 -0.0143707 -1) (0.00188854 -0.0259438 -1) (0.0131265 -0.0346863 -1) (0.0256937 -0.0414654 -1) (0.0392712 -0.0469621 -1) (0.0538084 -0.0515938 -1) (0.0693262 -0.0556035 -1) (0.0858589 -0.0591271 -1) (0.103435 -0.0622401 -1) (0.122073 -0.0649831 -1) (0.141784 -0.0673769 -1) (0.162564 -0.0694317 -1) (0.184403 -0.0711514 -1) (0.207277 -0.0725369 -1) (0.23115 -0.0735884 -1) (0.255974 -0.074307 -1) (0.281689 -0.0746953 -1) (0.308224 -0.0747586 -1) (0.335493 -0.0745054 -1) (0.363401 -0.0739473 -1) (0.391843 -0.0730991 -1) (0.420704 -0.0719789 -1) (0.449865 -0.0706075 -1) (0.479199 -0.0690078 -1) (0.508577 -0.0672047 -1) (0.53787 -0.0652239 -1) (0.566949 -0.0630917 -1) (0.595691 -0.0608343 -1) (0.623976 -0.0584774 -1) (0.651695 -0.0560456 -1) (0.678744 -0.0535623 -1) (0.705033 -0.0510491 -1) (0.730482 -0.048526 -1) (0.755023 -0.0460113 -1) (0.778601 -0.0435212 -1) (0.801173 -0.0410701 -1) (0.822707 -0.0386707 -1) (0.843186 -0.0363339 -1) (0.8626 -0.0340689 -1) (0.88095 -0.0318833 -1) (0.898246 -0.0297827 -1) (0.914508 -0.02777 -1) (0.929767 -0.0258419 -1) (0.944067 -0.0239779 -1) (0.957494 -0.0221209 -1) (0.97018 -0.0201037 -1) (0.982456 -0.0176162 -1) (0.994536 -0.0136999 -1) (1.00728 -0.00634865 -1) (0.995046 0.0145069 -1) (0.982816 0.0186972 -1) (0.970439 0.0213351 -1) (0.957693 0.023425 -1) (0.944237 0.0253116 -1) (0.929924 0.0271844 -1) (0.91466 0.0291126 -1) (0.898394 0.0311226 -1) (0.881094 0.0332198 -1) (0.862742 0.0354021 -1) (0.843325 0.0376641 -1) (0.822844 0.0399983 -1) (0.801306 0.0423953 -1) (0.778731 0.0448443 -1) (0.75515 0.0473326 -1) (0.730605 0.0498458 -1) (0.705153 0.0523674 -1) (0.67886 0.0548794 -1) (0.651806 0.0573618 -1) (0.624084 0.0597927 -1) (0.595793 0.0621489 -1) (0.567046 0.0644057 -1) (0.53796 0.0665375 -1) (0.508661 0.068518 -1) (0.479275 0.0703209 -1) (0.449933 0.0719204 -1) (0.420763 0.0732917 -1) (0.391891 0.0744118 -1) (0.363438 0.07526 -1) (0.335518 0.075818 -1) (0.308235 0.0760711 -1) (0.281686 0.0760075 -1) (0.255954 0.0756187 -1) (0.231111 0.0748993 -1) (0.207219 0.0738465 -1) (0.184323 0.0724589 -1) (0.16246 0.0707363 -1) (0.141653 0.068677 -1) (0.121912 0.0662765 -1) (0.103239 0.0635235 -1) (0.085622 0.0603951 -1) (0.0690406 0.056847 -1) (0.0534629 0.052798 -1) (0.0388513 0.0481022 -1) (0.0251826 0.0425025 -1) (0.0125115 0.0355634 -1) (0.00117338 0.026588 -1) (-0.00769198 0.0147108 -1) (-0.01136 3.11708e-19 -1) (-0.00769198 -0.0147108 -1) (0.00117338 -0.026588 -1) (0.0125115 -0.0355634 -1) (0.0251826 -0.0425025 -1) (0.0388513 -0.0481022 -1) (0.0534629 -0.052798 -1) (0.0690406 -0.056847 -1) (0.085622 -0.0603951 -1) (0.103239 -0.0635235 -1) (0.121912 -0.0662765 -1) (0.141653 -0.068677 -1) (0.16246 -0.0707363 -1) (0.184323 -0.0724589 -1) (0.207219 -0.0738465 -1) (0.231111 -0.0748993 -1) (0.255954 -0.0756187 -1) (0.281686 -0.0760075 -1) (0.308235 -0.0760711 -1) (0.335518 -0.075818 -1) (0.363438 -0.07526 -1) (0.391891 -0.0744118 -1) (0.420763 -0.0732917 -1) (0.449933 -0.0719204 -1) (0.479275 -0.0703209 -1) (0.508661 -0.068518 -1) (0.53796 -0.0665375 -1) (0.567046 -0.0644057 -1) (0.595793 -0.0621489 -1) (0.624084 -0.0597927 -1) (0.651806 -0.0573618 -1) (0.67886 -0.0548794 -1) (0.705153 -0.0523674 -1) (0.730605 -0.0498458 -1) (0.75515 -0.0473326 -1) (0.778731 -0.0448443 -1) (0.801306 -0.0423953 -1) (0.822844 -0.0399983 -1) (0.843325 -0.0376641 -1) (0.862742 -0.0354021 -1) (0.881094 -0.0332198 -1) (0.898394 -0.0311226 -1) (0.91466 -0.0291126 -1) (0.929924 -0.0271844 -1) (0.944237 -0.0253116 -1) (0.957693 -0.023425 -1) (0.970439 -0.0213351 -1) (0.982816 -0.0186972 -1) (0.995046 -0.0145069 -1) (1.00779 -0.00661872 -1) (0.995579 0.0153041 -1) (0.983198 0.0197798 -1) (0.970714 0.0225801 -1) (0.957904 0.0247514 -1) (0.944413 0.026673 -1) (0.930085 0.0285573 -1) (0.914814 0.0304865 -1) (0.898544 0.0324938 -1) (0.881241 0.0345873 -1) (0.862886 0.0367661 -1) (0.843467 0.0390248 -1) (0.822982 0.041356 -1) (0.801442 0.0437504 -1) (0.778864 0.0461971 -1) (0.755279 0.0486834 -1) (0.730731 0.0511948 -1) (0.705275 0.0537149 -1) (0.678978 0.0562256 -1) (0.65192 0.0587068 -1) (0.624193 0.0611368 -1) (0.595897 0.0634922 -1) (0.567144 0.0657483 -1) (0.538053 0.0678796 -1) (0.508746 0.0698597 -1) (0.479353 0.0716623 -1) (0.450003 0.0732616 -1) (0.420824 0.0746328 -1) (0.391941 0.0757528 -1) (0.363477 0.0766009 -1) (0.335543 0.0771589 -1) (0.308247 0.0774119 -1) (0.281682 0.0773479 -1) (0.255933 0.0769586 -1) (0.231073 0.0762384 -1) (0.20716 0.0751842 -1) (0.184242 0.0737945 -1) (0.162354 0.0720687 -1) (0.141519 0.0700046 -1) (0.121747 0.067597 -1) (0.103038 0.0648333 -1) (0.0853794 0.0616882 -1) (0.0687477 0.0581138 -1) (0.0531081 0.0540223 -1) (0.0384196 0.0492577 -1) (0.0246579 0.0435489 -1) (0.0118826 0.0364431 -1) (0.000446922 0.0272294 -1) (-0.00847824 0.0150467 -1) (-0.0121625 2.98156e-19 -1) (-0.00847824 -0.0150467 -1) (0.000446922 -0.0272294 -1) (0.0118826 -0.0364431 -1) (0.0246579 -0.0435489 -1) (0.0384196 -0.0492577 -1) (0.0531081 -0.0540223 -1) (0.0687477 -0.0581138 -1) (0.0853794 -0.0616882 -1) (0.103038 -0.0648333 -1) (0.121747 -0.067597 -1) (0.141519 -0.0700046 -1) (0.162354 -0.0720687 -1) (0.184242 -0.0737945 -1) (0.20716 -0.0751842 -1) (0.231073 -0.0762384 -1) (0.255933 -0.0769586 -1) (0.281682 -0.0773479 -1) (0.308247 -0.0774119 -1) (0.335543 -0.0771589 -1) (0.363477 -0.0766009 -1) (0.391941 -0.0757528 -1) (0.420824 -0.0746328 -1) (0.450003 -0.0732616 -1) (0.479353 -0.0716623 -1) (0.508746 -0.0698597 -1) (0.538053 -0.0678796 -1) (0.567144 -0.0657483 -1) (0.595897 -0.0634922 -1) (0.624193 -0.0611368 -1) (0.65192 -0.0587068 -1) (0.678978 -0.0562256 -1) (0.705275 -0.0537149 -1) (0.730731 -0.0511948 -1) (0.755279 -0.0486834 -1) (0.778864 -0.0461971 -1) (0.801442 -0.0437504 -1) (0.822982 -0.041356 -1) (0.843467 -0.0390248 -1) (0.862886 -0.0367661 -1) (0.881241 -0.0345873 -1) (0.898544 -0.0324938 -1) (0.914814 -0.0304865 -1) (0.930085 -0.0285573 -1) (0.944413 -0.026673 -1) (0.957904 -0.0247514 -1) (0.970714 -0.0225801 -1) (0.983198 -0.0197798 -1) (0.995579 -0.0153041 -1) (1.0083 -0.00687616 -1) (0.996133 0.0160912 -1) (0.983601 0.0208634 -1) (0.971008 0.0238377 -1) (0.958126 0.0260994 -1) (0.944597 0.0280621 -1) (0.930251 0.0299608 -1) (0.914971 0.0318922 -1) (0.898696 0.033897 -1) (0.881391 0.0359868 -1) (0.863033 0.0381616 -1) (0.843611 0.0404167 -1) (0.823124 0.0427447 -1) (0.80158 0.0451362 -1) (0.778999 0.0475804 -1) (0.755411 0.0500644 -1) (0.730859 0.0525738 -1) (0.705399 0.0550922 -1) (0.679099 0.0576014 -1) (0.652037 0.0600814 -1) (0.624304 0.0625103 -1) (0.596004 0.0648648 -1) (0.567245 0.0671202 -1) (0.538147 0.0692508 -1) (0.508834 0.0712305 -1) (0.479433 0.0730328 -1) (0.450074 0.0746318 -1) (0.420885 0.0760029 -1) (0.391992 0.0771228 -1) (0.363516 0.0779708 -1) (0.33557 0.0785287 -1) (0.308259 0.0787815 -1) (0.281679 0.0787172 -1) (0.255913 0.0783274 -1) (0.231033 0.0776062 -1) (0.2071 0.0765505 -1) (0.184159 0.0751587 -1) (0.162246 0.0734295 -1) (0.141382 0.0713604 -1) (0.121579 0.0689453 -1) (0.102833 0.06617 -1) (0.085131 0.063007 -1) (0.068447 0.0594041 -1) (0.0527433 0.0552667 -1) (0.0379756 0.0504286 -1) (0.0241191 0.0446044 -1) (0.0112396 0.0373252 -1) (-0.000291099 0.027868 -1) (-0.00927111 0.0153788 -1) (-0.0129685 3.38813e-19 -1) (-0.00927111 -0.0153788 -1) (-0.000291099 -0.027868 -1) (0.0112396 -0.0373252 -1) (0.0241191 -0.0446044 -1) (0.0379756 -0.0504286 -1) (0.0527433 -0.0552667 -1) (0.068447 -0.0594041 -1) (0.085131 -0.063007 -1) (0.102833 -0.06617 -1) (0.121579 -0.0689453 -1) (0.141382 -0.0713604 -1) (0.162246 -0.0734295 -1) (0.184159 -0.0751587 -1) (0.2071 -0.0765505 -1) (0.231033 -0.0776062 -1) (0.255913 -0.0783274 -1) (0.281679 -0.0787172 -1) (0.308259 -0.0787815 -1) (0.33557 -0.0785287 -1) (0.363516 -0.0779708 -1) (0.391992 -0.0771228 -1) (0.420885 -0.0760029 -1) (0.450074 -0.0746318 -1) (0.479433 -0.0730328 -1) (0.508834 -0.0712305 -1) (0.538147 -0.0692508 -1) (0.567245 -0.0671202 -1) (0.596004 -0.0648648 -1) (0.624304 -0.0625103 -1) (0.652037 -0.0600814 -1) (0.679099 -0.0576014 -1) (0.705399 -0.0550922 -1) (0.730859 -0.0525738 -1) (0.755411 -0.0500644 -1) (0.778999 -0.0475804 -1) (0.80158 -0.0451362 -1) (0.823124 -0.0427447 -1) (0.843611 -0.0404167 -1) (0.863033 -0.0381616 -1) (0.881391 -0.0359868 -1) (0.898696 -0.033897 -1) (0.914971 -0.0318922 -1) (0.930251 -0.0299608 -1) (0.944597 -0.0280621 -1) (0.958126 -0.0260994 -1) (0.971008 -0.0238377 -1) (0.983601 -0.0208634 -1) (0.996133 -0.0160912 -1) (1.00881 -0.00712211 -1) (0.996709 0.0168679 -1) (0.984027 0.0219474 -1) (0.97132 0.0251074 -1) (0.958361 0.0274686 -1) (0.944789 0.0294786 -1) (0.930421 0.0313954 -1) (0.915131 0.0333304 -1) (0.898852 0.035333 -1) (0.881543 0.0374188 -1) (0.863182 0.0395895 -1) (0.843757 0.0418406 -1) (0.823267 0.044165 -1) (0.80172 0.0465534 -1) (0.779136 0.0489947 -1) (0.755545 0.0514763 -1) (0.73099 0.0539836 -1) (0.705526 0.0565001 -1) (0.679221 0.0590076 -1) (0.652155 0.0614862 -1) (0.624418 0.0639139 -1) (0.596112 0.0662674 -1) (0.567348 0.068522 -1) (0.538243 0.070652 -1) (0.508923 0.0726311 -1) (0.479514 0.0744329 -1) (0.450147 0.0760317 -1) (0.420948 0.0774026 -1) (0.392044 0.0785224 -1) (0.363556 0.0793703 -1) (0.335597 0.079928 -1) (0.308272 0.0801806 -1) (0.281675 0.080116 -1) (0.255892 0.0797255 -1) (0.230993 0.0790034 -1) (0.207039 0.0779462 -1) (0.184075 0.076552 -1) (0.162136 0.0748193 -1) (0.141243 0.072745 -1) (0.121407 0.0703217 -1) (0.102623 0.0675341 -1) (0.0848762 0.0643517 -1) (0.0681383 0.060718 -1) (0.0523681 0.0565312 -1) (0.0375189 0.0516145 -1) (0.0235657 0.0456688 -1) (0.010582 0.0382098 -1) (-0.00104093 0.0285041 -1) (-0.010071 0.0157072 -1) (-0.0137786 3.52366e-19 -1) (-0.010071 -0.0157072 -1) (-0.00104093 -0.0285041 -1) (0.010582 -0.0382098 -1) (0.0235657 -0.0456688 -1) (0.0375189 -0.0516145 -1) (0.0523681 -0.0565312 -1) (0.0681383 -0.060718 -1) (0.0848762 -0.0643517 -1) (0.102623 -0.0675341 -1) (0.121407 -0.0703217 -1) (0.141243 -0.072745 -1) (0.162136 -0.0748193 -1) (0.184075 -0.076552 -1) (0.207039 -0.0779462 -1) (0.230993 -0.0790034 -1) (0.255892 -0.0797255 -1) (0.281675 -0.080116 -1) (0.308272 -0.0801806 -1) (0.335597 -0.079928 -1) (0.363556 -0.0793703 -1) (0.392044 -0.0785224 -1) (0.420948 -0.0774026 -1) (0.450147 -0.0760317 -1) (0.479514 -0.0744329 -1) (0.508923 -0.0726311 -1) (0.538243 -0.070652 -1) (0.567348 -0.068522 -1) (0.596112 -0.0662674 -1) (0.624418 -0.0639139 -1) (0.652155 -0.0614862 -1) (0.679221 -0.0590076 -1) (0.705526 -0.0565001 -1) (0.73099 -0.0539836 -1) (0.755545 -0.0514763 -1) (0.779136 -0.0489947 -1) (0.80172 -0.0465534 -1) (0.823267 -0.044165 -1) (0.843757 -0.0418406 -1) (0.863182 -0.0395895 -1) (0.881543 -0.0374188 -1) (0.898852 -0.035333 -1) (0.915131 -0.0333304 -1) (0.930421 -0.0313954 -1) (0.944789 -0.0294786 -1) (0.958361 -0.0274686 -1) (0.97132 -0.0251074 -1) (0.984027 -0.0219474 -1) (0.996709 -0.0168679 -1) (1.00932 -0.00735757 -1) (0.997305 0.0176341 -1) (0.984475 0.0230312 -1) (0.971652 0.0263881 -1) (0.95861 0.0288582 -1) (0.94499 0.0309224 -1) (0.930597 0.0328611 -1) (0.915296 0.0348016 -1) (0.89901 0.0368025 -1) (0.881698 0.0388843 -1) (0.863334 0.0410504 -1) (0.843906 0.0432973 -1) (0.823413 0.0456178 -1) (0.801863 0.0480027 -1) (0.779276 0.050441 -1) (0.755681 0.0529199 -1) (0.731123 0.0554248 -1) (0.705655 0.0579392 -1) (0.679347 0.060445 -1) (0.652276 0.0629219 -1) (0.624534 0.0653483 -1) (0.596223 0.0677007 -1) (0.567453 0.0699544 -1) (0.538342 0.0720836 -1) (0.509014 0.0740621 -1) (0.479598 0.0758635 -1) (0.450221 0.077462 -1) (0.421012 0.0788326 -1) (0.392098 0.0799522 -1) (0.363597 0.0808 -1) (0.335625 0.0813576 -1) (0.308285 0.0816099 -1) (0.281672 0.0815449 -1) (0.255871 0.0811539 -1) (0.230953 0.0804307 -1) (0.206976 0.079372 -1) (0.183989 0.0779753 -1) (0.162023 0.0762389 -1) (0.141101 0.0741588 -1) (0.121231 0.071727 -1) (0.102408 0.068926 -1) (0.084615 0.0657227 -1) (0.0678211 0.0620557 -1) (0.0519822 0.0578158 -1) (0.0370489 0.0528154 -1) (0.0229974 0.0467418 -1) (0.00990968 0.0390965 -1) (-0.00180281 0.0291376 -1) (-0.0108784 0.0160322 -1) (-0.0145935 3.79471e-19 -1) (-0.0108784 -0.0160322 -1) (-0.00180281 -0.0291376 -1) (0.00990968 -0.0390965 -1) (0.0229974 -0.0467418 -1) (0.0370489 -0.0528154 -1) (0.0519822 -0.0578158 -1) (0.0678211 -0.0620557 -1) (0.084615 -0.0657227 -1) (0.102408 -0.068926 -1) (0.121231 -0.071727 -1) (0.141101 -0.0741588 -1) (0.162023 -0.0762389 -1) (0.183989 -0.0779753 -1) (0.206976 -0.079372 -1) (0.230953 -0.0804307 -1) (0.255871 -0.0811539 -1) (0.281672 -0.0815449 -1) (0.308285 -0.0816099 -1) (0.335625 -0.0813576 -1) (0.363597 -0.0808 -1) (0.392098 -0.0799522 -1) (0.421012 -0.0788326 -1) (0.450221 -0.077462 -1) (0.479598 -0.0758635 -1) (0.509014 -0.0740621 -1) (0.538342 -0.0720836 -1) (0.567453 -0.0699544 -1) (0.596223 -0.0677007 -1) (0.624534 -0.0653483 -1) (0.652276 -0.0629219 -1) (0.679347 -0.060445 -1) (0.705655 -0.0579392 -1) (0.731123 -0.0554248 -1) (0.755681 -0.0529199 -1) (0.779276 -0.050441 -1) (0.801863 -0.0480027 -1) (0.823413 -0.0456178 -1) (0.843906 -0.0432973 -1) (0.863334 -0.0410504 -1) (0.881698 -0.0388843 -1) (0.89901 -0.0368025 -1) (0.915296 -0.0348016 -1) (0.930597 -0.0328611 -1) (0.94499 -0.0309224 -1) (0.95861 -0.0288582 -1) (0.971652 -0.0263881 -1) (0.984475 -0.0230312 -1) (0.997305 -0.0176341 -1) (1.00984 -0.00758342 -1) (0.997923 0.0183895 -1) (0.984946 0.0241143 -1) (0.972005 0.0276793 -1) (0.958874 0.0302678 -1) (0.9452 0.0323933 -1) (0.930779 0.0343583 -1) (0.915464 0.0363062 -1) (0.899172 0.0383062 -1) (0.881855 0.0403839 -1) (0.863488 0.0425453 -1) (0.844058 0.0447875 -1) (0.823562 0.0471038 -1) (0.802009 0.049485 -1) (0.779418 0.0519199 -1) (0.75582 0.0543959 -1) (0.731258 0.0568982 -1) (0.705787 0.0594103 -1) (0.679474 0.0619141 -1) (0.652399 0.0643894 -1) (0.624652 0.0668143 -1) (0.596335 0.0691654 -1) (0.567559 0.0714181 -1) (0.538442 0.0735465 -1) (0.509107 0.0755243 -1) (0.479682 0.0773252 -1) (0.450297 0.0789233 -1) (0.421078 0.0802936 -1) (0.392152 0.081413 -1) (0.36364 0.0822606 -1) (0.335654 0.082818 -1) (0.308298 0.0830701 -1) (0.281669 0.0830047 -1) (0.25585 0.082613 -1) (0.230912 0.0818888 -1) (0.206913 0.0808283 -1) (0.183901 0.0794291 -1) (0.161908 0.0776887 -1) (0.140956 0.0756026 -1) (0.121051 0.0731615 -1) (0.102187 0.0703462 -1) (0.0843469 0.0671203 -1) (0.067495 0.0634173 -1) (0.0515848 0.0591204 -1) (0.0365652 0.054031 -1) (0.0224138 0.0478233 -1) (0.00922229 0.0399855 -1) (-0.002577 0.0297687 -1) (-0.0116938 0.016354 -1) (-0.0154138 3.79471e-19 -1) (-0.0116938 -0.016354 -1) (-0.002577 -0.0297687 -1) (0.00922229 -0.0399855 -1) (0.0224138 -0.0478233 -1) (0.0365652 -0.054031 -1) (0.0515848 -0.0591204 -1) (0.067495 -0.0634173 -1) (0.0843469 -0.0671203 -1) (0.102187 -0.0703462 -1) (0.121051 -0.0731615 -1) (0.140956 -0.0756026 -1) (0.161908 -0.0776887 -1) (0.183901 -0.0794291 -1) (0.206913 -0.0808283 -1) (0.230912 -0.0818888 -1) (0.25585 -0.082613 -1) (0.281669 -0.0830047 -1) (0.308298 -0.0830701 -1) (0.335654 -0.082818 -1) (0.36364 -0.0822606 -1) (0.392152 -0.081413 -1) (0.421078 -0.0802936 -1) (0.450297 -0.0789233 -1) (0.479682 -0.0773252 -1) (0.509107 -0.0755243 -1) (0.538442 -0.0735465 -1) (0.567559 -0.0714181 -1) (0.596335 -0.0691654 -1) (0.624652 -0.0668143 -1) (0.652399 -0.0643894 -1) (0.679474 -0.0619141 -1) (0.705787 -0.0594103 -1) (0.731258 -0.0568982 -1) (0.75582 -0.0543959 -1) (0.779418 -0.0519199 -1) (0.802009 -0.049485 -1) (0.823562 -0.0471038 -1) (0.844058 -0.0447875 -1) (0.863488 -0.0425453 -1) (0.881855 -0.0403839 -1) (0.899172 -0.0383062 -1) (0.915464 -0.0363062 -1) (0.930779 -0.0343583 -1) (0.9452 -0.0323933 -1) (0.958874 -0.0302678 -1) (0.972005 -0.0276793 -1) (0.984946 -0.0241143 -1) (0.997923 -0.0183895 -1) (1.01036 -0.00780045 -1) (0.99856 0.0191341 -1) (0.98544 0.0251963 -1) (0.972378 0.0289801 -1) (0.959154 0.0316965 -1) (0.945421 0.0338909 -1) (0.930968 0.0358869 -1) (0.915636 0.0378448 -1) (0.899336 0.0398448 -1) (0.882015 0.0419185 -1) (0.863645 0.0440749 -1) (0.844212 0.0463121 -1) (0.823713 0.0486239 -1) (0.802157 0.051001 -1) (0.779563 0.0534323 -1) (0.755962 0.0559051 -1) (0.731396 0.0584045 -1) (0.705921 0.0609143 -1) (0.679604 0.0634159 -1) (0.652524 0.0658893 -1) (0.624773 0.0683126 -1) (0.59645 0.0706624 -1) (0.567668 0.0729139 -1) (0.538544 0.0750414 -1) (0.509202 0.0770184 -1) (0.479769 0.0788187 -1) (0.450374 0.0804163 -1) (0.421145 0.0817863 -1) (0.392208 0.0829055 -1) (0.363683 0.0837529 -1) (0.335683 0.0843101 -1) (0.308313 0.0845619 -1) (0.281667 0.0844961 -1) (0.255829 0.0841036 -1) (0.23087 0.0833783 -1) (0.206849 0.0823161 -1) (0.183812 0.0809141 -1) (0.161791 0.0791694 -1) (0.140807 0.0770769 -1) (0.120867 0.0746258 -1) (0.101962 0.071795 -1) (0.0840715 0.0685447 -1) (0.0671595 0.064803 -1) (0.0511756 0.0604449 -1) (0.0360672 0.0552612 -1) (0.0218145 0.0489131 -1) (0.00851957 0.0408765 -1) (-0.00336374 0.0303975 -1) (-0.0125175 0.0166727 -1) (-0.01624 3.65918e-19 -1) (-0.0125175 -0.0166727 -1) (-0.00336374 -0.0303975 -1) (0.00851957 -0.0408765 -1) (0.0218145 -0.0489131 -1) (0.0360672 -0.0552612 -1) (0.0511756 -0.0604449 -1) (0.0671595 -0.064803 -1) (0.0840715 -0.0685447 -1) (0.101962 -0.071795 -1) (0.120867 -0.0746258 -1) (0.140807 -0.0770769 -1) (0.161791 -0.0791694 -1) (0.183812 -0.0809141 -1) (0.206849 -0.0823161 -1) (0.23087 -0.0833783 -1) (0.255829 -0.0841036 -1) (0.281667 -0.0844961 -1) (0.308313 -0.0845619 -1) (0.335683 -0.0843101 -1) (0.363683 -0.0837529 -1) (0.392208 -0.0829055 -1) (0.421145 -0.0817863 -1) (0.450374 -0.0804163 -1) (0.479769 -0.0788187 -1) (0.509202 -0.0770184 -1) (0.538544 -0.0750414 -1) (0.567668 -0.0729139 -1) (0.59645 -0.0706624 -1) (0.624773 -0.0683126 -1) (0.652524 -0.0658893 -1) (0.679604 -0.0634159 -1) (0.705921 -0.0609143 -1) (0.731396 -0.0584045 -1) (0.755962 -0.0559051 -1) (0.779563 -0.0534323 -1) (0.802157 -0.051001 -1) (0.823713 -0.0486239 -1) (0.844212 -0.0463121 -1) (0.863645 -0.0440749 -1) (0.882015 -0.0419185 -1) (0.899336 -0.0398448 -1) (0.915636 -0.0378448 -1) (0.930968 -0.0358869 -1) (0.945421 -0.0338909 -1) (0.959154 -0.0316965 -1) (0.972378 -0.0289801 -1) (0.98544 -0.0251963 -1) (0.99856 -0.0191341 -1) (1.01089 -0.00800936 -1) (0.999217 0.0198676 -1) (0.985958 0.0262767 -1) (0.972774 0.0302898 -1) (0.959451 0.0331438 -1) (0.945654 0.0354148 -1) (0.931164 0.0374472 -1) (0.915813 0.0394179 -1) (0.899504 0.0414189 -1) (0.882178 0.0434889 -1) (0.863805 0.0456401 -1) (0.844369 0.0478721 -1) (0.823867 0.0501789 -1) (0.802308 0.0525516 -1) (0.779711 0.054979 -1) (0.756106 0.0574483 -1) (0.731537 0.0599447 -1) (0.706058 0.0624518 -1) (0.679736 0.0649511 -1) (0.652652 0.0674224 -1) (0.624895 0.069844 -1) (0.596568 0.0721923 -1) (0.56778 0.0744425 -1) (0.538649 0.076569 -1) (0.509299 0.0785452 -1) (0.479858 0.0803449 -1) (0.450453 0.0819419 -1) (0.421214 0.0833115 -1) (0.392266 0.0844304 -1) (0.363727 0.0852775 -1) (0.335713 0.0858345 -1) (0.308327 0.086086 -1) (0.281664 0.0860197 -1) (0.255807 0.0856265 -1) (0.230827 0.0849 -1) (0.206783 0.0838359 -1) (0.183721 0.0824309 -1) (0.161672 0.0806818 -1) (0.140656 0.0785823 -1) (0.120678 0.0761205 -1) (0.10173 0.073273 -1) (0.0837886 0.0699964 -1) (0.0668141 0.0662129 -1) (0.050754 0.0617894 -1) (0.0355545 0.0565057 -1) (0.021199 0.050011 -1) (0.00780124 0.0417696 -1) (-0.0041633 0.031024 -1) (-0.0133499 0.0169885 -1) (-0.0170728 3.52366e-19 -1) (-0.0133499 -0.0169885 -1) (-0.0041633 -0.031024 -1) (0.00780124 -0.0417696 -1) (0.021199 -0.050011 -1) (0.0355545 -0.0565057 -1) (0.050754 -0.0617894 -1) (0.0668141 -0.0662129 -1) (0.0837886 -0.0699964 -1) (0.10173 -0.073273 -1) (0.120678 -0.0761205 -1) (0.140656 -0.0785823 -1) (0.161672 -0.0806818 -1) (0.183721 -0.0824309 -1) (0.206783 -0.0838359 -1) (0.230827 -0.0849 -1) (0.255807 -0.0856265 -1) (0.281664 -0.0860197 -1) (0.308327 -0.086086 -1) (0.335713 -0.0858345 -1) (0.363727 -0.0852775 -1) (0.392266 -0.0844304 -1) (0.421214 -0.0833115 -1) (0.450453 -0.0819419 -1) (0.479858 -0.0803449 -1) (0.509299 -0.0785452 -1) (0.538649 -0.076569 -1) (0.56778 -0.0744425 -1) (0.596568 -0.0721923 -1) (0.624895 -0.069844 -1) (0.652652 -0.0674224 -1) (0.679736 -0.0649511 -1) (0.706058 -0.0624518 -1) (0.731537 -0.0599447 -1) (0.756106 -0.0574483 -1) (0.779711 -0.054979 -1) (0.802308 -0.0525516 -1) (0.823867 -0.0501789 -1) (0.844369 -0.0478721 -1) (0.863805 -0.0456401 -1) (0.882178 -0.0434889 -1) (0.899504 -0.0414189 -1) (0.915813 -0.0394179 -1) (0.931164 -0.0374472 -1) (0.945654 -0.0354148 -1) (0.959451 -0.0331438 -1) (0.972774 -0.0302898 -1) (0.985958 -0.0262767 -1) (0.999217 -0.0198676 -1) (1.01142 -0.00821077 -1) (0.999893 0.0205901 -1) (0.986499 0.027355 -1) (0.973193 0.0316079 -1) (0.959766 0.034609 -1) (0.945899 0.0369647 -1) (0.931368 0.0390389 -1) (0.915996 0.0410257 -1) (0.899676 0.0430293 -1) (0.882344 0.0450959 -1) (0.863967 0.0472417 -1) (0.844528 0.0494681 -1) (0.824023 0.0517697 -1) (0.802461 0.0541376 -1) (0.779861 0.0565608 -1) (0.756253 0.0590264 -1) (0.73168 0.0615195 -1) (0.706197 0.0640236 -1) (0.679871 0.0665204 -1) (0.652782 0.0689896 -1) (0.62502 0.0714093 -1) (0.596687 0.0737559 -1) (0.567893 0.0760048 -1) (0.538755 0.0781301 -1) (0.509398 0.0801054 -1) (0.479948 0.0819043 -1) (0.450534 0.0835008 -1) (0.421284 0.08487 -1) (0.392324 0.0859885 -1) (0.363773 0.0868353 -1) (0.335744 0.087392 -1) (0.308342 0.0876431 -1) (0.281661 0.0875763 -1) (0.255785 0.0871823 -1) (0.230784 0.0864545 -1) (0.206717 0.0853884 -1) (0.183628 0.0839803 -1) (0.16155 0.0822264 -1) (0.1405 0.0801195 -1) (0.120485 0.0776462 -1) (0.101493 0.0747806 -1) (0.0834978 0.0714754 -1) (0.0664584 0.067647 -1) (0.0503195 0.0631536 -1) (0.0350264 0.0577644 -1) (0.020567 0.0511167 -1) (0.00706704 0.0426646 -1) (-0.00497591 0.0316485 -1) (-0.0141915 0.0173015 -1) (-0.0179126 3.52366e-19 -1) (-0.0141915 -0.0173015 -1) (-0.00497591 -0.0316485 -1) (0.00706704 -0.0426646 -1) (0.020567 -0.0511167 -1) (0.0350264 -0.0577644 -1) (0.0503195 -0.0631536 -1) (0.0664584 -0.067647 -1) (0.0834978 -0.0714754 -1) (0.101493 -0.0747806 -1) (0.120485 -0.0776462 -1) (0.1405 -0.0801195 -1) (0.16155 -0.0822264 -1) (0.183628 -0.0839803 -1) (0.206717 -0.0853884 -1) (0.230784 -0.0864545 -1) (0.255785 -0.0871823 -1) (0.281661 -0.0875763 -1) (0.308342 -0.0876431 -1) (0.335744 -0.087392 -1) (0.363773 -0.0868353 -1) (0.392324 -0.0859885 -1) (0.421284 -0.08487 -1) (0.450534 -0.0835008 -1) (0.479948 -0.0819043 -1) (0.509398 -0.0801054 -1) (0.538755 -0.0781301 -1) (0.567893 -0.0760048 -1) (0.596687 -0.0737559 -1) (0.62502 -0.0714093 -1) (0.652782 -0.0689896 -1) (0.679871 -0.0665204 -1) (0.706197 -0.0640236 -1) (0.73168 -0.0615195 -1) (0.756253 -0.0590264 -1) (0.779861 -0.0565608 -1) (0.802461 -0.0541376 -1) (0.824023 -0.0517697 -1) (0.844528 -0.0494681 -1) (0.863967 -0.0472417 -1) (0.882344 -0.0450959 -1) (0.899676 -0.0430293 -1) (0.915996 -0.0410257 -1) (0.931368 -0.0390389 -1) (0.945899 -0.0369647 -1) (0.959766 -0.034609 -1) (0.973193 -0.0316079 -1) (0.986499 -0.027355 -1) (0.999893 -0.0205901 -1) (1.01196 -0.00840524 -1) (1.00059 0.0213016 -1) (0.987063 0.0284311 -1) (0.973634 0.0329335 -1) (0.9601 0.0360915 -1) (0.946158 0.03854 -1) (0.93158 0.0406622 -1) (0.916183 0.0426688 -1) (0.899851 0.0446766 -1) (0.882513 0.0467404 -1) (0.864132 0.0488808 -1) (0.84469 0.0511013 -1) (0.824182 0.0533972 -1) (0.802617 0.05576 -1) (0.780014 0.0581787 -1) (0.756402 0.0606401 -1) (0.731825 0.0631297 -1) (0.706338 0.0656307 -1) (0.680009 0.0681248 -1) (0.652915 0.0705916 -1) (0.625148 0.0730092 -1) (0.596809 0.0753541 -1) (0.568009 0.0776015 -1) (0.538864 0.0797255 -1) (0.509499 0.0816998 -1) (0.48004 0.0834979 -1) (0.450617 0.0850937 -1) (0.421356 0.0864624 -1) (0.392384 0.0875805 -1) (0.363819 0.088427 -1) (0.335776 0.0889834 -1) (0.308358 0.0892341 -1) (0.281659 0.0891668 -1) (0.255763 0.0887719 -1) (0.23074 0.0880427 -1) (0.206648 0.0869744 -1) (0.183533 0.085563 -1) (0.161425 0.0838039 -1) (0.140342 0.081689 -1) (0.120287 0.0792033 -1) (0.101249 0.0763183 -1) (0.0831985 0.0729822 -1) (0.0660919 0.0691054 -1) (0.0498714 0.0645375 -1) (0.0344826 0.0590371 -1) (0.019918 0.0522301 -1) (0.00631668 0.0435616 -1) (-0.00580185 0.032271 -1) (-0.0150427 0.017612 -1) (-0.0187599 3.52366e-19 -1) (-0.0150427 -0.017612 -1) (-0.00580185 -0.032271 -1) (0.00631668 -0.0435616 -1) (0.019918 -0.0522301 -1) (0.0344826 -0.0590371 -1) (0.0498714 -0.0645375 -1) (0.0660919 -0.0691054 -1) (0.0831985 -0.0729822 -1) (0.101249 -0.0763183 -1) (0.120287 -0.0792033 -1) (0.140342 -0.081689 -1) (0.161425 -0.0838039 -1) (0.183533 -0.085563 -1) (0.206648 -0.0869744 -1) (0.23074 -0.0880427 -1) (0.255763 -0.0887719 -1) (0.281659 -0.0891668 -1) (0.308358 -0.0892341 -1) (0.335776 -0.0889834 -1) (0.363819 -0.088427 -1) (0.392384 -0.0875805 -1) (0.421356 -0.0864624 -1) (0.450617 -0.0850937 -1) (0.48004 -0.0834979 -1) (0.509499 -0.0816998 -1) (0.538864 -0.0797255 -1) (0.568009 -0.0776015 -1) (0.596809 -0.0753541 -1) (0.625148 -0.0730092 -1) (0.652915 -0.0705916 -1) (0.680009 -0.0681248 -1) (0.706338 -0.0656307 -1) (0.731825 -0.0631297 -1) (0.756402 -0.0606401 -1) (0.780014 -0.0581787 -1) (0.802617 -0.05576 -1) (0.824182 -0.0533972 -1) (0.84469 -0.0511013 -1) (0.864132 -0.0488808 -1) (0.882513 -0.0467404 -1) (0.899851 -0.0446766 -1) (0.916183 -0.0426688 -1) (0.93158 -0.0406622 -1) (0.946158 -0.03854 -1) (0.9601 -0.0360915 -1) (0.973634 -0.0329335 -1) (0.987063 -0.0284311 -1) (1.00059 -0.0213016 -1) (1.01251 -0.00859327 -1) (1.0013 0.022002 -1) (0.987652 0.0295044 -1) (0.9741 0.0342661 -1) (0.960454 0.0375906 -1) (0.946431 0.0401404 -1) (0.931803 0.0423169 -1) (0.916377 0.0443472 -1) (0.900031 0.0463614 -1) (0.882685 0.0484231 -1) (0.8643 0.0505581 -1) (0.844855 0.0527724 -1) (0.824344 0.0550623 -1) (0.802776 0.0574196 -1) (0.780169 0.0598334 -1) (0.756554 0.0622905 -1) (0.731974 0.0647763 -1) (0.706483 0.0672739 -1) (0.680149 0.069765 -1) (0.65305 0.0722292 -1) (0.625278 0.0746446 -1) (0.596934 0.0769876 -1) (0.568127 0.0792334 -1) (0.538975 0.0813561 -1) (0.509602 0.0833293 -1) (0.480134 0.0851264 -1) (0.450701 0.0867216 -1) (0.42143 0.0880896 -1) (0.392445 0.0892073 -1) (0.363867 0.0900534 -1) (0.335808 0.0906094 -1) (0.308374 0.0908597 -1) (0.281657 0.0907917 -1) (0.25574 0.0903959 -1) (0.230695 0.0896653 -1) (0.206579 0.0885947 -1) (0.183436 0.0871797 -1) (0.161297 0.0854151 -1) (0.140179 0.0832916 -1) (0.120084 0.0807925 -1) (0.100998 0.0778863 -1) (0.0828904 0.074517 -1) (0.065714 0.0705882 -1) (0.0494094 0.065941 -1) (0.0339225 0.0603236 -1) (0.0192518 0.0533511 -1) (0.00554989 0.0444604 -1) (-0.00664138 0.0328916 -1) (-0.0159038 0.0179201 -1) (-0.0196154 2.84603e-19 -1) (-0.0159038 -0.0179201 -1) (-0.00664138 -0.0328916 -1) (0.00554989 -0.0444604 -1) (0.0192518 -0.0533511 -1) (0.0339225 -0.0603236 -1) (0.0494094 -0.065941 -1) (0.065714 -0.0705882 -1) (0.0828904 -0.074517 -1) (0.100998 -0.0778863 -1) (0.120084 -0.0807925 -1) (0.140179 -0.0832916 -1) (0.161297 -0.0854151 -1) (0.183436 -0.0871797 -1) (0.206579 -0.0885947 -1) (0.230695 -0.0896653 -1) (0.25574 -0.0903959 -1) (0.281657 -0.0907917 -1) (0.308374 -0.0908597 -1) (0.335808 -0.0906094 -1) (0.363867 -0.0900534 -1) (0.392445 -0.0892073 -1) (0.42143 -0.0880896 -1) (0.450701 -0.0867216 -1) (0.480134 -0.0851264 -1) (0.509602 -0.0833293 -1) (0.538975 -0.0813561 -1) (0.568127 -0.0792334 -1) (0.596934 -0.0769876 -1) (0.625278 -0.0746446 -1) (0.65305 -0.0722292 -1) (0.680149 -0.069765 -1) (0.706483 -0.0672739 -1) (0.731974 -0.0647763 -1) (0.756554 -0.0622905 -1) (0.780169 -0.0598334 -1) (0.802776 -0.0574196 -1) (0.824344 -0.0550623 -1) (0.844855 -0.0527724 -1) (0.8643 -0.0505581 -1) (0.882685 -0.0484231 -1) (0.900031 -0.0463614 -1) (0.916377 -0.0443472 -1) (0.931803 -0.0423169 -1) (0.946431 -0.0401404 -1) (0.960454 -0.0375906 -1) (0.9741 -0.0342661 -1) (0.987652 -0.0295044 -1) (1.0013 -0.022002 -1) (1.01307 -0.0087753 -1) (1.00203 0.0226914 -1) (0.988264 0.0305746 -1) (0.974589 0.0356051 -1) (0.960829 0.0391056 -1) (0.94672 0.0417653 -1) (0.932036 0.0440028 -1) (0.916578 0.0460614 -1) (0.900215 0.0480843 -1) (0.882861 0.0501448 -1) (0.864471 0.0522745 -1) (0.845022 0.0544824 -1) (0.824508 0.056766 -1) (0.802937 0.0591174 -1) (0.780327 0.0615259 -1) (0.756709 0.0639784 -1) (0.732125 0.0664601 -1) (0.70663 0.0689541 -1) (0.680291 0.071442 -1) (0.653188 0.0739035 -1) (0.625411 0.0763165 -1) (0.59706 0.0786574 -1) (0.568247 0.0809014 -1) (0.539088 0.0830226 -1) (0.509707 0.0849946 -1) (0.480231 0.0867907 -1) (0.450787 0.0883851 -1) (0.421505 0.0897525 -1) (0.392507 0.0908697 -1) (0.363916 0.0917154 -1) (0.335842 0.0922709 -1) (0.30839 0.0925207 -1) (0.281655 0.0924521 -1) (0.255718 0.0920552 -1) (0.23065 0.091323 -1) (0.206508 0.0902499 -1) (0.183337 0.0888311 -1) (0.161167 0.0870605 -1) (0.140013 0.0849278 -1) (0.119876 0.0824142 -1) (0.10074 0.0794851 -1) (0.082573 0.0760799 -1) (0.0653242 0.0720954 -1) (0.0489327 0.067364 -1) (0.0333457 0.0616236 -1) (0.0185679 0.0544794 -1) (0.0047664 0.045361 -1) (-0.00749477 0.0335103 -1) (-0.0167753 0.0182259 -1) (-0.0204794 2.57498e-19 -1) (-0.0167753 -0.0182259 -1) (-0.00749477 -0.0335103 -1) (0.0047664 -0.045361 -1) (0.0185679 -0.0544794 -1) (0.0333457 -0.0616236 -1) (0.0489327 -0.067364 -1) (0.0653242 -0.0720954 -1) (0.082573 -0.0760799 -1) (0.10074 -0.0794851 -1) (0.119876 -0.0824142 -1) (0.140013 -0.0849278 -1) (0.161167 -0.0870605 -1) (0.183337 -0.0888311 -1) (0.206508 -0.0902499 -1) (0.23065 -0.091323 -1) (0.255718 -0.0920552 -1) (0.281655 -0.0924521 -1) (0.30839 -0.0925207 -1) (0.335842 -0.0922709 -1) (0.363916 -0.0917154 -1) (0.392507 -0.0908697 -1) (0.421505 -0.0897525 -1) (0.450787 -0.0883851 -1) (0.480231 -0.0867907 -1) (0.509707 -0.0849946 -1) (0.539088 -0.0830226 -1) (0.568247 -0.0809014 -1) (0.59706 -0.0786574 -1) (0.625411 -0.0763165 -1) (0.653188 -0.0739035 -1) (0.680291 -0.071442 -1) (0.70663 -0.0689541 -1) (0.732125 -0.0664601 -1) (0.756709 -0.0639784 -1) (0.780327 -0.0615259 -1) (0.802937 -0.0591174 -1) (0.824508 -0.056766 -1) (0.845022 -0.0544824 -1) (0.864471 -0.0522745 -1) (0.882861 -0.0501448 -1) (0.900215 -0.0480843 -1) (0.916578 -0.0460614 -1) (0.932036 -0.0440028 -1) (0.94672 -0.0417653 -1) (0.960829 -0.0391056 -1) (0.974589 -0.0356051 -1) (0.988264 -0.0305746 -1) (1.00203 -0.0226914 -1) (1.01363 -0.00895175 -1) (1.00279 0.0233699 -1) (0.988901 0.0316416 -1) (0.975104 0.0369499 -1) (0.961225 0.0406359 -1) (0.947026 0.0434142 -1) (0.932281 0.0457197 -1) (0.916787 0.0478113 -1) (0.900404 0.0498458 -1) (0.88304 0.0519064 -1) (0.864645 0.0540311 -1) (0.845192 0.0562323 -1) (0.824676 0.0585092 -1) (0.803101 0.0608544 -1) (0.780488 0.0632573 -1) (0.756866 0.0657048 -1) (0.732279 0.068182 -1) (0.70678 0.0706721 -1) (0.680437 0.0731566 -1) (0.653329 0.0756151 -1) (0.625546 0.0780255 -1) (0.59719 0.0803643 -1) (0.56837 0.0826064 -1) (0.539204 0.084726 -1) (0.509814 0.0866966 -1) (0.480329 0.0884917 -1) (0.450875 0.0900851 -1) (0.421581 0.0914518 -1) (0.392571 0.0925684 -1) (0.363965 0.0934136 -1) (0.335876 0.0939687 -1) (0.308407 0.094218 -1) (0.281653 0.0941486 -1) (0.255695 0.0937506 -1) (0.230603 0.0930167 -1) (0.206436 0.091941 -1) (0.183236 0.0905181 -1) (0.161033 0.0887411 -1) (0.139842 0.0865983 -1) (0.119662 0.084069 -1) (0.100475 0.0811152 -1) (0.0822458 0.0776713 -1) (0.064922 0.0736271 -1) (0.0484409 0.0688063 -1) (0.0327515 0.0629371 -1) (0.0178659 0.055615 -1) (0.00396593 0.0462634 -1) (-0.00836228 0.0341274 -1) (-0.0176575 0.0185295 -1) (-0.0213525 2.30393e-19 -1) (-0.0176575 -0.0185295 -1) (-0.00836228 -0.0341274 -1) (0.00396593 -0.0462634 -1) (0.0178659 -0.055615 -1) (0.0327515 -0.0629371 -1) (0.0484409 -0.0688063 -1) (0.064922 -0.0736271 -1) (0.0822458 -0.0776713 -1) (0.100475 -0.0811152 -1) (0.119662 -0.084069 -1) (0.139842 -0.0865983 -1) (0.161033 -0.0887411 -1) (0.183236 -0.0905181 -1) (0.206436 -0.091941 -1) (0.230603 -0.0930167 -1) (0.255695 -0.0937506 -1) (0.281653 -0.0941486 -1) (0.308407 -0.094218 -1) (0.335876 -0.0939687 -1) (0.363965 -0.0934136 -1) (0.392571 -0.0925684 -1) (0.421581 -0.0914518 -1) (0.450875 -0.0900851 -1) (0.480329 -0.0884917 -1) (0.509814 -0.0866966 -1) (0.539204 -0.084726 -1) (0.56837 -0.0826064 -1) (0.59719 -0.0803643 -1) (0.625546 -0.0780255 -1) (0.653329 -0.0756151 -1) (0.680437 -0.0731566 -1) (0.70678 -0.0706721 -1) (0.732279 -0.068182 -1) (0.756866 -0.0657048 -1) (0.780488 -0.0632573 -1) (0.803101 -0.0608544 -1) (0.824676 -0.0585092 -1) (0.845192 -0.0562323 -1) (0.864645 -0.0540311 -1) (0.88304 -0.0519064 -1) (0.900404 -0.0498458 -1) (0.916787 -0.0478113 -1) (0.932281 -0.0457197 -1) (0.947026 -0.0434142 -1) (0.961225 -0.0406359 -1) (0.975104 -0.0369499 -1) (0.988901 -0.0316416 -1) (1.00279 -0.0233699 -1) (1.0142 -0.00912299 -1) (1.00355 0.0240374 -1) (0.989561 0.0327049 -1) (0.975643 0.0383 -1) (0.961644 0.0421809 -1) (0.94735 0.0450866 -1) (0.932538 0.0474673 -1) (0.917003 0.0495973 -1) (0.900598 0.0516464 -1) (0.883223 0.0537085 -1) (0.864821 0.0558286 -1) (0.845365 0.0580231 -1) (0.824846 0.0602929 -1) (0.803268 0.0626315 -1) (0.780652 0.0650284 -1) (0.757027 0.0674705 -1) (0.732435 0.069943 -1) (0.706932 0.072429 -1) (0.680585 0.0749099 -1) (0.653472 0.0773652 -1) (0.625684 0.0797728 -1) (0.597322 0.0821091 -1) (0.568495 0.0843492 -1) (0.539321 0.0864671 -1) (0.509924 0.0884362 -1) (0.480429 0.0902301 -1) (0.450965 0.0918226 -1) (0.421659 0.0931885 -1) (0.392637 0.0943045 -1) (0.364016 0.0951491 -1) (0.335911 0.0957037 -1) (0.308425 0.0959523 -1) (0.281651 0.0958821 -1) (0.255671 0.0954829 -1) (0.230556 0.0947472 -1) (0.206362 0.0936686 -1) (0.183133 0.0922412 -1) (0.160896 0.0904573 -1) (0.139667 0.0883038 -1) (0.119442 0.0857574 -1) (0.100202 0.0827768 -1) (0.0819084 0.0792912 -1) (0.0645067 0.0751832 -1) (0.0479332 0.0702679 -1) (0.0321396 0.0642638 -1) (0.0171455 0.0567578 -1) (0.0031482 0.0471676 -1) (-0.00924421 0.0347428 -1) (-0.0185509 0.0188311 -1) (-0.0222352 1.6263e-19 -1) (-0.0185509 -0.0188311 -1) (-0.00924421 -0.0347428 -1) (0.0031482 -0.0471676 -1) (0.0171455 -0.0567578 -1) (0.0321396 -0.0642638 -1) (0.0479332 -0.0702679 -1) (0.0645067 -0.0751832 -1) (0.0819084 -0.0792912 -1) (0.100202 -0.0827768 -1) (0.119442 -0.0857574 -1) (0.139667 -0.0883038 -1) (0.160896 -0.0904573 -1) (0.183133 -0.0922412 -1) (0.206362 -0.0936686 -1) (0.230556 -0.0947472 -1) (0.255671 -0.0954829 -1) (0.281651 -0.0958821 -1) (0.308425 -0.0959523 -1) (0.335911 -0.0957037 -1) (0.364016 -0.0951491 -1) (0.392637 -0.0943045 -1) (0.421659 -0.0931885 -1) (0.450965 -0.0918226 -1) (0.480429 -0.0902301 -1) (0.509924 -0.0884362 -1) (0.539321 -0.0864671 -1) (0.568495 -0.0843492 -1) (0.597322 -0.0821091 -1) (0.625684 -0.0797728 -1) (0.653472 -0.0773652 -1) (0.680585 -0.0749099 -1) (0.706932 -0.072429 -1) (0.732435 -0.069943 -1) (0.757027 -0.0674705 -1) (0.780652 -0.0650284 -1) (0.803268 -0.0626315 -1) (0.824846 -0.0602929 -1) (0.845365 -0.0580231 -1) (0.864821 -0.0558286 -1) (0.883223 -0.0537085 -1) (0.900598 -0.0516464 -1) (0.917003 -0.0495973 -1) (0.932538 -0.0474673 -1) (0.94735 -0.0450866 -1) (0.961644 -0.0421809 -1) (0.975643 -0.0383 -1) (0.989561 -0.0327049 -1) (1.00355 -0.0240374 -1) (1.01478 -0.00928933 -1) (1.00434 0.0246941 -1) (0.990246 0.0337644 -1) (0.976209 0.0396548 -1) (0.962087 0.04374 -1) (0.947693 0.0467818 -1) (0.932809 0.0492453 -1) (0.917229 0.0514192 -1) (0.900798 0.0534866 -1) (0.88341 0.0555519 -1) (0.865001 0.0576681 -1) (0.845541 0.0598557 -1) (0.825018 0.0621182 -1) (0.803438 0.0644497 -1) (0.780818 0.0668402 -1) (0.75719 0.0692767 -1) (0.732594 0.0717441 -1) (0.707087 0.0742257 -1) (0.680735 0.0767026 -1) (0.653618 0.0791545 -1) (0.625824 0.0815592 -1) (0.597456 0.0838929 -1) (0.568623 0.0861308 -1) (0.539442 0.0882468 -1) (0.510035 0.0902144 -1) (0.480531 0.092007 -1) (0.451057 0.0935984 -1) (0.421739 0.0949634 -1) (0.392703 0.0960787 -1) (0.364069 0.0969227 -1) (0.335947 0.0974767 -1) (0.308443 0.0977246 -1) (0.281649 0.0976535 -1) (0.255647 0.097253 -1) (0.230508 0.0965152 -1) (0.206287 0.0954336 -1) (0.183027 0.0940015 -1) (0.160756 0.0922101 -1) (0.139487 0.0900448 -1) (0.119216 0.0874799 -1) (0.0999203 0.0844704 -1) (0.0815601 0.0809398 -1) (0.0640777 0.0767638 -1) (0.0474093 0.0717485 -1) (0.0315093 0.0656036 -1) (0.0164062 0.0579075 -1) (0.00231292 0.0480735 -1) (-0.0101408 0.0353567 -1) (-0.0194559 0.0191307 -1) (-0.023128 2.03288e-19 -1) (-0.0194559 -0.0191307 -1) (-0.0101408 -0.0353567 -1) (0.00231292 -0.0480735 -1) (0.0164062 -0.0579075 -1) (0.0315093 -0.0656036 -1) (0.0474093 -0.0717485 -1) (0.0640777 -0.0767638 -1) (0.0815601 -0.0809398 -1) (0.0999203 -0.0844704 -1) (0.119216 -0.0874799 -1) (0.139487 -0.0900448 -1) (0.160756 -0.0922101 -1) (0.183027 -0.0940015 -1) (0.206287 -0.0954336 -1) (0.230508 -0.0965152 -1) (0.255647 -0.097253 -1) (0.281649 -0.0976535 -1) (0.308443 -0.0977246 -1) (0.335947 -0.0974767 -1) (0.364069 -0.0969227 -1) (0.392703 -0.0960787 -1) (0.421739 -0.0949634 -1) (0.451057 -0.0935984 -1) (0.480531 -0.092007 -1) (0.510035 -0.0902144 -1) (0.539442 -0.0882468 -1) (0.568623 -0.0861308 -1) (0.597456 -0.0838929 -1) (0.625824 -0.0815592 -1) (0.653618 -0.0791545 -1) (0.680735 -0.0767026 -1) (0.707087 -0.0742257 -1) (0.732594 -0.0717441 -1) (0.75719 -0.0692767 -1) (0.780818 -0.0668402 -1) (0.803438 -0.0644497 -1) (0.825018 -0.0621182 -1) (0.845541 -0.0598557 -1) (0.865001 -0.0576681 -1) (0.88341 -0.0555519 -1) (0.900798 -0.0534866 -1) (0.917229 -0.0514192 -1) (0.932809 -0.0492453 -1) (0.947693 -0.0467818 -1) (0.962087 -0.04374 -1) (0.976209 -0.0396548 -1) (0.990246 -0.0337644 -1) (1.00434 -0.0246941 -1) (1.01537 -0.00945109 -1) (1.00514 0.02534 -1) (0.990955 0.0348197 -1) (0.9768 0.0410139 -1) (0.962553 0.0453126 -1) (0.948055 0.0484993 -1) (0.933095 0.0510533 -1) (0.917465 0.0532772 -1) (0.901005 0.0553667 -1) (0.883601 0.0574374 -1) (0.865185 0.0595503 -1) (0.84572 0.0617313 -1) (0.825194 0.0639861 -1) (0.80361 0.0663102 -1) (0.780988 0.0686939 -1) (0.757356 0.0711243 -1) (0.732757 0.0735863 -1) (0.707245 0.0760631 -1) (0.680889 0.0785359 -1) (0.653766 0.0809841 -1) (0.625967 0.0833856 -1) (0.597593 0.0857166 -1) (0.568753 0.0879521 -1) (0.539564 0.0900661 -1) (0.510149 0.092032 -1) (0.480636 0.0938232 -1) (0.45115 0.0954134 -1) (0.421821 0.0967775 -1) (0.392772 0.097892 -1) (0.364122 0.0987353 -1) (0.335984 0.0992886 -1) (0.308461 0.0995358 -1) (0.281647 0.0994636 -1) (0.255623 0.0990618 -1) (0.230459 0.0983218 -1) (0.20621 0.0972369 -1) (0.182919 0.0957995 -1) (0.160613 0.094 -1) (0.139303 0.091822 -1) (0.118983 0.0892371 -1) (0.0996302 0.0861963 -1) (0.0812004 0.0826174 -1) (0.0636344 0.0783688 -1) (0.0468684 0.0732482 -1) (0.0308603 0.0669563 -1) (0.0156478 0.059064 -1) (0.0014598 0.0489812 -1) (-0.0110525 0.0359692 -1) (-0.0203728 0.0194286 -1) (-0.0240314 1.89735e-19 -1) (-0.0203728 -0.0194286 -1) (-0.0110525 -0.0359692 -1) (0.0014598 -0.0489812 -1) (0.0156478 -0.059064 -1) (0.0308603 -0.0669563 -1) (0.0468684 -0.0732482 -1) (0.0636344 -0.0783688 -1) (0.0812004 -0.0826174 -1) (0.0996302 -0.0861963 -1) (0.118983 -0.0892371 -1) (0.139303 -0.091822 -1) (0.160613 -0.094 -1) (0.182919 -0.0957995 -1) (0.20621 -0.0972369 -1) (0.230459 -0.0983218 -1) (0.255623 -0.0990618 -1) (0.281647 -0.0994636 -1) (0.308461 -0.0995358 -1) (0.335984 -0.0992886 -1) (0.364122 -0.0987353 -1) (0.392772 -0.097892 -1) (0.421821 -0.0967775 -1) (0.45115 -0.0954134 -1) (0.480636 -0.0938232 -1) (0.510149 -0.092032 -1) (0.539564 -0.0900661 -1) (0.568753 -0.0879521 -1) (0.597593 -0.0857166 -1) (0.625967 -0.0833856 -1) (0.653766 -0.0809841 -1) (0.680889 -0.0785359 -1) (0.707245 -0.0760631 -1) (0.732757 -0.0735863 -1) (0.757356 -0.0711243 -1) (0.780988 -0.0686939 -1) (0.80361 -0.0663102 -1) (0.825194 -0.0639861 -1) (0.84572 -0.0617313 -1) (0.865185 -0.0595503 -1) (0.883601 -0.0574374 -1) (0.901005 -0.0553667 -1) (0.917465 -0.0532772 -1) (0.933095 -0.0510533 -1) (0.948055 -0.0484993 -1) (0.962553 -0.0453126 -1) (0.9768 -0.0410139 -1) (0.990955 -0.0348197 -1) (1.00514 -0.02534 -1) (1.01597 -0.00960853 -1) (1.00596 0.0259754 -1) (0.991688 0.0358707 -1) (0.977418 0.0423768 -1) (0.963045 0.0468981 -1) (0.948439 0.0502386 -1) (0.933397 0.052891 -1) (0.917712 0.0551711 -1) (0.901219 0.057287 -1) (0.883797 0.0593656 -1) (0.865372 0.0614764 -1) (0.845902 0.0636507 -1) (0.825372 0.0658976 -1) (0.803786 0.068214 -1) (0.78116 0.0705904 -1) (0.757524 0.0730143 -1) (0.732922 0.0754707 -1) (0.707406 0.0779424 -1) (0.681045 0.0804107 -1) (0.653918 0.082855 -1) (0.626113 0.0852531 -1) (0.597733 0.0875811 -1) (0.568886 0.0898141 -1) (0.539689 0.0919259 -1) (0.510266 0.09389 -1) (0.480742 0.0956796 -1) (0.451246 0.0972686 -1) (0.421904 0.0986317 -1) (0.392841 0.0997452 -1) (0.364176 0.100588 -1) (0.336022 0.10114 -1) (0.30848 0.101387 -1) (0.281645 0.101313 -1) (0.255598 0.10091 -1) (0.230408 0.100168 -1) (0.206131 0.0990792 -1) (0.182808 0.0976362 -1) (0.160465 0.0958279 -1) (0.139113 0.0936361 -1) (0.118744 0.0910295 -1) (0.0993308 0.0879548 -1) (0.0808287 0.0843241 -1) (0.0631763 0.0799983 -1) (0.04631 0.0747667 -1) (0.0301921 0.0683217 -1) (0.0148698 0.0602274 -1) (0.000588547 0.0498906 -1) (-0.0119794 0.0365803 -1) (-0.0213021 0.0197248 -1) (-0.0249458 2.30393e-19 -1) (-0.0213021 -0.0197248 -1) (-0.0119794 -0.0365803 -1) (0.000588547 -0.0498906 -1) (0.0148698 -0.0602274 -1) (0.0301921 -0.0683217 -1) (0.04631 -0.0747667 -1) (0.0631763 -0.0799983 -1) (0.0808287 -0.0843241 -1) (0.0993308 -0.0879548 -1) (0.118744 -0.0910295 -1) (0.139113 -0.0936361 -1) (0.160465 -0.0958279 -1) (0.182808 -0.0976362 -1) (0.206131 -0.0990792 -1) (0.230408 -0.100168 -1) (0.255598 -0.10091 -1) (0.281645 -0.101313 -1) (0.30848 -0.101387 -1) (0.336022 -0.10114 -1) (0.364176 -0.100588 -1) (0.392841 -0.0997452 -1) (0.421904 -0.0986317 -1) (0.451246 -0.0972686 -1) (0.480742 -0.0956796 -1) (0.510266 -0.09389 -1) (0.539689 -0.0919259 -1) (0.568886 -0.0898141 -1) (0.597733 -0.0875811 -1) (0.626113 -0.0852531 -1) (0.653918 -0.082855 -1) (0.681045 -0.0804107 -1) (0.707406 -0.0779424 -1) (0.732922 -0.0754707 -1) (0.757524 -0.0730143 -1) (0.78116 -0.0705904 -1) (0.803786 -0.068214 -1) (0.825372 -0.0658976 -1) (0.845902 -0.0636507 -1) (0.865372 -0.0614764 -1) (0.883797 -0.0593656 -1) (0.901219 -0.057287 -1) (0.917712 -0.0551711 -1) (0.933397 -0.052891 -1) (0.948439 -0.0502386 -1) (0.963045 -0.0468981 -1) (0.977418 -0.0423768 -1) (0.991688 -0.0358707 -1) (1.00596 -0.0259754 -1) (1.01658 -0.00976191 -1) (1.0068 0.0266002 -1) (0.992446 0.0369172 -1) (0.978063 0.043743 -1) (0.963562 0.0484959 -1) (0.948845 0.0519992 -1) (0.933715 0.054758 -1) (0.91797 0.0571009 -1) (0.901441 0.0592479 -1) (0.883999 0.0613371 -1) (0.865562 0.063447 -1) (0.846087 0.0656152 -1) (0.825553 0.067854 -1) (0.803964 0.0701621 -1) (0.781335 0.072531 -1) (0.757696 0.074948 -1) (0.73309 0.0773982 -1) (0.70757 0.0798645 -1) (0.681205 0.0823281 -1) (0.654072 0.0847682 -1) (0.626262 0.0871627 -1) (0.597875 0.0894876 -1) (0.569021 0.0917178 -1) (0.539817 0.0938273 -1) (0.510384 0.0957894 -1) (0.480851 0.0975774 -1) (0.451344 0.099165 -1) (0.421989 0.100527 -1) (0.392913 0.10164 -1) (0.364232 0.102481 -1) (0.33606 0.103033 -1) (0.308499 0.103278 -1) (0.281643 0.103204 -1) (0.255573 0.102799 -1) (0.230357 0.102054 -1) (0.206051 0.100961 -1) (0.182695 0.0995124 -1) (0.160314 0.0976946 -1) (0.138918 0.0954877 -1) (0.118497 0.0928575 -1) (0.0990217 0.0897462 -1) (0.0804445 0.0860599 -1) (0.0627026 0.0816521 -1) (0.0457334 0.0763039 -1) (0.029504 0.0696997 -1) (0.0140718 0.0613974 -1) (-0.00030114 0.0508017 -1) (-0.0129219 0.0371901 -1) (-0.0222442 0.0200193 -1) (-0.0258718 2.98156e-19 -1) (-0.0222442 -0.0200193 -1) (-0.0129219 -0.0371901 -1) (-0.00030114 -0.0508017 -1) (0.0140718 -0.0613974 -1) (0.029504 -0.0696997 -1) (0.0457334 -0.0763039 -1) (0.0627026 -0.0816521 -1) (0.0804445 -0.0860599 -1) (0.0990217 -0.0897462 -1) (0.118497 -0.0928575 -1) (0.138918 -0.0954877 -1) (0.160314 -0.0976946 -1) (0.182695 -0.0995124 -1) (0.206051 -0.100961 -1) (0.230357 -0.102054 -1) (0.255573 -0.102799 -1) (0.281643 -0.103204 -1) (0.308499 -0.103278 -1) (0.33606 -0.103033 -1) (0.364232 -0.102481 -1) (0.392913 -0.10164 -1) (0.421989 -0.100527 -1) (0.451344 -0.099165 -1) (0.480851 -0.0975774 -1) (0.510384 -0.0957894 -1) (0.539817 -0.0938273 -1) (0.569021 -0.0917178 -1) (0.597875 -0.0894876 -1) (0.626262 -0.0871627 -1) (0.654072 -0.0847682 -1) (0.681205 -0.0823281 -1) (0.70757 -0.0798645 -1) (0.73309 -0.0773982 -1) (0.757696 -0.074948 -1) (0.781335 -0.072531 -1) (0.803964 -0.0701621 -1) (0.825553 -0.067854 -1) (0.846087 -0.0656152 -1) (0.865562 -0.063447 -1) (0.883999 -0.0613371 -1) (0.901441 -0.0592479 -1) (0.91797 -0.0571009 -1) (0.933715 -0.054758 -1) (0.948845 -0.0519992 -1) (0.963562 -0.0484959 -1) (0.978063 -0.043743 -1) (0.992446 -0.0369172 -1) (1.0068 -0.0266002 -1) (1.01721 -0.00991145 -1) (1.00766 0.0272148 -1) (0.993229 0.0379589 -1) (0.978735 0.0451122 -1) (0.964106 0.0501055 -1) (0.949273 0.0537803 -1) (0.934052 0.0566538 -1) (0.918242 0.0590664 -1) (0.901671 0.0612496 -1) (0.884206 0.0633525 -1) (0.865757 0.0654631 -1) (0.846275 0.0676255 -1) (0.825737 0.0698562 -1) (0.804145 0.0721558 -1) (0.781513 0.0745166 -1) (0.757871 0.0769263 -1) (0.73326 0.07937 -1) (0.707737 0.0818306 -1) (0.681367 0.0842891 -1) (0.654229 0.0867248 -1) (0.626413 0.0891154 -1) (0.59802 0.0914369 -1) (0.569159 0.0936642 -1) (0.539947 0.0957713 -1) (0.510506 0.0977312 -1) (0.480962 0.0995174 -1) (0.451443 0.101104 -1) (0.422076 0.102464 -1) (0.392985 0.103576 -1) (0.364289 0.104416 -1) (0.3361 0.104967 -1) (0.308519 0.105212 -1) (0.281642 0.105136 -1) (0.255547 0.104729 -1) (0.230305 0.103981 -1) (0.205968 0.102885 -1) (0.182578 0.101429 -1) (0.160159 0.0996006 -1) (0.138717 0.0973774 -1) (0.118242 0.0947217 -1) (0.0987023 0.0915709 -1) (0.080047 0.087825 -1) (0.0622128 0.0833302 -1) (0.0451381 0.0778597 -1) (0.0287957 0.0710902 -1) (0.0132535 0.062574 -1) (-0.00120957 0.0517146 -1) (-0.0138803 0.0377988 -1) (-0.0231994 0.0203124 -1) (-0.0268097 2.71051e-19 -1) (-0.0231994 -0.0203124 -1) (-0.0138803 -0.0377988 -1) (-0.00120957 -0.0517146 -1) (0.0132535 -0.062574 -1) (0.0287957 -0.0710902 -1) (0.0451381 -0.0778597 -1) (0.0622128 -0.0833302 -1) (0.080047 -0.087825 -1) (0.0987023 -0.0915709 -1) (0.118242 -0.0947217 -1) (0.138717 -0.0973774 -1) (0.160159 -0.0996006 -1) (0.182578 -0.101429 -1) (0.205968 -0.102885 -1) (0.230305 -0.103981 -1) (0.255547 -0.104729 -1) (0.281642 -0.105136 -1) (0.308519 -0.105212 -1) (0.3361 -0.104967 -1) (0.364289 -0.104416 -1) (0.392985 -0.103576 -1) (0.422076 -0.102464 -1) (0.451443 -0.101104 -1) (0.480962 -0.0995174 -1) (0.510506 -0.0977312 -1) (0.539947 -0.0957713 -1) (0.569159 -0.0936642 -1) (0.59802 -0.0914369 -1) (0.626413 -0.0891154 -1) (0.654229 -0.0867248 -1) (0.681367 -0.0842891 -1) (0.707737 -0.0818306 -1) (0.73326 -0.07937 -1) (0.757871 -0.0769263 -1) (0.781513 -0.0745166 -1) (0.804145 -0.0721558 -1) (0.825737 -0.0698562 -1) (0.846275 -0.0676255 -1) (0.865757 -0.0654631 -1) (0.884206 -0.0633525 -1) (0.901671 -0.0612496 -1) (0.918242 -0.0590664 -1) (0.934052 -0.0566538 -1) (0.949273 -0.0537803 -1) (0.964106 -0.0501055 -1) (0.978735 -0.0451122 -1) (0.993229 -0.0379589 -1) (1.00766 -0.0272148 -1) (1.01784 -0.0100574 -1) (1.00853 0.0278191 -1) (0.994036 0.0389957 -1) (0.979435 0.0464839 -1) (0.964677 0.0517264 -1) (0.949726 0.0555815 -1) (0.934408 0.058578 -1) (0.918528 0.0610674 -1) (0.901911 0.0632922 -1) (0.884419 0.0654125 -1) (0.865956 0.0675256 -1) (0.846466 0.069683 -1) (0.825924 0.0719055 -1) (0.804329 0.0741962 -1) (0.781693 0.0765485 -1) (0.758048 0.0789505 -1) (0.733434 0.0813873 -1) (0.707907 0.0838418 -1) (0.681532 0.0862949 -1) (0.654389 0.0887259 -1) (0.626568 0.0911123 -1) (0.598168 0.0934303 -1) (0.5693 0.0956545 -1) (0.540079 0.0977588 -1) (0.510629 0.0997165 -1) (0.481075 0.101501 -1) (0.451545 0.103085 -1) (0.422165 0.104445 -1) (0.39306 0.105555 -1) (0.364347 0.106395 -1) (0.33614 0.106944 -1) (0.30854 0.107188 -1) (0.28164 0.10711 -1) (0.255521 0.106701 -1) (0.230251 0.105951 -1) (0.205884 0.104849 -1) (0.182459 0.103386 -1) (0.159999 0.101547 -1) (0.138511 0.0993059 -1) (0.11798 0.0966224 -1) (0.0983721 0.0934291 -1) (0.0796358 0.0896196 -1) (0.0617061 0.0850327 -1) (0.0445235 0.0794339 -1) (0.0280666 0.072493 -1) (0.0124145 0.063757 -1) (-0.00213705 0.0526292 -1) (-0.014855 0.0384064 -1) (-0.0241683 0.0206041 -1) (-0.0277602 2.84603e-19 -1) (-0.0241683 -0.0206041 -1) (-0.014855 -0.0384064 -1) (-0.00213705 -0.0526292 -1) (0.0124145 -0.063757 -1) (0.0280666 -0.072493 -1) (0.0445235 -0.0794339 -1) (0.0617061 -0.0850327 -1) (0.0796358 -0.0896196 -1) (0.0983721 -0.0934291 -1) (0.11798 -0.0966224 -1) (0.138511 -0.0993059 -1) (0.159999 -0.101547 -1) (0.182459 -0.103386 -1) (0.205884 -0.104849 -1) (0.230251 -0.105951 -1) (0.255521 -0.106701 -1) (0.28164 -0.10711 -1) (0.30854 -0.107188 -1) (0.33614 -0.106944 -1) (0.364347 -0.106395 -1) (0.39306 -0.105555 -1) (0.422165 -0.104445 -1) (0.451545 -0.103085 -1) (0.481075 -0.101501 -1) (0.510629 -0.0997165 -1) (0.540079 -0.0977588 -1) (0.5693 -0.0956545 -1) (0.598168 -0.0934303 -1) (0.626568 -0.0911123 -1) (0.654389 -0.0887259 -1) (0.681532 -0.0862949 -1) (0.707907 -0.0838418 -1) (0.733434 -0.0813873 -1) (0.758048 -0.0789505 -1) (0.781693 -0.0765485 -1) (0.804329 -0.0741962 -1) (0.825924 -0.0719055 -1) (0.846466 -0.069683 -1) (0.865956 -0.0675256 -1) (0.884419 -0.0654125 -1) (0.901911 -0.0632922 -1) (0.918528 -0.0610674 -1) (0.934408 -0.058578 -1) (0.949726 -0.0555815 -1) (0.964677 -0.0517264 -1) (0.979435 -0.0464839 -1) (0.994036 -0.0389957 -1) (1.00853 -0.0278191 -1) (1.01849 -0.0101998 -1) (1.00942 0.0284133 -1) (0.994868 0.0400274 -1) (0.980162 0.0478577 -1) (0.965276 0.053358 -1) (0.950203 0.0574023 -1) (0.934784 0.06053 -1) (0.918829 0.0631036 -1) (0.902162 0.0653759 -1) (0.88464 0.0675173 -1) (0.86616 0.0696352 -1) (0.846661 0.0717884 -1) (0.826115 0.0740029 -1) (0.804515 0.0762845 -1) (0.781877 0.0786279 -1) (0.758228 0.0810217 -1) (0.733611 0.0834512 -1) (0.70808 0.0858991 -1) (0.6817 0.0883466 -1) (0.654552 0.0907725 -1) (0.626725 0.0931546 -1) (0.598319 0.0954687 -1) (0.569443 0.0976896 -1) (0.540215 0.0997911 -1) (0.510755 0.101746 -1) (0.481191 0.103529 -1) (0.451649 0.105111 -1) (0.422256 0.106469 -1) (0.393136 0.107578 -1) (0.364407 0.108417 -1) (0.336181 0.108965 -1) (0.308561 0.109207 -1) (0.281638 0.109128 -1) (0.255494 0.108717 -1) (0.230196 0.107963 -1) (0.205797 0.106857 -1) (0.182336 0.105386 -1) (0.159835 0.103534 -1) (0.138298 0.101274 -1) (0.117708 0.0985603 -1) (0.0980303 0.0953211 -1) (0.0792099 0.0914436 -1) (0.0611819 0.0867594 -1) (0.0438889 0.0810265 -1) (0.0273162 0.073908 -1) (0.0115544 0.0649465 -1) (-0.0030839 0.0535455 -1) (-0.0158462 0.0390131 -1) (-0.0251512 0.0208944 -1) (-0.0287236 2.57498e-19 -1) (-0.0251512 -0.0208944 -1) (-0.0158462 -0.0390131 -1) (-0.0030839 -0.0535455 -1) (0.0115544 -0.0649465 -1) (0.0273162 -0.073908 -1) (0.0438889 -0.0810265 -1) (0.0611819 -0.0867594 -1) (0.0792099 -0.0914436 -1) (0.0980303 -0.0953211 -1) (0.117708 -0.0985603 -1) (0.138298 -0.101274 -1) (0.159835 -0.103534 -1) (0.182336 -0.105386 -1) (0.205797 -0.106857 -1) (0.230196 -0.107963 -1) (0.255494 -0.108717 -1) (0.281638 -0.109128 -1) (0.308561 -0.109207 -1) (0.336181 -0.108965 -1) (0.364407 -0.108417 -1) (0.393136 -0.107578 -1) (0.422256 -0.106469 -1) (0.451649 -0.105111 -1) (0.481191 -0.103529 -1) (0.510755 -0.101746 -1) (0.540215 -0.0997911 -1) (0.569443 -0.0976896 -1) (0.598319 -0.0954687 -1) (0.626725 -0.0931546 -1) (0.654552 -0.0907725 -1) (0.6817 -0.0883466 -1) (0.70808 -0.0858991 -1) (0.733611 -0.0834512 -1) (0.758228 -0.0810217 -1) (0.781877 -0.0786279 -1) (0.804515 -0.0762845 -1) (0.826115 -0.0740029 -1) (0.846661 -0.0717884 -1) (0.86616 -0.0696352 -1) (0.88464 -0.0675173 -1) (0.902162 -0.0653759 -1) (0.918829 -0.0631036 -1) (0.934784 -0.06053 -1) (0.950203 -0.0574023 -1) (0.965276 -0.053358 -1) (0.980162 -0.0478577 -1) (0.994868 -0.0400274 -1) (1.00942 -0.0284133 -1) (1.01915 -0.0103391 -1) (1.01033 0.0289977 -1) (0.995726 0.0410539 -1) (0.980918 0.0492333 -1) (0.965903 0.0549999 -1) (0.950707 0.059242 -1) (0.935182 0.0625095 -1) (0.919146 0.0651748 -1) (0.902424 0.0675006 -1) (0.884868 0.0696676 -1) (0.866369 0.0717928 -1) (0.84686 0.073943 -1) (0.826308 0.0761497 -1) (0.804705 0.078422 -1) (0.782064 0.080756 -1) (0.758412 0.0831412 -1) (0.733791 0.0855629 -1) (0.708255 0.088004 -1) (0.681872 0.0904453 -1) (0.654718 0.0928659 -1) (0.626885 0.0952433 -1) (0.598473 0.0975533 -1) (0.56959 0.0997707 -1) (0.540353 0.101869 -1) (0.510884 0.103822 -1) (0.481309 0.105602 -1) (0.451755 0.107183 -1) (0.422348 0.108539 -1) (0.393213 0.109646 -1) (0.364468 0.110484 -1) (0.336223 0.111031 -1) (0.308582 0.111272 -1) (0.281636 0.111191 -1) (0.255467 0.110777 -1) (0.230139 0.11002 -1) (0.205708 0.108908 -1) (0.18221 0.107428 -1) (0.159666 0.105563 -1) (0.138078 0.103282 -1) (0.117427 0.100536 -1) (0.0976765 0.0972472 -1) (0.0787689 0.0932972 -1) (0.0606394 0.0885102 -1) (0.0432338 0.0826372 -1) (0.0265441 0.075335 -1) (0.0106729 0.0661422 -1) (-0.00405045 0.0544636 -1) (-0.0168544 0.0396187 -1) (-0.0261485 0.0211836 -1) (-0.0297006 2.71051e-19 -1) (-0.0261485 -0.0211836 -1) (-0.0168544 -0.0396187 -1) (-0.00405045 -0.0544636 -1) (0.0106729 -0.0661422 -1) (0.0265441 -0.075335 -1) (0.0432338 -0.0826372 -1) (0.0606394 -0.0885102 -1) (0.0787689 -0.0932972 -1) (0.0976765 -0.0972472 -1) (0.117427 -0.100536 -1) (0.138078 -0.103282 -1) (0.159666 -0.105563 -1) (0.18221 -0.107428 -1) (0.205708 -0.108908 -1) (0.230139 -0.11002 -1) (0.255467 -0.110777 -1) (0.281636 -0.111191 -1) (0.308582 -0.111272 -1) (0.336223 -0.111031 -1) (0.364468 -0.110484 -1) (0.393213 -0.109646 -1) (0.422348 -0.108539 -1) (0.451755 -0.107183 -1) (0.481309 -0.105602 -1) (0.510884 -0.103822 -1) (0.540353 -0.101869 -1) (0.56959 -0.0997707 -1) (0.598473 -0.0975533 -1) (0.626885 -0.0952433 -1) (0.654718 -0.0928659 -1) (0.681872 -0.0904453 -1) (0.708255 -0.088004 -1) (0.733791 -0.0855629 -1) (0.758412 -0.0831412 -1) (0.782064 -0.080756 -1) (0.804705 -0.078422 -1) (0.826308 -0.0761497 -1) (0.84686 -0.073943 -1) (0.866369 -0.0717928 -1) (0.884868 -0.0696676 -1) (0.902424 -0.0675006 -1) (0.919146 -0.0651748 -1) (0.935182 -0.0625095 -1) (0.950707 -0.059242 -1) (0.965903 -0.0549999 -1) (0.980918 -0.0492333 -1) (0.995726 -0.0410539 -1) (1.01033 -0.0289977 -1) (1.01982 -0.0104752 -1) (1.01125 0.0295723 -1) (0.996608 0.042075 -1) (0.981702 0.0506104 -1) (0.966559 0.0566515 -1) (0.951237 0.0611002 -1) (0.935602 0.0645159 -1) (0.919481 0.0672807 -1) (0.902698 0.0696664 -1) (0.885104 0.0718636 -1) (0.866584 0.073999 -1) (0.847063 0.0761476 -1) (0.826505 0.078347 -1) (0.804898 0.0806097 -1) (0.782253 0.0829341 -1) (0.758598 0.0853102 -1) (0.733974 0.0877237 -1) (0.708434 0.0901574 -1) (0.682046 0.0925923 -1) (0.654888 0.0950073 -1) (0.627049 0.0973797 -1) (0.59863 0.0996854 -1) (0.569739 0.101899 -1) (0.540493 0.103994 -1) (0.511015 0.105944 -1) (0.481429 0.107722 -1) (0.451863 0.1093 -1) (0.422443 0.110655 -1) (0.393293 0.111761 -1) (0.36453 0.112597 -1) (0.336266 0.113143 -1) (0.308604 0.113382 -1) (0.281635 0.113299 -1) (0.255438 0.112883 -1) (0.230082 0.112121 -1) (0.205617 0.111003 -1) (0.18208 0.109515 -1) (0.159491 0.107634 -1) (0.13785 0.10533 -1) (0.117137 0.102549 -1) (0.0973099 0.0992074 -1) (0.078312 0.0951804 -1) (0.0600781 0.0902852 -1) (0.0425575 0.084266 -1) (0.0257497 0.076774 -1) (0.0097694 0.0673443 -1) (-0.00503704 0.0553835 -1) (-0.0178798 0.0402236 -1) (-0.0271607 0.0214715 -1) (-0.0306915 2.43945e-19 -1) (-0.0271607 -0.0214715 -1) (-0.0178798 -0.0402236 -1) (-0.00503704 -0.0553835 -1) (0.0097694 -0.0673443 -1) (0.0257497 -0.076774 -1) (0.0425575 -0.084266 -1) (0.0600781 -0.0902852 -1) (0.078312 -0.0951804 -1) (0.0973099 -0.0992074 -1) (0.117137 -0.102549 -1) (0.13785 -0.10533 -1) (0.159491 -0.107634 -1) (0.18208 -0.109515 -1) (0.205617 -0.111003 -1) (0.230082 -0.112121 -1) (0.255438 -0.112883 -1) (0.281635 -0.113299 -1) (0.308604 -0.113382 -1) (0.336266 -0.113143 -1) (0.36453 -0.112597 -1) (0.393293 -0.111761 -1) (0.422443 -0.110655 -1) (0.451863 -0.1093 -1) (0.481429 -0.107722 -1) (0.511015 -0.105944 -1) (0.540493 -0.103994 -1) (0.569739 -0.101899 -1) (0.59863 -0.0996854 -1) (0.627049 -0.0973797 -1) (0.654888 -0.0950073 -1) (0.682046 -0.0925923 -1) (0.708434 -0.0901574 -1) (0.733974 -0.0877237 -1) (0.758598 -0.0853102 -1) (0.782253 -0.0829341 -1) (0.804898 -0.0806097 -1) (0.826505 -0.078347 -1) (0.847063 -0.0761476 -1) (0.866584 -0.073999 -1) (0.885104 -0.0718636 -1) (0.902698 -0.0696664 -1) (0.919481 -0.0672807 -1) (0.935602 -0.0645159 -1) (0.951237 -0.0611002 -1) (0.966559 -0.0566515 -1) (0.981702 -0.0506104 -1) (0.996608 -0.042075 -1) (1.01125 -0.0295723 -1) (1.02051 -0.0106083 -1) (1.0122 0.0301373 -1) (0.997515 0.0430906 -1) (0.982515 0.0519886 -1) (0.967245 0.0583125 -1) (0.951795 0.0629763 -1) (0.936046 0.0665488 -1) (0.919834 0.0694209 -1) (0.902987 0.0718732 -1) (0.88535 0.0741058 -1) (0.866805 0.0762546 -1) (0.847271 0.0784033 -1) (0.826705 0.0805959 -1) (0.805094 0.0828491 -1) (0.782446 0.0851635 -1) (0.758788 0.08753 -1) (0.73416 0.0899348 -1) (0.708616 0.0923608 -1) (0.682223 0.0947889 -1) (0.65506 0.0971978 -1) (0.627215 0.099565 -1) (0.598789 0.101866 -1) (0.569891 0.104076 -1) (0.540637 0.106167 -1) (0.511148 0.108114 -1) (0.481552 0.109889 -1) (0.451973 0.111466 -1) (0.422539 0.112818 -1) (0.393373 0.113923 -1) (0.364593 0.114757 -1) (0.33631 0.115302 -1) (0.308626 0.115539 -1) (0.281633 0.115454 -1) (0.255409 0.115035 -1) (0.230022 0.114269 -1) (0.205523 0.113144 -1) (0.181947 0.111645 -1) (0.159311 0.109749 -1) (0.137615 0.10742 -1) (0.116836 0.1046 -1) (0.09693 0.101202 -1) (0.0778384 0.0970933 -1) (0.0594972 0.0920842 -1) (0.0418594 0.0859128 -1) (0.0249325 0.0782248 -1) (0.00884366 0.0685526 -1) (-0.00604401 0.0563051 -1) (-0.0189229 0.0408277 -1) (-0.0281882 0.0217585 -1) (-0.0316969 2.30393e-19 -1) (-0.0281882 -0.0217585 -1) (-0.0189229 -0.0408277 -1) (-0.00604401 -0.0563051 -1) (0.00884366 -0.0685526 -1) (0.0249325 -0.0782248 -1) (0.0418594 -0.0859128 -1) (0.0594972 -0.0920842 -1) (0.0778384 -0.0970933 -1) (0.09693 -0.101202 -1) (0.116836 -0.1046 -1) (0.137615 -0.10742 -1) (0.159311 -0.109749 -1) (0.181947 -0.111645 -1) (0.205523 -0.113144 -1) (0.230022 -0.114269 -1) (0.255409 -0.115035 -1) (0.281633 -0.115454 -1) (0.308626 -0.115539 -1) (0.33631 -0.115302 -1) (0.364593 -0.114757 -1) (0.393373 -0.113923 -1) (0.422539 -0.112818 -1) (0.451973 -0.111466 -1) (0.481552 -0.109889 -1) (0.511148 -0.108114 -1) (0.540637 -0.106167 -1) (0.569891 -0.104076 -1) (0.598789 -0.101866 -1) (0.627215 -0.099565 -1) (0.65506 -0.0971978 -1) (0.682223 -0.0947889 -1) (0.708616 -0.0923608 -1) (0.73416 -0.0899348 -1) (0.758788 -0.08753 -1) (0.782446 -0.0851635 -1) (0.805094 -0.0828491 -1) (0.826705 -0.0805959 -1) (0.847271 -0.0784033 -1) (0.866805 -0.0762546 -1) (0.88535 -0.0741058 -1) (0.902987 -0.0718732 -1) (0.919834 -0.0694209 -1) (0.936046 -0.0665488 -1) (0.951795 -0.0629763 -1) (0.967245 -0.0583125 -1) (0.982515 -0.0519886 -1) (0.997515 -0.0430906 -1) (1.0122 -0.0301373 -1) (1.02121 -0.0107387 -1) (1.01316 0.030693 -1) (0.998447 0.0441006 -1) (0.983357 0.0533676 -1) (0.967961 0.0599824 -1) (0.952382 0.0648698 -1) (0.936516 0.0686076 -1) (0.920208 0.0715951 -1) (0.903289 0.074121 -1) (0.885606 0.0763942 -1) (0.867032 0.0785601 -1) (0.847483 0.080711 -1) (0.826909 0.0828977 -1) (0.805293 0.0851415 -1) (0.782641 0.0874454 -1) (0.75898 0.0898019 -1) (0.734349 0.0921976 -1) (0.708801 0.0946155 -1) (0.682404 0.0970363 -1) (0.655235 0.0994388 -1) (0.627384 0.1018 -1) (0.598952 0.104097 -1) (0.570046 0.106302 -1) (0.540783 0.10839 -1) (0.511285 0.110334 -1) (0.481677 0.112106 -1) (0.452086 0.11368 -1) (0.422638 0.115031 -1) (0.393456 0.116133 -1) (0.364658 0.116966 -1) (0.336355 0.117509 -1) (0.308649 0.117744 -1) (0.281631 0.117657 -1) (0.255379 0.117234 -1) (0.229961 0.116464 -1) (0.205426 0.115332 -1) (0.181809 0.113821 -1) (0.159126 0.111908 -1) (0.137372 0.109551 -1) (0.116524 0.106691 -1) (0.0965358 0.103232 -1) (0.0773474 0.0990358 -1) (0.058896 0.0939072 -1) (0.0411389 0.0875774 -1) (0.024092 0.0796873 -1) (0.00789523 0.069767 -1) (-0.00707171 0.0572285 -1) (-0.0199839 0.0414311 -1) (-0.0292314 0.0220444 -1) (-0.0327173 2.71051e-19 -1) (-0.0292314 -0.0220444 -1) (-0.0199839 -0.0414311 -1) (-0.00707171 -0.0572285 -1) (0.00789523 -0.069767 -1) (0.024092 -0.0796873 -1) (0.0411389 -0.0875774 -1) (0.058896 -0.0939072 -1) (0.0773474 -0.0990358 -1) (0.0965358 -0.103232 -1) (0.116524 -0.106691 -1) (0.137372 -0.109551 -1) (0.159126 -0.111908 -1) (0.181809 -0.113821 -1) (0.205426 -0.115332 -1) (0.229961 -0.116464 -1) (0.255379 -0.117234 -1) (0.281631 -0.117657 -1) (0.308649 -0.117744 -1) (0.336355 -0.117509 -1) (0.364658 -0.116966 -1) (0.393456 -0.116133 -1) (0.422638 -0.115031 -1) (0.452086 -0.11368 -1) (0.481677 -0.112106 -1) (0.511285 -0.110334 -1) (0.540783 -0.10839 -1) (0.570046 -0.106302 -1) (0.598952 -0.104097 -1) (0.627384 -0.1018 -1) (0.655235 -0.0994388 -1) (0.682404 -0.0970363 -1) (0.708801 -0.0946155 -1) (0.734349 -0.0921976 -1) (0.75898 -0.0898019 -1) (0.782641 -0.0874454 -1) (0.805293 -0.0851415 -1) (0.826909 -0.0828977 -1) (0.847483 -0.080711 -1) (0.867032 -0.0785601 -1) (0.885606 -0.0763942 -1) (0.903289 -0.074121 -1) (0.920208 -0.0715951 -1) (0.936516 -0.0686076 -1) (0.952382 -0.0648698 -1) (0.967961 -0.0599824 -1) (0.983357 -0.0533676 -1) (0.998447 -0.0441006 -1) (1.01316 -0.030693 -1) (1.02192 -0.0108663 -1) (1.01413 0.0312394 -1) (0.999405 0.0451048 -1) (0.984228 0.0547471 -1) (0.968708 0.0616607 -1) (0.952998 0.0667802 -1) (0.937011 0.0706919 -1) (0.920602 0.0738029 -1) (0.903608 0.0764096 -1) (0.885873 0.0787292 -1) (0.867267 0.0809163 -1) (0.8477 0.0830717 -1) (0.827116 0.0852535 -1) (0.805495 0.087488 -1) (0.78284 0.0897813 -1) (0.759175 0.0921274 -1) (0.734541 0.0945134 -1) (0.708989 0.0969226 -1) (0.682587 0.0993358 -1) (0.655414 0.101732 -1) (0.627557 0.104087 -1) (0.599117 0.106378 -1) (0.570204 0.108579 -1) (0.540932 0.110663 -1) (0.511424 0.112603 -1) (0.481805 0.114373 -1) (0.452201 0.115944 -1) (0.422738 0.117293 -1) (0.39354 0.118393 -1) (0.364724 0.119224 -1) (0.336401 0.119765 -1) (0.308672 0.119998 -1) (0.281628 0.119909 -1) (0.255349 0.119482 -1) (0.229898 0.118707 -1) (0.205326 0.117567 -1) (0.181667 0.116044 -1) (0.158933 0.114111 -1) (0.13712 0.111725 -1) (0.116201 0.10882 -1) (0.0961269 0.105296 -1) (0.0768383 0.101008 -1) (0.0582737 0.0957541 -1) (0.0403954 0.0892597 -1) (0.0232278 0.0811614 -1) (0.00692371 0.0709875 -1) (-0.00812051 0.0581538 -1) (-0.0210634 0.042034 -1) (-0.030291 0.0223295 -1) (-0.0337531 2.30393e-19 -1) (-0.030291 -0.0223295 -1) (-0.0210634 -0.042034 -1) (-0.00812051 -0.0581538 -1) (0.00692371 -0.0709875 -1) (0.0232278 -0.0811614 -1) (0.0403954 -0.0892597 -1) (0.0582737 -0.0957541 -1) (0.0768383 -0.101008 -1) (0.0961269 -0.105296 -1) (0.116201 -0.10882 -1) (0.13712 -0.111725 -1) (0.158933 -0.114111 -1) (0.181667 -0.116044 -1) (0.205326 -0.117567 -1) (0.229898 -0.118707 -1) (0.255349 -0.119482 -1) (0.281628 -0.119909 -1) (0.308672 -0.119998 -1) (0.336401 -0.119765 -1) (0.364724 -0.119224 -1) (0.39354 -0.118393 -1) (0.422738 -0.117293 -1) (0.452201 -0.115944 -1) (0.481805 -0.114373 -1) (0.511424 -0.112603 -1) (0.540932 -0.110663 -1) (0.570204 -0.108579 -1) (0.599117 -0.106378 -1) (0.627557 -0.104087 -1) (0.655414 -0.101732 -1) (0.682587 -0.0993358 -1) (0.708989 -0.0969226 -1) (0.734541 -0.0945134 -1) (0.759175 -0.0921274 -1) (0.78284 -0.0897813 -1) (0.805495 -0.087488 -1) (0.827116 -0.0852535 -1) (0.8477 -0.0830717 -1) (0.867267 -0.0809163 -1) (0.885873 -0.0787292 -1) (0.903608 -0.0764096 -1) (0.920602 -0.0738029 -1) (0.937011 -0.0706919 -1) (0.952998 -0.0667802 -1) (0.968708 -0.0616607 -1) (0.984228 -0.0547471 -1) (0.999405 -0.0451048 -1) (1.01413 -0.0312394 -1) (1.02266 -0.0109915 -1) (1.01513 0.0317768 -1) (1.00039 0.0461031 -1) (0.985129 0.0561268 -1) (0.969486 0.0633471 -1) (0.953644 0.0687071 -1) (0.937533 0.0728012 -1) (0.921019 0.0760439 -1) (0.903944 0.0787387 -1) (0.886152 0.0811109 -1) (0.867511 0.0833235 -1) (0.847922 0.0854862 -1) (0.827328 0.0876644 -1) (0.8057 0.08989 -1) (0.783042 0.0921726 -1) (0.759374 0.0945078 -1) (0.734736 0.0968837 -1) (0.709181 0.0992838 -1) (0.682774 0.101689 -1) (0.655595 0.104077 -1) (0.627733 0.106427 -1) (0.599286 0.108712 -1) (0.570365 0.110908 -1) (0.541084 0.112988 -1) (0.511566 0.114925 -1) (0.481935 0.116691 -1) (0.452318 0.11826 -1) (0.422841 0.119606 -1) (0.393626 0.120704 -1) (0.364791 0.121533 -1) (0.336447 0.122072 -1) (0.308695 0.122303 -1) (0.281626 0.12221 -1) (0.255317 0.12178 -1) (0.229833 0.120999 -1) (0.205223 0.11985 -1) (0.18152 0.118314 -1) (0.158734 0.11636 -1) (0.136859 0.113942 -1) (0.115865 0.110989 -1) (0.0957022 0.107395 -1) (0.0763102 0.10301 -1) (0.0576297 0.0976248 -1) (0.0396282 0.0909596 -1) (0.0223393 0.082647 -1) (0.00592868 0.0722142 -1) (-0.00919076 0.059081 -1) (-0.0221616 0.0426363 -1) (-0.0313671 0.0226137 -1) (-0.034805 1.6263e-19 -1) (-0.0313671 -0.0226137 -1) (-0.0221616 -0.0426363 -1) (-0.00919076 -0.059081 -1) (0.00592868 -0.0722142 -1) (0.0223393 -0.082647 -1) (0.0396282 -0.0909596 -1) (0.0576297 -0.0976248 -1) (0.0763102 -0.10301 -1) (0.0957022 -0.107395 -1) (0.115865 -0.110989 -1) (0.136859 -0.113942 -1) (0.158734 -0.11636 -1) (0.18152 -0.118314 -1) (0.205223 -0.11985 -1) (0.229833 -0.120999 -1) (0.255317 -0.12178 -1) (0.281626 -0.12221 -1) (0.308695 -0.122303 -1) (0.336447 -0.122072 -1) (0.364791 -0.121533 -1) (0.393626 -0.120704 -1) (0.422841 -0.119606 -1) (0.452318 -0.11826 -1) (0.481935 -0.116691 -1) (0.511566 -0.114925 -1) (0.541084 -0.112988 -1) (0.570365 -0.110908 -1) (0.599286 -0.108712 -1) (0.627733 -0.106427 -1) (0.655595 -0.104077 -1) (0.682774 -0.101689 -1) (0.709181 -0.0992838 -1) (0.734736 -0.0968837 -1) (0.759374 -0.0945078 -1) (0.783042 -0.0921726 -1) (0.8057 -0.08989 -1) (0.827328 -0.0876644 -1) (0.847922 -0.0854862 -1) (0.867511 -0.0833235 -1) (0.886152 -0.0811109 -1) (0.903944 -0.0787387 -1) (0.921019 -0.0760439 -1) (0.937533 -0.0728012 -1) (0.953644 -0.0687071 -1) (0.969486 -0.0633471 -1) (0.985129 -0.0561268 -1) (1.00039 -0.0461031 -1) (1.01513 -0.0317768 -1) (1.0234 -0.0111141 -1) (1.01614 0.0323054 -1) (1.0014 0.0470955 -1) (0.98606 0.0575065 -1) (0.970296 0.0650411 -1) (0.954321 0.0706499 -1) (0.938084 0.0749349 -1) (0.92146 0.0783177 -1) (0.904299 0.0811083 -1) (0.886445 0.0835394 -1) (0.867763 0.0857824 -1) (0.848151 0.0879554 -1) (0.827544 0.0901316 -1) (0.805909 0.0923489 -1) (0.783246 0.0946206 -1) (0.759575 0.0969446 -1) (0.734934 0.0993099 -1) (0.709375 0.1017 -1) (0.682964 0.104097 -1) (0.65578 0.106478 -1) (0.627911 0.10882 -1) (0.599458 0.1111 -1) (0.570529 0.113291 -1) (0.541239 0.115366 -1) (0.51171 0.117299 -1) (0.482068 0.119062 -1) (0.452437 0.120628 -1) (0.422945 0.121971 -1) (0.393714 0.123068 -1) (0.36486 0.123894 -1) (0.336495 0.124431 -1) (0.308719 0.124659 -1) (0.281623 0.124564 -1) (0.255284 0.124129 -1) (0.229766 0.123341 -1) (0.205117 0.122183 -1) (0.181368 0.120632 -1) (0.158528 0.118655 -1) (0.136588 0.116202 -1) (0.115516 0.113198 -1) (0.0952612 0.10953 -1) (0.0757625 0.105042 -1) (0.0569632 0.0995193 -1) (0.0388368 0.0926771 -1) (0.021426 0.0841441 -1) (0.00490972 0.0734468 -1) (-0.0102829 0.06001 -1) (-0.0232789 0.0432382 -1) (-0.0324605 0.0228972 -1) (-0.0358734 1.21973e-19 -1) (-0.0324605 -0.0228972 -1) (-0.0232789 -0.0432382 -1) (-0.0102829 -0.06001 -1) (0.00490972 -0.0734468 -1) (0.021426 -0.0841441 -1) (0.0388368 -0.0926771 -1) (0.0569632 -0.0995193 -1) (0.0757625 -0.105042 -1) (0.0952612 -0.10953 -1) (0.115516 -0.113198 -1) (0.136588 -0.116202 -1) (0.158528 -0.118655 -1) (0.181368 -0.120632 -1) (0.205117 -0.122183 -1) (0.229766 -0.123341 -1) (0.255284 -0.124129 -1) (0.281623 -0.124564 -1) (0.308719 -0.124659 -1) (0.336495 -0.124431 -1) (0.36486 -0.123894 -1) (0.393714 -0.123068 -1) (0.422945 -0.121971 -1) (0.452437 -0.120628 -1) (0.482068 -0.119062 -1) (0.51171 -0.117299 -1) (0.541239 -0.115366 -1) (0.570529 -0.113291 -1) (0.599458 -0.1111 -1) (0.627911 -0.10882 -1) (0.65578 -0.106478 -1) (0.682964 -0.104097 -1) (0.709375 -0.1017 -1) (0.734934 -0.0993099 -1) (0.759575 -0.0969446 -1) (0.783246 -0.0946206 -1) (0.805909 -0.0923489 -1) (0.827544 -0.0901316 -1) (0.848151 -0.0879554 -1) (0.867763 -0.0857824 -1) (0.886445 -0.0835394 -1) (0.904299 -0.0811083 -1) (0.92146 -0.0783177 -1) (0.938084 -0.0749349 -1) (0.954321 -0.0706499 -1) (0.970296 -0.0650411 -1) (0.98606 -0.0575065 -1) (1.0014 -0.0470955 -1) (1.01614 -0.0323054 -1) (1.02417 -0.0112344 -1) (1.01717 0.0328253 -1) (1.00243 0.0480819 -1) (0.987021 0.0588859 -1) (0.971138 0.0667423 -1) (0.95503 0.0726082 -1) (0.938663 0.0770926 -1) (0.921926 0.0806238 -1) (0.904673 0.083518 -1) (0.886752 0.0860147 -1) (0.868026 0.0882932 -1) (0.848387 0.09048 -1) (0.827764 0.0926562 -1) (0.806122 0.094866 -1) (0.783454 0.0971268 -1) (0.75978 0.0994393 -1) (0.735135 0.101793 -1) (0.709573 0.104174 -1) (0.683157 0.106561 -1) (0.655968 0.108934 -1) (0.628093 0.11127 -1) (0.599633 0.113543 -1) (0.570696 0.115729 -1) (0.541397 0.117799 -1) (0.511858 0.119728 -1) (0.482203 0.121487 -1) (0.452559 0.12305 -1) (0.423052 0.12439 -1) (0.393803 0.125484 -1) (0.36493 0.126308 -1) (0.336543 0.126843 -1) (0.308743 0.127068 -1) (0.28162 0.126969 -1) (0.25525 0.12653 -1) (0.229697 0.125735 -1) (0.205007 0.124566 -1) (0.18121 0.122999 -1) (0.158314 0.120997 -1) (0.136307 0.118506 -1) (0.115154 0.115447 -1) (0.094803 0.1117 -1) (0.0751942 0.107104 -1) (0.0562736 0.101437 -1) (0.0380204 0.0944119 -1) (0.0204873 0.0856525 -1) (0.00386639 0.0746855 -1) (-0.0113972 0.0609409 -1) (-0.0244159 0.0438397 -1) (-0.0335715 0.02318 -1) (-0.0369588 9.48677e-20 -1) (-0.0335715 -0.02318 -1) (-0.0244159 -0.0438397 -1) (-0.0113972 -0.0609409 -1) (0.00386639 -0.0746855 -1) (0.0204873 -0.0856525 -1) (0.0380204 -0.0944119 -1) (0.0562736 -0.101437 -1) (0.0751942 -0.107104 -1) (0.094803 -0.1117 -1) (0.115154 -0.115447 -1) (0.136307 -0.118506 -1) (0.158314 -0.120997 -1) (0.18121 -0.122999 -1) (0.205007 -0.124566 -1) (0.229697 -0.125735 -1) (0.25525 -0.12653 -1) (0.28162 -0.126969 -1) (0.308743 -0.127068 -1) (0.336543 -0.126843 -1) (0.36493 -0.126308 -1) (0.393803 -0.125484 -1) (0.423052 -0.12439 -1) (0.452559 -0.12305 -1) (0.482203 -0.121487 -1) (0.511858 -0.119728 -1) (0.541397 -0.117799 -1) (0.570696 -0.115729 -1) (0.599633 -0.113543 -1) (0.628093 -0.11127 -1) (0.655968 -0.108934 -1) (0.683157 -0.106561 -1) (0.709573 -0.104174 -1) (0.735135 -0.101793 -1) (0.75978 -0.0994393 -1) (0.783454 -0.0971268 -1) (0.806122 -0.094866 -1) (0.827764 -0.0926562 -1) (0.848387 -0.09048 -1) (0.868026 -0.0882932 -1) (0.886752 -0.0860147 -1) (0.904673 -0.083518 -1) (0.921926 -0.0806238 -1) (0.938663 -0.0770926 -1) (0.95503 -0.0726082 -1) (0.971138 -0.0667423 -1) (0.987021 -0.0588859 -1) (1.00243 -0.0480819 -1) (1.01717 -0.0328253 -1) (1.02495 -0.0113525 -1) (1.01822 0.0333367 -1) (1.00349 0.0490621 -1) (0.988013 0.0602647 -1) (0.972013 0.0684504 -1) (0.955772 0.0745816 -1) (0.939274 0.0792739 -1) (0.922418 0.0829618 -1) (0.905069 0.0859675 -1) (0.887075 0.0885369 -1) (0.868299 0.0908564 -1) (0.84863 0.0930609 -1) (0.82799 0.0952393 -1) (0.806338 0.0974425 -1) (0.783666 0.0996927 -1) (0.759988 0.101993 -1) (0.73534 0.104336 -1) (0.709773 0.106705 -1) (0.683354 0.109083 -1) (0.656159 0.111448 -1) (0.628279 0.113776 -1) (0.599811 0.116043 -1) (0.570866 0.118222 -1) (0.541558 0.120288 -1) (0.512008 0.122212 -1) (0.482341 0.123968 -1) (0.452683 0.125527 -1) (0.423161 0.126865 -1) (0.393894 0.127956 -1) (0.365002 0.128777 -1) (0.336593 0.129309 -1) (0.308768 0.129532 -1) (0.281616 0.129429 -1) (0.255214 0.128984 -1) (0.229625 0.128181 -1) (0.204893 0.127001 -1) (0.181047 0.125415 -1) (0.158092 0.123386 -1) (0.136014 0.120855 -1) (0.114776 0.117736 -1) (0.0943267 0.113905 -1) (0.0746046 0.109195 -1) (0.0555599 0.103379 -1) (0.0371785 0.0961641 -1) (0.0195228 0.0871722 -1) (0.00279825 0.0759301 -1) (-0.0125342 0.0618738 -1) (-0.0255728 0.044441 -1) (-0.0347006 0.0234621 -1) (-0.0380618 1.21973e-19 -1) (-0.0347006 -0.0234621 -1) (-0.0255728 -0.044441 -1) (-0.0125342 -0.0618738 -1) (0.00279825 -0.0759301 -1) (0.0195228 -0.0871722 -1) (0.0371785 -0.0961641 -1) (0.0555599 -0.103379 -1) (0.0746046 -0.109195 -1) (0.0943267 -0.113905 -1) (0.114776 -0.117736 -1) (0.136014 -0.120855 -1) (0.158092 -0.123386 -1) (0.181047 -0.125415 -1) (0.204893 -0.127001 -1) (0.229625 -0.128181 -1) (0.255214 -0.128984 -1) (0.281616 -0.129429 -1) (0.308768 -0.129532 -1) (0.336593 -0.129309 -1) (0.365002 -0.128777 -1) (0.393894 -0.127956 -1) (0.423161 -0.126865 -1) (0.452683 -0.125527 -1) (0.482341 -0.123968 -1) (0.512008 -0.122212 -1) (0.541558 -0.120288 -1) (0.570866 -0.118222 -1) (0.599811 -0.116043 -1) (0.628279 -0.113776 -1) (0.656159 -0.111448 -1) (0.683354 -0.109083 -1) (0.709773 -0.106705 -1) (0.73534 -0.104336 -1) (0.759988 -0.101993 -1) (0.783666 -0.0996927 -1) (0.806338 -0.0974425 -1) (0.82799 -0.0952393 -1) (0.84863 -0.0930609 -1) (0.868299 -0.0908564 -1) (0.887075 -0.0885369 -1) (0.905069 -0.0859675 -1) (0.922418 -0.0829618 -1) (0.939274 -0.0792739 -1) (0.955772 -0.0745816 -1) (0.972013 -0.0684504 -1) (0.988013 -0.0602647 -1) (1.00349 -0.0490621 -1) (1.01822 -0.0333367 -1) (1.02575 -0.0114684 -1) (1.01929 0.0338398 -1) (1.00458 0.0500362 -1) (0.989036 0.0616428 -1) (0.972922 0.0701651 -1) (0.956548 0.0765695 -1) (0.939915 0.0814782 -1) (0.922938 0.0853314 -1) (0.905486 0.0884567 -1) (0.887415 0.0911058 -1) (0.868585 0.0934722 -1) (0.848881 0.0956986 -1) (0.828221 0.0978819 -1) (0.806559 0.10008 -1) (0.78388 0.10232 -1) (0.760198 0.104608 -1) (0.735547 0.106939 -1) (0.709977 0.109297 -1) (0.683553 0.111665 -1) (0.656354 0.11402 -1) (0.628467 0.116341 -1) (0.599993 0.1186 -1) (0.571039 0.120774 -1) (0.541721 0.122834 -1) (0.512161 0.124754 -1) (0.482482 0.126505 -1) (0.45281 0.128061 -1) (0.423271 0.129395 -1) (0.393987 0.130484 -1) (0.365074 0.131302 -1) (0.336643 0.131831 -1) (0.308792 0.13205 -1) (0.281612 0.131943 -1) (0.255177 0.131493 -1) (0.22955 0.130681 -1) (0.204775 0.129488 -1) (0.180877 0.127883 -1) (0.157861 0.125824 -1) (0.135709 0.123249 -1) (0.114384 0.120066 -1) (0.0938315 0.116146 -1) (0.0739928 0.111316 -1) (0.0548215 0.105345 -1) (0.0363104 0.0979335 -1) (0.0185319 0.0887032 -1) (0.00170486 0.0771807 -1) (-0.0136942 0.0628087 -1) (-0.0267502 0.045042 -1) (-0.0358484 0.0237438 -1) (-0.039183 1.21973e-19 -1) (-0.0358484 -0.0237438 -1) (-0.0267502 -0.045042 -1) (-0.0136942 -0.0628087 -1) (0.00170486 -0.0771807 -1) (0.0185319 -0.0887032 -1) (0.0363104 -0.0979335 -1) (0.0548215 -0.105345 -1) (0.0739928 -0.111316 -1) (0.0938315 -0.116146 -1) (0.114384 -0.120066 -1) (0.135709 -0.123249 -1) (0.157861 -0.125824 -1) (0.180877 -0.127883 -1) (0.204775 -0.129488 -1) (0.22955 -0.130681 -1) (0.255177 -0.131493 -1) (0.281612 -0.131943 -1) (0.308792 -0.13205 -1) (0.336643 -0.131831 -1) (0.365074 -0.131302 -1) (0.393987 -0.130484 -1) (0.423271 -0.129395 -1) (0.45281 -0.128061 -1) (0.482482 -0.126505 -1) (0.512161 -0.124754 -1) (0.541721 -0.122834 -1) (0.571039 -0.120774 -1) (0.599993 -0.1186 -1) (0.628467 -0.116341 -1) (0.656354 -0.11402 -1) (0.683553 -0.111665 -1) (0.709977 -0.109297 -1) (0.735547 -0.106939 -1) (0.760198 -0.104608 -1) (0.78388 -0.10232 -1) (0.806559 -0.10008 -1) (0.828221 -0.0978819 -1) (0.848881 -0.0956986 -1) (0.868585 -0.0934722 -1) (0.887415 -0.0911058 -1) (0.905486 -0.0884567 -1) (0.922938 -0.0853314 -1) (0.939915 -0.0814782 -1) (0.956548 -0.0765695 -1) (0.972922 -0.0701651 -1) (0.989036 -0.0616428 -1) (1.00458 -0.0500362 -1) (1.01929 -0.0338398 -1) (1.02657 -0.0115822 -1) (1.02038 0.0343348 -1) (1.0057 0.0510039 -1) (0.99009 0.0630199 -1) (0.973864 0.0718859 -1) (0.957357 0.0785717 -1) (0.940589 0.0837051 -1) (0.923487 0.087732 -1) (0.905928 0.090985 -1) (0.887774 0.0937214 -1) (0.868884 0.0961409 -1) (0.849142 0.0983939 -1) (0.828459 0.100585 -1) (0.806784 0.102779 -1) (0.784099 0.105009 -1) (0.760412 0.107286 -1) (0.735758 0.109604 -1) (0.710184 0.11195 -1) (0.683756 0.114307 -1) (0.656552 0.116654 -1) (0.628659 0.118965 -1) (0.600178 0.121218 -1) (0.571216 0.123385 -1) (0.541888 0.12544 -1) (0.512317 0.127354 -1) (0.482625 0.129101 -1) (0.452939 0.130653 -1) (0.423384 0.131984 -1) (0.394082 0.133069 -1) (0.365148 0.133885 -1) (0.336694 0.13441 -1) (0.308817 0.134626 -1) (0.281607 0.134514 -1) (0.255139 0.134057 -1) (0.229473 0.133236 -1) (0.204653 0.132028 -1) (0.180701 0.130402 -1) (0.157621 0.128311 -1) (0.135392 0.125688 -1) (0.113975 0.122437 -1) (0.0933165 0.118423 -1) (0.073358 0.113467 -1) (0.0540577 0.107334 -1) (0.0354154 0.09972 -1) (0.0175141 0.0902453 -1) (0.000585749 0.0784373 -1) (-0.0148777 0.0637456 -1) (-0.0279485 0.0456429 -1) (-0.0370153 0.0240249 -1) (-0.0403229 1.0842e-19 -1) (-0.0370153 -0.0240249 -1) (-0.0279485 -0.0456429 -1) (-0.0148777 -0.0637456 -1) (0.000585749 -0.0784373 -1) (0.0175141 -0.0902453 -1) (0.0354154 -0.09972 -1) (0.0540577 -0.107334 -1) (0.073358 -0.113467 -1) (0.0933165 -0.118423 -1) (0.113975 -0.122437 -1) (0.135392 -0.125688 -1) (0.157621 -0.128311 -1) (0.180701 -0.130402 -1) (0.204653 -0.132028 -1) (0.229473 -0.133236 -1) (0.255139 -0.134057 -1) (0.281607 -0.134514 -1) (0.308817 -0.134626 -1) (0.336694 -0.13441 -1) (0.365148 -0.133885 -1) (0.394082 -0.133069 -1) (0.423384 -0.131984 -1) (0.452939 -0.130653 -1) (0.482625 -0.129101 -1) (0.512317 -0.127354 -1) (0.541888 -0.12544 -1) (0.571216 -0.123385 -1) (0.600178 -0.121218 -1) (0.628659 -0.118965 -1) (0.656552 -0.116654 -1) (0.683756 -0.114307 -1) (0.710184 -0.11195 -1) (0.735758 -0.109604 -1) (0.760412 -0.107286 -1) (0.784099 -0.105009 -1) (0.806784 -0.102779 -1) (0.828459 -0.100585 -1) (0.849142 -0.0983939 -1) (0.868884 -0.0961409 -1) (0.887774 -0.0937214 -1) (0.905928 -0.090985 -1) (0.923487 -0.087732 -1) (0.940589 -0.0837051 -1) (0.957357 -0.0785717 -1) (0.973864 -0.0718859 -1) (0.99009 -0.0630199 -1) (1.0057 -0.0510039 -1) (1.02038 -0.0343348 -1) (1.02741 -0.0116941 -1) (1.02148 0.0348219 -1) (1.00684 0.0519654 -1) (0.991175 0.0643957 -1) (0.974841 0.0736125 -1) (0.958202 0.0805876 -1) (0.941296 0.0859542 -1) (0.924065 0.0901633 -1) (0.906395 0.0935523 -1) (0.888152 0.0963835 -1) (0.869198 0.0988627 -1) (0.849412 0.101147 -1) (0.828704 0.10335 -1) (0.807014 0.105542 -1) (0.78432 0.107763 -1) (0.76063 0.110027 -1) (0.735971 0.112332 -1) (0.710394 0.114667 -1) (0.683962 0.117013 -1) (0.656753 0.119349 -1) (0.628854 0.121652 -1) (0.600366 0.123897 -1) (0.571395 0.126057 -1) (0.542058 0.128105 -1) (0.512476 0.130015 -1) (0.482771 0.131757 -1) (0.453071 0.133305 -1) (0.423499 0.134632 -1) (0.394178 0.135713 -1) (0.365224 0.136526 -1) (0.336745 0.137048 -1) (0.308842 0.137259 -1) (0.281601 0.137142 -1) (0.255098 0.136678 -1) (0.229392 0.135847 -1) (0.204525 0.134624 -1) (0.180517 0.132974 -1) (0.15737 0.130848 -1) (0.135061 0.128173 -1) (0.11355 0.124849 -1) (0.0927808 0.120736 -1) (0.0726994 0.115648 -1) (0.0532676 0.109346 -1) (0.034493 0.101524 -1) (0.0164688 0.0917985 -1) (-0.000559541 0.0796998 -1) (-0.0160852 0.0646846 -1) (-0.0291682 0.0462438 -1) (-0.0382019 0.0243056 -1) (-0.041482 6.77626e-20 -1) (-0.0382019 -0.0243056 -1) (-0.0291682 -0.0462438 -1) (-0.0160852 -0.0646846 -1) (-0.000559541 -0.0796998 -1) (0.0164688 -0.0917985 -1) (0.034493 -0.101524 -1) (0.0532676 -0.109346 -1) (0.0726994 -0.115648 -1) (0.0927808 -0.120736 -1) (0.11355 -0.124849 -1) (0.135061 -0.128173 -1) (0.15737 -0.130848 -1) (0.180517 -0.132974 -1) (0.204525 -0.134624 -1) (0.229392 -0.135847 -1) (0.255098 -0.136678 -1) (0.281601 -0.137142 -1) (0.308842 -0.137259 -1) (0.336745 -0.137048 -1) (0.365224 -0.136526 -1) (0.394178 -0.135713 -1) (0.423499 -0.134632 -1) (0.453071 -0.133305 -1) (0.482771 -0.131757 -1) (0.512476 -0.130015 -1) (0.542058 -0.128105 -1) (0.571395 -0.126057 -1) (0.600366 -0.123897 -1) (0.628854 -0.121652 -1) (0.656753 -0.119349 -1) (0.683962 -0.117013 -1) (0.710394 -0.114667 -1) (0.735971 -0.112332 -1) (0.76063 -0.110027 -1) (0.78432 -0.107763 -1) (0.807014 -0.105542 -1) (0.828704 -0.10335 -1) (0.849412 -0.101147 -1) (0.869198 -0.0988627 -1) (0.888152 -0.0963835 -1) (0.906395 -0.0935523 -1) (0.924065 -0.0901633 -1) (0.941296 -0.0859542 -1) (0.958202 -0.0805876 -1) (0.974841 -0.0736125 -1) (0.991175 -0.0643957 -1) (1.00684 -0.0519654 -1) (1.02148 -0.0348219 -1) (1.02826 -0.0118041 -1) (1.02261 0.0353013 -1) (1.008 0.0529205 -1) (0.992292 0.0657702 -1) (0.975853 0.0753447 -1) (0.959082 0.0826168 -1) (0.942038 0.088225 -1) (0.924675 0.0926248 -1) (0.906889 0.0961582 -1) (0.888552 0.099092 -1) (0.869528 0.101638 -1) (0.849694 0.103959 -1) (0.828956 0.106176 -1) (0.807249 0.108369 -1) (0.784546 0.110582 -1) (0.76085 0.112834 -1) (0.736188 0.115127 -1) (0.710608 0.117448 -1) (0.684172 0.119782 -1) (0.656957 0.122108 -1) (0.629052 0.124402 -1) (0.600557 0.126638 -1) (0.571578 0.128791 -1) (0.542231 0.130833 -1) (0.512637 0.132737 -1) (0.48292 0.134474 -1) (0.453205 0.136018 -1) (0.423617 0.137341 -1) (0.394276 0.138419 -1) (0.365301 0.139227 -1) (0.336797 0.139745 -1) (0.308866 0.139952 -1) (0.281595 0.13983 -1) (0.255056 0.139358 -1) (0.229308 0.138515 -1) (0.204392 0.137275 -1) (0.180326 0.135599 -1) (0.157109 0.133434 -1) (0.134716 0.130705 -1) (0.113106 0.127303 -1) (0.0922235 0.123084 -1) (0.072016 0.117859 -1) (0.0524506 0.111381 -1) (0.0335424 0.103344 -1) (0.0153955 0.0933627 -1) (-0.00173149 0.0809682 -1) (-0.017317 0.0656257 -1) (-0.0304097 0.0468447 -1) (-0.0394087 0.024586 -1) (-0.042661 1.49078e-19 -1) (-0.0394087 -0.024586 -1) (-0.0304097 -0.0468447 -1) (-0.017317 -0.0656257 -1) (-0.00173149 -0.0809682 -1) (0.0153955 -0.0933627 -1) (0.0335424 -0.103344 -1) (0.0524506 -0.111381 -1) (0.072016 -0.117859 -1) (0.0922235 -0.123084 -1) (0.113106 -0.127303 -1) (0.134716 -0.130705 -1) (0.157109 -0.133434 -1) (0.180326 -0.135599 -1) (0.204392 -0.137275 -1) (0.229308 -0.138515 -1) (0.255056 -0.139358 -1) (0.281595 -0.13983 -1) (0.308866 -0.139952 -1) (0.336797 -0.139745 -1) (0.365301 -0.139227 -1) (0.394276 -0.138419 -1) (0.423617 -0.137341 -1) (0.453205 -0.136018 -1) (0.48292 -0.134474 -1) (0.512637 -0.132737 -1) (0.542231 -0.130833 -1) (0.571578 -0.128791 -1) (0.600557 -0.126638 -1) (0.629052 -0.124402 -1) (0.656957 -0.122108 -1) (0.684172 -0.119782 -1) (0.710608 -0.117448 -1) (0.736188 -0.115127 -1) (0.76085 -0.112834 -1) (0.784546 -0.110582 -1) (0.807249 -0.108369 -1) (0.828956 -0.106176 -1) (0.849694 -0.103959 -1) (0.869528 -0.101638 -1) (0.888552 -0.099092 -1) (0.906889 -0.0961582 -1) (0.924675 -0.0926248 -1) (0.942038 -0.088225 -1) (0.959082 -0.0826168 -1) (0.975853 -0.0753447 -1) (0.992292 -0.0657702 -1) (1.008 -0.0529205 -1) (1.02261 -0.0353013 -1) (1.02914 -0.0119122 -1) (1.02375 0.0357731 -1) (1.0092 0.0538692 -1) (0.993442 0.0671431 -1) (0.9769 0.077082 -1) (0.959999 0.0846591 -1) (0.942815 0.0905171 -1) (0.925317 0.0951161 -1) (0.907411 0.0988022 -1) (0.888974 0.101847 -1) (0.869874 0.104466 -1) (0.849988 0.10683 -1) (0.829216 0.109067 -1) (0.80749 0.111262 -1) (0.784776 0.113468 -1) (0.761074 0.115709 -1) (0.736408 0.117988 -1) (0.710824 0.120296 -1) (0.684384 0.122618 -1) (0.657165 0.124933 -1) (0.629254 0.127216 -1) (0.600751 0.129444 -1) (0.571764 0.131589 -1) (0.542408 0.133625 -1) (0.512802 0.135522 -1) (0.483072 0.137254 -1) (0.453341 0.138793 -1) (0.423736 0.140112 -1) (0.394376 0.141186 -1) (0.365378 0.141991 -1) (0.33685 0.142504 -1) (0.308891 0.142707 -1) (0.281587 0.142577 -1) (0.255011 0.142097 -1) (0.22922 0.141242 -1) (0.204253 0.139982 -1) (0.180126 0.138278 -1) (0.156836 0.136072 -1) (0.134356 0.133283 -1) (0.112643 0.129799 -1) (0.0916438 0.125469 -1) (0.071307 0.120099 -1) (0.0516057 0.11344 -1) (0.032563 0.105182 -1) (0.0142936 0.094938 -1) (-0.0029306 0.0822426 -1) (-0.0185736 0.066569 -1) (-0.0316735 0.0474458 -1) (-0.0406363 0.0248661 -1) (-0.0438604 1.89735e-19 -1) (-0.0406363 -0.0248661 -1) (-0.0316735 -0.0474458 -1) (-0.0185736 -0.066569 -1) (-0.0029306 -0.0822426 -1) (0.0142936 -0.094938 -1) (0.032563 -0.105182 -1) (0.0516057 -0.11344 -1) (0.071307 -0.120099 -1) (0.0916438 -0.125469 -1) (0.112643 -0.129799 -1) (0.134356 -0.133283 -1) (0.156836 -0.136072 -1) (0.180126 -0.138278 -1) (0.204253 -0.139982 -1) (0.22922 -0.141242 -1) (0.255011 -0.142097 -1) (0.281587 -0.142577 -1) (0.308891 -0.142707 -1) (0.33685 -0.142504 -1) (0.365378 -0.141991 -1) (0.394376 -0.141186 -1) (0.423736 -0.140112 -1) (0.453341 -0.138793 -1) (0.483072 -0.137254 -1) (0.512802 -0.135522 -1) (0.542408 -0.133625 -1) (0.571764 -0.131589 -1) (0.600751 -0.129444 -1) (0.629254 -0.127216 -1) (0.657165 -0.124933 -1) (0.684384 -0.122618 -1) (0.710824 -0.120296 -1) (0.736408 -0.117988 -1) (0.761074 -0.115709 -1) (0.784776 -0.113468 -1) (0.80749 -0.111262 -1) (0.829216 -0.109067 -1) (0.849988 -0.10683 -1) (0.869874 -0.104466 -1) (0.888974 -0.101847 -1) (0.907411 -0.0988022 -1) (0.925317 -0.0951161 -1) (0.942815 -0.0905171 -1) (0.959999 -0.0846591 -1) (0.9769 -0.077082 -1) (0.993442 -0.0671431 -1) (1.0092 -0.0538692 -1) (1.02375 -0.0357731 -1) (1.03004 -0.0120187 -1) (1.02492 0.0362377 -1) (1.01042 0.0548115 -1) (0.994624 0.0685141 -1) (0.977983 0.0788243 -1) (0.960953 0.086714 -1) (0.943628 0.09283 -1) (0.925993 0.0976368 -1) (0.907962 0.101484 -1) (0.889421 0.104647 -1) (0.87024 0.107347 -1) (0.850296 0.10976 -1) (0.829486 0.112021 -1) (0.807737 0.114222 -1) (0.785011 0.116423 -1) (0.761302 0.118653 -1) (0.736632 0.120918 -1) (0.711044 0.123213 -1) (0.6846 0.125522 -1) (0.657375 0.127825 -1) (0.629459 0.130098 -1) (0.600949 0.132316 -1) (0.571954 0.134453 -1) (0.542587 0.136482 -1) (0.51297 0.138373 -1) (0.483226 0.140099 -1) (0.45348 0.141633 -1) (0.423858 0.142947 -1) (0.394478 0.144017 -1) (0.365458 0.144817 -1) (0.336904 0.145326 -1) (0.308916 0.145523 -1) (0.281578 0.145387 -1) (0.254964 0.144897 -1) (0.229128 0.144027 -1) (0.204107 0.142747 -1) (0.179917 0.141012 -1) (0.15655 0.138762 -1) (0.13398 0.135909 -1) (0.112161 0.132336 -1) (0.0910405 0.12789 -1) (0.0705716 0.122369 -1) (0.0507323 0.115523 -1) (0.0315541 0.107036 -1) (0.0131626 0.0965243 -1) (-0.00415736 0.0835229 -1) (-0.0198555 0.0675144 -1) (-0.0329601 0.048047 -1) (-0.0418853 0.025146 -1) (-0.0450808 1.76183e-19 -1) (-0.0418853 -0.025146 -1) (-0.0329601 -0.048047 -1) (-0.0198555 -0.0675144 -1) (-0.00415736 -0.0835229 -1) (0.0131626 -0.0965243 -1) (0.0315541 -0.107036 -1) (0.0507323 -0.115523 -1) (0.0705716 -0.122369 -1) (0.0910405 -0.12789 -1) (0.112161 -0.132336 -1) (0.13398 -0.135909 -1) (0.15655 -0.138762 -1) (0.179917 -0.141012 -1) (0.204107 -0.142747 -1) (0.229128 -0.144027 -1) (0.254964 -0.144897 -1) (0.281578 -0.145387 -1) (0.308916 -0.145523 -1) (0.336904 -0.145326 -1) (0.365458 -0.144817 -1) (0.394478 -0.144017 -1) (0.423858 -0.142947 -1) (0.45348 -0.141633 -1) (0.483226 -0.140099 -1) (0.51297 -0.138373 -1) (0.542587 -0.136482 -1) (0.571954 -0.134453 -1) (0.600949 -0.132316 -1) (0.629459 -0.130098 -1) (0.657375 -0.127825 -1) (0.6846 -0.125522 -1) (0.711044 -0.123213 -1) (0.736632 -0.120918 -1) (0.761302 -0.118653 -1) (0.785011 -0.116423 -1) (0.807737 -0.114222 -1) (0.829486 -0.112021 -1) (0.850296 -0.10976 -1) (0.87024 -0.107347 -1) (0.889421 -0.104647 -1) (0.907962 -0.101484 -1) (0.925993 -0.0976368 -1) (0.943628 -0.09283 -1) (0.960953 -0.086714 -1) (0.977983 -0.0788243 -1) (0.994624 -0.0685141 -1) (1.01042 -0.0548115 -1) (1.02492 -0.0362377 -1) (1.03096 -0.0121234 -1) (1.02611 0.0366951 -1) (1.01167 0.0557473 -1) (0.995839 0.0698832 -1) (0.979103 0.0805711 -1) (0.961944 0.0887811 -1) (0.944479 0.0951634 -1) (0.926703 0.100186 -1) (0.908544 0.104204 -1) (0.889893 0.107494 -1) (0.870625 0.110282 -1) (0.850618 0.112751 -1) (0.829765 0.115039 -1) (0.807991 0.11725 -1) (0.78525 0.119448 -1) (0.761533 0.121667 -1) (0.736858 0.123919 -1) (0.711267 0.1262 -1) (0.684819 0.128495 -1) (0.65759 0.130786 -1) (0.629667 0.133048 -1) (0.60115 0.135257 -1) (0.572146 0.137385 -1) (0.542769 0.139406 -1) (0.513141 0.14129 -1) (0.483383 0.143011 -1) (0.453622 0.144539 -1) (0.423981 0.145849 -1) (0.394581 0.146913 -1) (0.365538 0.147709 -1) (0.336958 0.148213 -1) (0.30894 0.148404 -1) (0.281568 0.14826 -1) (0.254914 0.147759 -1) (0.229031 0.146874 -1) (0.203955 0.145571 -1) (0.179698 0.143803 -1) (0.156252 0.141503 -1) (0.133587 0.138582 -1) (0.111658 0.134916 -1) (0.0904128 0.130347 -1) (0.0698087 0.124669 -1) (0.0498295 0.117628 -1) (0.030515 0.108908 -1) (0.0120018 0.0981215 -1) (-0.00541229 0.0848091 -1) (-0.0211633 0.0684621 -1) (-0.0342701 0.0486484 -1) (-0.0431561 0.0254257 -1) (-0.0463229 1.76183e-19 -1) (-0.0431561 -0.0254257 -1) (-0.0342701 -0.0486484 -1) (-0.0211633 -0.0684621 -1) (-0.00541229 -0.0848091 -1) (0.0120018 -0.0981215 -1) (0.030515 -0.108908 -1) (0.0498295 -0.117628 -1) (0.0698087 -0.124669 -1) (0.0904128 -0.130347 -1) (0.111658 -0.134916 -1) (0.133587 -0.138582 -1) (0.156252 -0.141503 -1) (0.179698 -0.143803 -1) (0.203955 -0.145571 -1) (0.229031 -0.146874 -1) (0.254914 -0.147759 -1) (0.281568 -0.14826 -1) (0.30894 -0.148404 -1) (0.336958 -0.148213 -1) (0.365538 -0.147709 -1) (0.394581 -0.146913 -1) (0.423981 -0.145849 -1) (0.453622 -0.144539 -1) (0.483383 -0.143011 -1) (0.513141 -0.14129 -1) (0.542769 -0.139406 -1) (0.572146 -0.137385 -1) (0.60115 -0.135257 -1) (0.629667 -0.133048 -1) (0.65759 -0.130786 -1) (0.684819 -0.128495 -1) (0.711267 -0.1262 -1) (0.736858 -0.123919 -1) (0.761533 -0.121667 -1) (0.78525 -0.119448 -1) (0.807991 -0.11725 -1) (0.829765 -0.115039 -1) (0.850618 -0.112751 -1) (0.870625 -0.110282 -1) (0.889893 -0.107494 -1) (0.908544 -0.104204 -1) (0.926703 -0.100186 -1) (0.944479 -0.0951634 -1) (0.961944 -0.0887811 -1) (0.979103 -0.0805711 -1) (0.995839 -0.0698832 -1) (1.01167 -0.0557473 -1) (1.02611 -0.0366951 -1) (1.0319 -0.0122266 -1) (1.02731 0.0371456 -1) (1.01295 0.0566766 -1) (0.997088 0.0712502 -1) (0.98026 0.0823223 -1) (0.962975 0.09086 -1) (0.945368 0.0975169 -1) (0.92745 0.102765 -1) (0.909159 0.10696 -1) (0.890393 0.110386 -1) (0.871032 0.11327 -1) (0.850956 0.115801 -1) (0.830057 0.118124 -1) (0.808253 0.120347 -1) (0.785495 0.122544 -1) (0.761769 0.124753 -1) (0.737088 0.126992 -1) (0.711493 0.129259 -1) (0.685041 0.13154 -1) (0.657807 0.133818 -1) (0.629879 0.136069 -1) (0.601355 0.138267 -1) (0.572342 0.140386 -1) (0.542955 0.142399 -1) (0.513314 0.144276 -1) (0.483543 0.14599 -1) (0.453766 0.147513 -1) (0.424107 0.148817 -1) (0.394687 0.149877 -1) (0.365619 0.150667 -1) (0.337013 0.151166 -1) (0.308963 0.15135 -1) (0.281556 0.151198 -1) (0.254861 0.150685 -1) (0.228929 0.149783 -1) (0.203795 0.148455 -1) (0.179468 0.14665 -1) (0.155939 0.144298 -1) (0.133175 0.141303 -1) (0.111132 0.137539 -1) (0.0897596 0.13284 -1) (0.0690176 0.126999 -1) (0.0488965 0.119757 -1) (0.029445 0.110796 -1) (0.0108106 0.0997296 -1) (-0.00669592 0.0861012 -1) (-0.0224973 0.0694121 -1) (-0.035604 0.0492502 -1) (-0.0444494 0.0257053 -1) (-0.0475873 1.76183e-19 -1) (-0.0444494 -0.0257053 -1) (-0.035604 -0.0492502 -1) (-0.0224973 -0.0694121 -1) (-0.00669592 -0.0861012 -1) (0.0108106 -0.0997296 -1) (0.029445 -0.110796 -1) (0.0488965 -0.119757 -1) (0.0690176 -0.126999 -1) (0.0897596 -0.13284 -1) (0.111132 -0.137539 -1) (0.133175 -0.141303 -1) (0.155939 -0.144298 -1) (0.179468 -0.14665 -1) (0.203795 -0.148455 -1) (0.228929 -0.149783 -1) (0.254861 -0.150685 -1) (0.281556 -0.151198 -1) (0.308963 -0.15135 -1) (0.337013 -0.151166 -1) (0.365619 -0.150667 -1) (0.394687 -0.149877 -1) (0.424107 -0.148817 -1) (0.453766 -0.147513 -1) (0.483543 -0.14599 -1) (0.513314 -0.144276 -1) (0.542955 -0.142399 -1) (0.572342 -0.140386 -1) (0.601355 -0.138267 -1) (0.629879 -0.136069 -1) (0.657807 -0.133818 -1) (0.685041 -0.13154 -1) (0.711493 -0.129259 -1) (0.737088 -0.126992 -1) (0.761769 -0.124753 -1) (0.785495 -0.122544 -1) (0.808253 -0.120347 -1) (0.830057 -0.118124 -1) (0.850956 -0.115801 -1) (0.871032 -0.11327 -1) (0.890393 -0.110386 -1) (0.909159 -0.10696 -1) (0.92745 -0.102765 -1) (0.945368 -0.0975169 -1) (0.962975 -0.09086 -1) (0.98026 -0.0823223 -1) (0.997088 -0.0712502 -1) (1.01295 -0.0566766 -1) (1.02731 -0.0371456 -1) (1.03287 -0.0123282 -1) (1.02854 0.0375893 -1) (1.01425 0.0575993 -1) (0.99837 0.0726148 -1) (0.981454 0.0840775 -1) (0.964044 0.0929505 -1) (0.946296 0.09989 -1) (0.928234 0.105371 -1) (0.909807 0.109753 -1) (0.890921 0.113323 -1) (0.871463 0.116312 -1) (0.851312 0.118911 -1) (0.830361 0.121274 -1) (0.808523 0.123514 -1) (0.785746 0.125712 -1) (0.762009 0.127914 -1) (0.737322 0.13014 -1) (0.711722 0.132392 -1) (0.685266 0.134659 -1) (0.658028 0.136923 -1) (0.630094 0.139162 -1) (0.601563 0.141349 -1) (0.572541 0.143459 -1) (0.543144 0.145463 -1) (0.513491 0.147333 -1) (0.483706 0.14904 -1) (0.453913 0.150556 -1) (0.424235 0.151855 -1) (0.394793 0.152909 -1) (0.365702 0.153694 -1) (0.337068 0.154186 -1) (0.308987 0.154363 -1) (0.281543 0.154202 -1) (0.254804 0.153676 -1) (0.228822 0.152755 -1) (0.203627 0.151399 -1) (0.179228 0.149554 -1) (0.155611 0.147145 -1) (0.132745 0.144073 -1) (0.110584 0.140204 -1) (0.08908 0.13537 -1) (0.0681972 0.129359 -1) (0.0479326 0.121909 -1) (0.0283435 0.112701 -1) (0.00958854 0.101349 -1) (-0.00800879 0.0873994 -1) (-0.0238582 0.0703644 -1) (-0.0369623 0.0498524 -1) (-0.0457659 0.0259849 -1) (-0.0488745 1.76183e-19 -1) (-0.0457659 -0.0259849 -1) (-0.0369623 -0.0498524 -1) (-0.0238582 -0.0703644 -1) (-0.00800879 -0.0873994 -1) (0.00958854 -0.101349 -1) (0.0283435 -0.112701 -1) (0.0479326 -0.121909 -1) (0.0681972 -0.129359 -1) (0.08908 -0.13537 -1) (0.110584 -0.140204 -1) (0.132745 -0.144073 -1) (0.155611 -0.147145 -1) (0.179228 -0.149554 -1) (0.203627 -0.151399 -1) (0.228822 -0.152755 -1) (0.254804 -0.153676 -1) (0.281543 -0.154202 -1) (0.308987 -0.154363 -1) (0.337068 -0.154186 -1) (0.365702 -0.153694 -1) (0.394793 -0.152909 -1) (0.424235 -0.151855 -1) (0.453913 -0.150556 -1) (0.483706 -0.14904 -1) (0.513491 -0.147333 -1) (0.543144 -0.145463 -1) (0.572541 -0.143459 -1) (0.601563 -0.141349 -1) (0.630094 -0.139162 -1) (0.658028 -0.136923 -1) (0.685266 -0.134659 -1) (0.711722 -0.132392 -1) (0.737322 -0.13014 -1) (0.762009 -0.127914 -1) (0.785746 -0.125712 -1) (0.808523 -0.123514 -1) (0.830361 -0.121274 -1) (0.851312 -0.118911 -1) (0.871463 -0.116312 -1) (0.890921 -0.113323 -1) (0.909807 -0.109753 -1) (0.928234 -0.105371 -1) (0.946296 -0.09989 -1) (0.964044 -0.0929505 -1) (0.981454 -0.0840775 -1) (0.99837 -0.0726148 -1) (1.01425 -0.0575993 -1) (1.02854 -0.0375893 -1) (1.03386 -0.0124284 -1) (1.02979 0.0380265 -1) (1.01559 0.0585156 -1) (0.999686 0.073977 -1) (0.982686 0.0858365 -1) (0.965154 0.0950522 -1) (0.947265 0.102282 -1) (0.929057 0.108005 -1) (0.91049 0.112583 -1) (0.89148 0.116305 -1) (0.871918 0.119406 -1) (0.851687 0.122082 -1) (0.830678 0.12449 -1) (0.808803 0.126753 -1) (0.786003 0.128955 -1) (0.762253 0.13115 -1) (0.737559 0.133364 -1) (0.711954 0.135601 -1) (0.685494 0.137853 -1) (0.658251 0.140103 -1) (0.630312 0.142329 -1) (0.601774 0.144505 -1) (0.572743 0.146605 -1) (0.543336 0.148599 -1) (0.513671 0.150461 -1) (0.483871 0.152161 -1) (0.454062 0.153671 -1) (0.424365 0.154963 -1) (0.394902 0.156012 -1) (0.365785 0.156791 -1) (0.337123 0.157277 -1) (0.309009 0.157445 -1) (0.281527 0.157273 -1) (0.254744 0.156733 -1) (0.228709 0.155791 -1) (0.20345 0.154405 -1) (0.178975 0.152517 -1) (0.155267 0.150047 -1) (0.132295 0.146891 -1) (0.110012 0.142912 -1) (0.088373 0.137936 -1) (0.0673467 0.131748 -1) (0.0469369 0.124084 -1) (0.0272098 0.114622 -1) (0.0083349 0.102978 -1) (-0.00935144 0.0887034 -1) (-0.0252464 0.0713192 -1) (-0.0383457 0.0504551 -1) (-0.0471061 0.0262645 -1) (-0.0501853 2.03288e-19 -1) (-0.0471061 -0.0262645 -1) (-0.0383457 -0.0504551 -1) (-0.0252464 -0.0713192 -1) (-0.00935144 -0.0887034 -1) (0.0083349 -0.102978 -1) (0.0272098 -0.114622 -1) (0.0469369 -0.124084 -1) (0.0673467 -0.131748 -1) (0.088373 -0.137936 -1) (0.110012 -0.142912 -1) (0.132295 -0.146891 -1) (0.155267 -0.150047 -1) (0.178975 -0.152517 -1) (0.20345 -0.154405 -1) (0.228709 -0.155791 -1) (0.254744 -0.156733 -1) (0.281527 -0.157273 -1) (0.309009 -0.157445 -1) (0.337123 -0.157277 -1) (0.365785 -0.156791 -1) (0.394902 -0.156012 -1) (0.424365 -0.154963 -1) (0.454062 -0.153671 -1) (0.483871 -0.152161 -1) (0.513671 -0.150461 -1) (0.543336 -0.148599 -1) (0.572743 -0.146605 -1) (0.601774 -0.144505 -1) (0.630312 -0.142329 -1) (0.658251 -0.140103 -1) (0.685494 -0.137853 -1) (0.711954 -0.135601 -1) (0.737559 -0.133364 -1) (0.762253 -0.13115 -1) (0.786003 -0.128955 -1) (0.808803 -0.126753 -1) (0.830678 -0.12449 -1) (0.851687 -0.122082 -1) (0.871918 -0.119406 -1) (0.89148 -0.116305 -1) (0.91049 -0.112583 -1) (0.929057 -0.108005 -1) (0.947265 -0.102282 -1) (0.965154 -0.0950522 -1) (0.982686 -0.0858365 -1) (0.999686 -0.073977 -1) (1.01559 -0.0585156 -1) (1.02979 -0.0380265 -1) (1.03487 -0.0125272 -1) (1.03107 0.0384574 -1) (1.01695 0.0594253 -1) (1.00104 0.0753366 -1) (0.983957 0.087599 -1) (0.966305 0.0971648 -1) (0.948274 0.104694 -1) (0.929919 0.110666 -1) (0.91121 0.115449 -1) (0.892071 0.119331 -1) (0.8724 0.122553 -1) (0.852083 0.125313 -1) (0.831011 0.127774 -1) (0.809094 0.130063 -1) (0.786268 0.132273 -1) (0.762503 0.134464 -1) (0.7378 0.136666 -1) (0.71219 0.138889 -1) (0.685726 0.141125 -1) (0.658478 0.143361 -1) (0.630533 0.145573 -1) (0.601988 0.147737 -1) (0.572949 0.149826 -1) (0.543531 0.151811 -1) (0.513854 0.153664 -1) (0.48404 0.155356 -1) (0.454213 0.156859 -1) (0.424497 0.158145 -1) (0.395012 0.159187 -1) (0.36587 0.159959 -1) (0.337178 0.160438 -1) (0.30903 0.160598 -1) (0.281509 0.160414 -1) (0.254679 0.159858 -1) (0.228589 0.158893 -1) (0.203264 0.157474 -1) (0.178709 0.155539 -1) (0.154907 0.153003 -1) (0.131823 0.149759 -1) (0.109415 0.145663 -1) (0.0876374 0.140539 -1) (0.0664651 0.134167 -1) (0.0459085 0.126282 -1) (0.026043 0.116561 -1) (0.00704907 0.104619 -1) (-0.0107245 0.0900135 -1) (-0.0266626 0.0722764 -1) (-0.0397546 0.0510584 -1) (-0.0484706 0.0265442 -1) (-0.0515204 2.30393e-19 -1) (-0.0484706 -0.0265442 -1) (-0.0397546 -0.0510584 -1) (-0.0266626 -0.0722764 -1) (-0.0107245 -0.0900135 -1) (0.00704907 -0.104619 -1) (0.026043 -0.116561 -1) (0.0459085 -0.126282 -1) (0.0664651 -0.134167 -1) (0.0876374 -0.140539 -1) (0.109415 -0.145663 -1) (0.131823 -0.149759 -1) (0.154907 -0.153003 -1) (0.178709 -0.155539 -1) (0.203264 -0.157474 -1) (0.228589 -0.158893 -1) (0.254679 -0.159858 -1) (0.281509 -0.160414 -1) (0.30903 -0.160598 -1) (0.337178 -0.160438 -1) (0.36587 -0.159959 -1) (0.395012 -0.159187 -1) (0.424497 -0.158145 -1) (0.454213 -0.156859 -1) (0.48404 -0.155356 -1) (0.513854 -0.153664 -1) (0.543531 -0.151811 -1) (0.572949 -0.149826 -1) (0.601988 -0.147737 -1) (0.630533 -0.145573 -1) (0.658478 -0.143361 -1) (0.685726 -0.141125 -1) (0.71219 -0.138889 -1) (0.7378 -0.136666 -1) (0.762503 -0.134464 -1) (0.786268 -0.132273 -1) (0.809094 -0.130063 -1) (0.831011 -0.127774 -1) (0.852083 -0.125313 -1) (0.8724 -0.122553 -1) (0.892071 -0.119331 -1) (0.91121 -0.115449 -1) (0.929919 -0.110666 -1) (0.948274 -0.104694 -1) (0.966305 -0.0971648 -1) (0.983957 -0.087599 -1) (1.00104 -0.0753366 -1) (1.01695 -0.0594253 -1) (1.03107 -0.0384574 -1) (1.03591 -0.0126247 -1) (1.03237 0.0388821 -1) (1.01835 0.0603285 -1) (1.00242 0.0766935 -1) (0.985267 0.0893648 -1) (0.967497 0.0992878 -1) (0.949326 0.107123 -1) (0.930822 0.113355 -1) (0.911968 0.11835 -1) (0.892696 0.122402 -1) (0.87291 0.125753 -1) (0.852501 0.128605 -1) (0.83136 0.131125 -1) (0.809396 0.133446 -1) (0.78654 0.135668 -1) (0.762758 0.137856 -1) (0.738045 0.140048 -1) (0.71243 0.142256 -1) (0.685961 0.144477 -1) (0.658708 0.146698 -1) (0.630758 0.148896 -1) (0.602205 0.151047 -1) (0.573158 0.153124 -1) (0.54373 0.155099 -1) (0.51404 0.156943 -1) (0.484211 0.158627 -1) (0.454367 0.160122 -1) (0.424632 0.161401 -1) (0.395123 0.162436 -1) (0.365955 0.163201 -1) (0.337233 0.163672 -1) (0.30905 0.163822 -1) (0.281488 0.163626 -1) (0.25461 0.163051 -1) (0.228461 0.162062 -1) (0.203067 0.160606 -1) (0.178428 0.15862 -1) (0.154528 0.156015 -1) (0.13133 0.152676 -1) (0.108791 0.148457 -1) (0.0868723 0.143178 -1) (0.0655515 0.136616 -1) (0.0448467 0.128503 -1) (0.0248425 0.118516 -1) (0.00573042 0.106271 -1) (-0.0121284 0.0913296 -1) (-0.0281073 0.0732361 -1) (-0.0411897 0.0516623 -1) (-0.0498602 0.026824 -1) (-0.0528804 2.57498e-19 -1) (-0.0498602 -0.026824 -1) (-0.0411897 -0.0516623 -1) (-0.0281073 -0.0732361 -1) (-0.0121284 -0.0913296 -1) (0.00573042 -0.106271 -1) (0.0248425 -0.118516 -1) (0.0448467 -0.128503 -1) (0.0655515 -0.136616 -1) (0.0868723 -0.143178 -1) (0.108791 -0.148457 -1) (0.13133 -0.152676 -1) (0.154528 -0.156015 -1) (0.178428 -0.15862 -1) (0.203067 -0.160606 -1) (0.228461 -0.162062 -1) (0.25461 -0.163051 -1) (0.281488 -0.163626 -1) (0.30905 -0.163822 -1) (0.337233 -0.163672 -1) (0.365955 -0.163201 -1) (0.395123 -0.162436 -1) (0.424632 -0.161401 -1) (0.454367 -0.160122 -1) (0.484211 -0.158627 -1) (0.51404 -0.156943 -1) (0.54373 -0.155099 -1) (0.573158 -0.153124 -1) (0.602205 -0.151047 -1) (0.630758 -0.148896 -1) (0.658708 -0.146698 -1) (0.685961 -0.144477 -1) (0.71243 -0.142256 -1) (0.738045 -0.140048 -1) (0.762758 -0.137856 -1) (0.78654 -0.135668 -1) (0.809396 -0.133446 -1) (0.83136 -0.131125 -1) (0.852501 -0.128605 -1) (0.87291 -0.125753 -1) (0.892696 -0.122402 -1) (0.911968 -0.11835 -1) (0.930822 -0.113355 -1) (0.949326 -0.107123 -1) (0.967497 -0.0992878 -1) (0.985267 -0.0893648 -1) (1.00242 -0.0766935 -1) (1.01835 -0.0603285 -1) (1.03237 -0.0388821 -1) (1.03698 -0.012721 -1) (1.03369 0.0393009 -1) (1.01977 0.0612252 -1) (1.00384 0.0780475 -1) (0.986616 0.0911336 -1) (0.968731 0.101421 -1) (0.95042 0.109571 -1) (0.931767 0.11607 -1) (0.912765 0.121286 -1) (0.893356 0.125517 -1) (0.87345 0.129006 -1) (0.852943 0.131957 -1) (0.831728 0.134543 -1) (0.809711 0.136902 -1) (0.786822 0.13914 -1) (0.763019 0.141329 -1) (0.738295 0.143511 -1) (0.712672 0.145706 -1) (0.686199 0.147911 -1) (0.658942 0.150116 -1) (0.630985 0.152299 -1) (0.602426 0.154436 -1) (0.57337 0.156502 -1) (0.543931 0.158466 -1) (0.514228 0.1603 -1) (0.484385 0.161975 -1) (0.454524 0.163463 -1) (0.424768 0.164734 -1) (0.395236 0.165761 -1) (0.366041 0.166519 -1) (0.337288 0.166981 -1) (0.309069 0.16712 -1) (0.281464 0.16691 -1) (0.254535 0.166316 -1) (0.228326 0.165298 -1) (0.202859 0.163804 -1) (0.178133 0.161762 -1) (0.154129 0.159082 -1) (0.130813 0.155643 -1) (0.108141 0.151295 -1) (0.0860765 0.145854 -1) (0.0646048 0.139095 -1) (0.0437505 0.130747 -1) (0.0236075 0.120487 -1) (0.00437828 0.107933 -1) (-0.0135639 0.0926518 -1) (-0.029581 0.0741984 -1) (-0.0426516 0.052267 -1) (-0.0512755 0.027104 -1) (-0.054266 2.30393e-19 -1) (-0.0512755 -0.027104 -1) (-0.0426516 -0.052267 -1) (-0.029581 -0.0741984 -1) (-0.0135639 -0.0926518 -1) (0.00437828 -0.107933 -1) (0.0236075 -0.120487 -1) (0.0437505 -0.130747 -1) (0.0646048 -0.139095 -1) (0.0860765 -0.145854 -1) (0.108141 -0.151295 -1) (0.130813 -0.155643 -1) (0.154129 -0.159082 -1) (0.178133 -0.161762 -1) (0.202859 -0.163804 -1) (0.228326 -0.165298 -1) (0.254535 -0.166316 -1) (0.281464 -0.16691 -1) (0.309069 -0.16712 -1) (0.337288 -0.166981 -1) (0.366041 -0.166519 -1) (0.395236 -0.165761 -1) (0.424768 -0.164734 -1) (0.454524 -0.163463 -1) (0.484385 -0.161975 -1) (0.514228 -0.1603 -1) (0.543931 -0.158466 -1) (0.57337 -0.156502 -1) (0.602426 -0.154436 -1) (0.630985 -0.152299 -1) (0.658942 -0.150116 -1) (0.686199 -0.147911 -1) (0.712672 -0.145706 -1) (0.738295 -0.143511 -1) (0.763019 -0.141329 -1) (0.786822 -0.13914 -1) (0.809711 -0.136902 -1) (0.831728 -0.134543 -1) (0.852943 -0.131957 -1) (0.87345 -0.129006 -1) (0.893356 -0.125517 -1) (0.912765 -0.121286 -1) (0.931767 -0.11607 -1) (0.95042 -0.109571 -1) (0.968731 -0.101421 -1) (0.986616 -0.0911336 -1) (1.00384 -0.0780475 -1) (1.01977 -0.0612252 -1) (1.03369 -0.0393009 -1) (1.03807 -0.0128161 -1) (1.03504 0.0397139 -1) (1.02123 0.0621154 -1) (1.0053 0.0793985 -1) (0.988006 0.0929052 -1) (0.970008 0.103564 -1) (0.951559 0.112037 -1) (0.932755 0.118811 -1) (0.913603 0.124258 -1) (0.894052 0.128676 -1) (0.874022 0.132311 -1) (0.853411 0.13537 -1) (0.832116 0.13803 -1) (0.810041 0.140433 -1) (0.787113 0.142691 -1) (0.763287 0.144884 -1) (0.73855 0.147059 -1) (0.712919 0.14924 -1) (0.68644 0.151429 -1) (0.659178 0.153617 -1) (0.631216 0.155785 -1) (0.60265 0.157909 -1) (0.573585 0.159961 -1) (0.544135 0.161914 -1) (0.51442 0.163738 -1) (0.484561 0.165404 -1) (0.454682 0.166882 -1) (0.424906 0.168145 -1) (0.39535 0.169165 -1) (0.366128 0.169914 -1) (0.337342 0.170366 -1) (0.309085 0.170494 -1) (0.281436 0.170268 -1) (0.254454 0.169652 -1) (0.228182 0.168604 -1) (0.202638 0.167067 -1) (0.177822 0.164966 -1) (0.153711 0.162204 -1) (0.130271 0.158659 -1) (0.107461 0.154177 -1) (0.0852491 0.148567 -1) (0.0636241 0.141604 -1) (0.0426192 0.133015 -1) (0.0223374 0.122475 -1) (0.00299199 0.109607 -1) (-0.0150316 0.09398 -1) (-0.0310844 0.0751634 -1) (-0.0441409 0.0528725 -1) (-0.0527172 0.0273843 -1) (-0.0556779 2.03288e-19 -1) (-0.0527172 -0.0273843 -1) (-0.0441409 -0.0528725 -1) (-0.0310844 -0.0751634 -1) (-0.0150316 -0.09398 -1) (0.00299199 -0.109607 -1) (0.0223374 -0.122475 -1) (0.0426192 -0.133015 -1) (0.0636241 -0.141604 -1) (0.0852491 -0.148567 -1) (0.107461 -0.154177 -1) (0.130271 -0.158659 -1) (0.153711 -0.162204 -1) (0.177822 -0.164966 -1) (0.202638 -0.167067 -1) (0.228182 -0.168604 -1) (0.254454 -0.169652 -1) (0.281436 -0.170268 -1) (0.309085 -0.170494 -1) (0.337342 -0.170366 -1) (0.366128 -0.169914 -1) (0.39535 -0.169165 -1) (0.424906 -0.168145 -1) (0.454682 -0.166882 -1) (0.484561 -0.165404 -1) (0.51442 -0.163738 -1) (0.544135 -0.161914 -1) (0.573585 -0.159961 -1) (0.60265 -0.157909 -1) (0.631216 -0.155785 -1) (0.659178 -0.153617 -1) (0.68644 -0.151429 -1) (0.712919 -0.14924 -1) (0.73855 -0.147059 -1) (0.763287 -0.144884 -1) (0.787113 -0.142691 -1) (0.810041 -0.140433 -1) (0.832116 -0.13803 -1) (0.853411 -0.13537 -1) (0.874022 -0.132311 -1) (0.894052 -0.128676 -1) (0.913603 -0.124258 -1) (0.932755 -0.118811 -1) (0.951559 -0.112037 -1) (0.970008 -0.103564 -1) (0.988006 -0.0929052 -1) (1.0053 -0.0793985 -1) (1.02123 -0.0621154 -1) (1.03504 -0.0397139 -1) (1.03919 -0.0129101 -1) (1.03641 0.0401215 -1) (1.02271 0.0629991 -1) (1.00679 0.0807464 -1) (0.989437 0.0946794 -1) (0.971328 0.105717 -1) (0.952742 0.114521 -1) (0.933788 0.121578 -1) (0.914483 0.127264 -1) (0.894787 0.131878 -1) (0.874627 0.135668 -1) (0.853906 0.138844 -1) (0.832525 0.141585 -1) (0.810387 0.144038 -1) (0.787416 0.146322 -1) (0.763563 0.148522 -1) (0.738809 0.150691 -1) (0.71317 0.15286 -1) (0.686684 0.155034 -1) (0.659418 0.157205 -1) (0.63145 0.159357 -1) (0.602877 0.161466 -1) (0.573803 0.163504 -1) (0.544343 0.165445 -1) (0.514615 0.167258 -1) (0.48474 0.168914 -1) (0.454843 0.170384 -1) (0.425046 0.171638 -1) (0.395465 0.172649 -1) (0.366214 0.173389 -1) (0.337396 0.17383 -1) (0.3091 0.173945 -1) (0.281404 0.173701 -1) (0.254367 0.173062 -1) (0.228028 0.17198 -1) (0.202405 0.170396 -1) (0.177493 0.168231 -1) (0.153271 0.165384 -1) (0.129703 0.161727 -1) (0.106752 0.157102 -1) (0.0843888 0.151317 -1) (0.0626085 0.144143 -1) (0.0414518 0.135305 -1) (0.0210312 0.12448 -1) (0.00157085 0.111291 -1) (-0.0165321 0.0953143 -1) (-0.0326181 0.076131 -1) (-0.0456584 0.0534788 -1) (-0.0541859 0.0276649 -1) (-0.0571169 1.76183e-19 -1) (-0.0541859 -0.0276649 -1) (-0.0456584 -0.0534788 -1) (-0.0326181 -0.076131 -1) (-0.0165321 -0.0953143 -1) (0.00157085 -0.111291 -1) (0.0210312 -0.12448 -1) (0.0414518 -0.135305 -1) (0.0626085 -0.144143 -1) (0.0843888 -0.151317 -1) (0.106752 -0.157102 -1) (0.129703 -0.161727 -1) (0.153271 -0.165384 -1) (0.177493 -0.168231 -1) (0.202405 -0.170396 -1) (0.228028 -0.17198 -1) (0.254367 -0.173062 -1) (0.281404 -0.173701 -1) (0.3091 -0.173945 -1) (0.337396 -0.17383 -1) (0.366214 -0.173389 -1) (0.395465 -0.172649 -1) (0.425046 -0.171638 -1) (0.454843 -0.170384 -1) (0.48474 -0.168914 -1) (0.514615 -0.167258 -1) (0.544343 -0.165445 -1) (0.573803 -0.163504 -1) (0.602877 -0.161466 -1) (0.63145 -0.159357 -1) (0.659418 -0.157205 -1) (0.686684 -0.155034 -1) (0.71317 -0.15286 -1) (0.738809 -0.150691 -1) (0.763563 -0.148522 -1) (0.787416 -0.146322 -1) (0.810387 -0.144038 -1) (0.832525 -0.141585 -1) (0.853906 -0.138844 -1) (0.874627 -0.135668 -1) (0.894787 -0.131878 -1) (0.914483 -0.127264 -1) (0.933788 -0.121578 -1) (0.952742 -0.114521 -1) (0.971328 -0.105717 -1) (0.989437 -0.0946794 -1) (1.00679 -0.0807464 -1) (1.02271 -0.0629991 -1) (1.03641 -0.0401215 -1) (1.04034 -0.013003 -1) (1.0378 0.0405237 -1) (1.02423 0.0638764 -1) (1.00832 0.0820911 -1) (0.990908 0.0964559 -1) (0.972694 0.107879 -1) (0.953971 0.117021 -1) (0.934866 0.12437 -1) (0.915406 0.130304 -1) (0.895562 0.135123 -1) (0.875267 0.139077 -1) (0.854431 0.142378 -1) (0.832957 0.145208 -1) (0.81075 0.147719 -1) (0.787731 0.150034 -1) (0.763847 0.152244 -1) (0.739075 0.154411 -1) (0.713424 0.156568 -1) (0.686933 0.158727 -1) (0.65966 0.160881 -1) (0.631687 0.163016 -1) (0.603107 0.165109 -1) (0.574025 0.167134 -1) (0.544553 0.169062 -1) (0.514812 0.170863 -1) (0.484922 0.172509 -1) (0.455007 0.173968 -1) (0.425187 0.175213 -1) (0.395582 0.176215 -1) (0.366301 0.176945 -1) (0.337448 0.177374 -1) (0.309112 0.177475 -1) (0.281368 0.177212 -1) (0.254273 0.176546 -1) (0.227864 0.175428 -1) (0.202157 0.173793 -1) (0.177146 0.171559 -1) (0.152808 0.16862 -1) (0.129108 0.164845 -1) (0.106012 0.160071 -1) (0.0834945 0.154104 -1) (0.0615568 0.146711 -1) (0.0402474 0.137619 -1) (0.0196882 0.126502 -1) (0.000114166 0.112986 -1) (-0.0180661 0.0966548 -1) (-0.0341828 0.0771015 -1) (-0.0472046 0.0540861 -1) (-0.0556825 0.0279459 -1) (-0.0585837 1.49078e-19 -1) (-0.0556825 -0.0279459 -1) (-0.0472046 -0.0540861 -1) (-0.0341828 -0.0771015 -1) (-0.0180661 -0.0966548 -1) (0.000114166 -0.112986 -1) (0.0196882 -0.126502 -1) (0.0402474 -0.137619 -1) (0.0615568 -0.146711 -1) (0.0834945 -0.154104 -1) (0.106012 -0.160071 -1) (0.129108 -0.164845 -1) (0.152808 -0.16862 -1) (0.177146 -0.171559 -1) (0.202157 -0.173793 -1) (0.227864 -0.175428 -1) (0.254273 -0.176546 -1) (0.281368 -0.177212 -1) (0.309112 -0.177475 -1) (0.337448 -0.177374 -1) (0.366301 -0.176945 -1) (0.395582 -0.176215 -1) (0.425187 -0.175213 -1) (0.455007 -0.173968 -1) (0.484922 -0.172509 -1) (0.514812 -0.170863 -1) (0.544553 -0.169062 -1) (0.574025 -0.167134 -1) (0.603107 -0.165109 -1) (0.631687 -0.163016 -1) (0.65966 -0.160881 -1) (0.686933 -0.158727 -1) (0.713424 -0.156568 -1) (0.739075 -0.154411 -1) (0.763847 -0.152244 -1) (0.787731 -0.150034 -1) (0.81075 -0.147719 -1) (0.832957 -0.145208 -1) (0.854431 -0.142378 -1) (0.875267 -0.139077 -1) (0.895562 -0.135123 -1) (0.915406 -0.130304 -1) (0.934866 -0.12437 -1) (0.953971 -0.117021 -1) (0.972694 -0.107879 -1) (0.990908 -0.0964559 -1) (1.00832 -0.0820911 -1) (1.02423 -0.0638764 -1) (1.0378 -0.0405237 -1) (1.04152 -0.0130951 -1) (1.03923 0.0409207 -1) (1.02578 0.0647473 -1) (1.00989 0.0834324 -1) (0.992422 0.0982346 -1) (0.974104 0.110051 -1) (0.955247 0.119538 -1) (0.93599 0.127188 -1) (0.916375 0.133378 -1) (0.896379 0.138411 -1) (0.875944 0.142538 -1) (0.854987 0.145973 -1) (0.833415 0.1489 -1) (0.811132 0.151476 -1) (0.78806 0.153828 -1) (0.76414 0.156053 -1) (0.739347 0.15822 -1) (0.713684 0.160367 -1) (0.687184 0.16251 -1) (0.659906 0.164648 -1) (0.631927 0.166766 -1) (0.60334 0.168843 -1) (0.574249 0.170853 -1) (0.544767 0.172767 -1) (0.515012 0.174556 -1) (0.485106 0.17619 -1) (0.455172 0.177639 -1) (0.425331 0.178874 -1) (0.395699 0.179865 -1) (0.366388 0.180584 -1) (0.337499 0.181001 -1) (0.309121 0.181085 -1) (0.281326 0.180801 -1) (0.25417 0.180106 -1) (0.227688 0.178948 -1) (0.201894 0.177258 -1) (0.176779 0.17495 -1) (0.15232 0.171914 -1) (0.128485 0.168014 -1) (0.10524 0.163084 -1) (0.0825652 0.156928 -1) (0.0604681 0.14931 -1) (0.0390052 0.139955 -1) (0.0183076 0.12854 -1) (-0.00137879 0.114692 -1) (-0.0196341 0.0980014 -1) (-0.0357791 0.0780748 -1) (-0.0487803 0.0546945 -1) (-0.0572077 0.0282273 -1) (-0.0600792 1.76183e-19 -1) (-0.0572077 -0.0282273 -1) (-0.0487803 -0.0546945 -1) (-0.0357791 -0.0780748 -1) (-0.0196341 -0.0980014 -1) (-0.00137879 -0.114692 -1) (0.0183076 -0.12854 -1) (0.0390052 -0.139955 -1) (0.0604681 -0.14931 -1) (0.0825652 -0.156928 -1) (0.10524 -0.163084 -1) (0.128485 -0.168014 -1) (0.15232 -0.171914 -1) (0.176779 -0.17495 -1) (0.201894 -0.177258 -1) (0.227688 -0.178948 -1) (0.25417 -0.180106 -1) (0.281326 -0.180801 -1) (0.309121 -0.181085 -1) (0.337499 -0.181001 -1) (0.366388 -0.180584 -1) (0.395699 -0.179865 -1) (0.425331 -0.178874 -1) (0.455172 -0.177639 -1) (0.485106 -0.17619 -1) (0.515012 -0.174556 -1) (0.544767 -0.172767 -1) (0.574249 -0.170853 -1) (0.60334 -0.168843 -1) (0.631927 -0.166766 -1) (0.659906 -0.164648 -1) (0.687184 -0.16251 -1) (0.713684 -0.160367 -1) (0.739347 -0.15822 -1) (0.76414 -0.156053 -1) (0.78806 -0.153828 -1) (0.811132 -0.151476 -1) (0.833415 -0.1489 -1) (0.854987 -0.145973 -1) (0.875944 -0.142538 -1) (0.896379 -0.138411 -1) (0.916375 -0.133378 -1) (0.93599 -0.127188 -1) (0.955247 -0.119538 -1) (0.974104 -0.110051 -1) (0.992422 -0.0982346 -1) (1.00989 -0.0834324 -1) (1.02578 -0.0647473 -1) (1.03923 -0.0409207 -1) (1.04272 -0.0131862 -1) (1.04068 0.0413129 -1) (1.02736 0.0656118 -1) (1.01149 0.0847703 -1) (0.993979 0.100015 -1) (0.97556 0.112231 -1) (0.95657 0.122072 -1) (0.937163 0.130031 -1) (0.917389 0.136486 -1) (0.897239 0.141741 -1) (0.87666 0.14605 -1) (0.855577 0.149628 -1) (0.833899 0.152661 -1) (0.811535 0.155309 -1) (0.788404 0.157704 -1) (0.764445 0.15995 -1) (0.739627 0.16212 -1) (0.713948 0.164259 -1) (0.68744 0.166388 -1) (0.660155 0.168508 -1) (0.63217 0.170608 -1) (0.603576 0.172668 -1) (0.574476 0.174662 -1) (0.544983 0.176562 -1) (0.515215 0.178338 -1) (0.485293 0.17996 -1) (0.455339 0.181398 -1) (0.425475 0.182622 -1) (0.395817 0.183602 -1) (0.366475 0.184309 -1) (0.337549 0.184712 -1) (0.309126 0.184778 -1) (0.281279 0.184471 -1) (0.254059 0.183744 -1) (0.227501 0.182542 -1) (0.201614 0.180793 -1) (0.176391 0.178406 -1) (0.151808 0.175266 -1) (0.127832 0.171234 -1) (0.104435 0.166142 -1) (0.0815997 0.159789 -1) (0.0593414 0.151939 -1) (0.0377242 0.142315 -1) (0.0168887 0.130595 -1) (-0.00290874 0.116409 -1) (-0.021237 0.0993543 -1) (-0.0374077 0.079051 -1) (-0.0503863 0.0553041 -1) (-0.0587622 0.0285092 -1) (-0.061604 2.30393e-19 -1) (-0.0587622 -0.0285092 -1) (-0.0503863 -0.0553041 -1) (-0.0374077 -0.079051 -1) (-0.021237 -0.0993543 -1) (-0.00290874 -0.116409 -1) (0.0168887 -0.130595 -1) (0.0377242 -0.142315 -1) (0.0593414 -0.151939 -1) (0.0815997 -0.159789 -1) (0.104435 -0.166142 -1) (0.127832 -0.171234 -1) (0.151808 -0.175266 -1) (0.176391 -0.178406 -1) (0.201614 -0.180793 -1) (0.227501 -0.182542 -1) (0.254059 -0.183744 -1) (0.281279 -0.184471 -1) (0.309126 -0.184778 -1) (0.337549 -0.184712 -1) (0.366475 -0.184309 -1) (0.395817 -0.183602 -1) (0.425475 -0.182622 -1) (0.455339 -0.181398 -1) (0.485293 -0.17996 -1) (0.515215 -0.178338 -1) (0.544983 -0.176562 -1) (0.574476 -0.174662 -1) (0.603576 -0.172668 -1) (0.63217 -0.170608 -1) (0.660155 -0.168508 -1) (0.68744 -0.166388 -1) (0.713948 -0.164259 -1) (0.739627 -0.16212 -1) (0.764445 -0.15995 -1) (0.788404 -0.157704 -1) (0.811535 -0.155309 -1) (0.833899 -0.152661 -1) (0.855577 -0.149628 -1) (0.87666 -0.14605 -1) (0.897239 -0.141741 -1) (0.917389 -0.136486 -1) (0.937163 -0.130031 -1) (0.95657 -0.122072 -1) (0.97556 -0.112231 -1) (0.993979 -0.100015 -1) (1.01149 -0.0847703 -1) (1.02736 -0.0656118 -1) (1.04068 -0.0413129 -1) (1.04396 -0.0132765 -1) (1.04216 0.0417004 -1) (1.02897 0.06647 -1) (1.01314 0.0861046 -1) (0.995579 0.101797 -1) (0.977063 0.114419 -1) (0.957942 0.124622 -1) (0.938384 0.132898 -1) (0.918452 0.139627 -1) (0.898144 0.145114 -1) (0.877417 0.149613 -1) (0.856202 0.153343 -1) (0.834413 0.15649 -1) (0.811961 0.159218 -1) (0.788764 0.161663 -1) (0.764761 0.163935 -1) (0.739914 0.166111 -1) (0.714219 0.168245 -1) (0.687699 0.17036 -1) (0.660407 0.172464 -1) (0.632416 0.174546 -1) (0.603814 0.176588 -1) (0.574706 0.178566 -1) (0.545202 0.180451 -1) (0.51542 0.182213 -1) (0.485482 0.183822 -1) (0.455509 0.185248 -1) (0.425621 0.18646 -1) (0.395936 0.187428 -1) (0.366561 0.188121 -1) (0.337596 0.188509 -1) (0.309127 0.188556 -1) (0.281224 0.188222 -1) (0.253938 0.187461 -1) (0.227299 0.186211 -1) (0.201317 0.184398 -1) (0.175981 0.181926 -1) (0.151268 0.178677 -1) (0.127148 0.174507 -1) (0.103595 0.169244 -1) (0.0805967 0.162687 -1) (0.0581755 0.154598 -1) (0.0364034 0.144698 -1) (0.0154304 0.132666 -1) (-0.00447646 0.118137 -1) (-0.0228754 0.100713 -1) (-0.0390693 0.0800301 -1) (-0.0520231 0.0559148 -1) (-0.0603469 0.0287916 -1) (-0.063159 2.03288e-19 -1) (-0.0603469 -0.0287916 -1) (-0.0520231 -0.0559148 -1) (-0.0390693 -0.0800301 -1) (-0.0228754 -0.100713 -1) (-0.00447646 -0.118137 -1) (0.0154304 -0.132666 -1) (0.0364034 -0.144698 -1) (0.0581755 -0.154598 -1) (0.0805967 -0.162687 -1) (0.103595 -0.169244 -1) (0.127148 -0.174507 -1) (0.151268 -0.178677 -1) (0.175981 -0.181926 -1) (0.201317 -0.184398 -1) (0.227299 -0.186211 -1) (0.253938 -0.187461 -1) (0.281224 -0.188222 -1) (0.309127 -0.188556 -1) (0.337596 -0.188509 -1) (0.366561 -0.188121 -1) (0.395936 -0.187428 -1) (0.425621 -0.18646 -1) (0.455509 -0.185248 -1) (0.485482 -0.183822 -1) (0.51542 -0.182213 -1) (0.545202 -0.180451 -1) (0.574706 -0.178566 -1) (0.603814 -0.176588 -1) (0.632416 -0.174546 -1) (0.660407 -0.172464 -1) (0.687699 -0.17036 -1) (0.714219 -0.168245 -1) (0.739914 -0.166111 -1) (0.764761 -0.163935 -1) (0.788764 -0.161663 -1) (0.811961 -0.159218 -1) (0.834413 -0.15649 -1) (0.856202 -0.153343 -1) (0.877417 -0.149613 -1) (0.898144 -0.145114 -1) (0.918452 -0.139627 -1) (0.938384 -0.132898 -1) (0.957942 -0.124622 -1) (0.977063 -0.114419 -1) (0.995579 -0.101797 -1) (1.01314 -0.0861046 -1) (1.02897 -0.06647 -1) (1.04216 -0.0417004 -1) (1.04524 -0.0133661 -1) (1.04367 0.0420833 -1) (1.03062 0.0673219 -1) (1.01482 0.0874354 -1) (0.997222 0.103581 -1) (0.978614 0.116616 -1) (0.959364 0.127188 -1) (0.939655 0.135789 -1) (0.919563 0.142801 -1) (0.899095 0.148528 -1) (0.878216 0.153228 -1) (0.856864 0.157118 -1) (0.834958 0.160388 -1) (0.812411 0.163204 -1) (0.789144 0.165707 -1) (0.76509 0.168009 -1) (0.740211 0.170197 -1) (0.714495 0.172327 -1) (0.687963 0.174431 -1) (0.660663 0.176518 -1) (0.632664 0.178582 -1) (0.604056 0.180606 -1) (0.574939 0.182566 -1) (0.545424 0.184435 -1) (0.515628 0.186182 -1) (0.485673 0.187778 -1) (0.45568 0.189191 -1) (0.425768 0.19039 -1) (0.396054 0.191345 -1) (0.366646 0.192024 -1) (0.337641 0.192394 -1) (0.309124 0.192419 -1) (0.281163 0.192058 -1) (0.253807 0.191258 -1) (0.227083 0.189957 -1) (0.201 0.188074 -1) (0.175547 0.185511 -1) (0.1507 0.182146 -1) (0.126432 0.177831 -1) (0.102719 0.172391 -1) (0.0795552 0.165623 -1) (0.0569695 0.157286 -1) (0.035042 0.147104 -1) (0.0139321 0.134755 -1) (-0.00608272 0.119876 -1) (-0.0245501 0.102079 -1) (-0.0407647 0.0810124 -1) (-0.0536917 0.0565269 -1) (-0.0619625 0.0290747 -1) (-0.064745 2.30393e-19 -1) (-0.0619625 -0.0290747 -1) (-0.0536917 -0.0565269 -1) (-0.0407647 -0.0810124 -1) (-0.0245501 -0.102079 -1) (-0.00608272 -0.119876 -1) (0.0139321 -0.134755 -1) (0.035042 -0.147104 -1) (0.0569695 -0.157286 -1) (0.0795552 -0.165623 -1) (0.102719 -0.172391 -1) (0.126432 -0.177831 -1) (0.1507 -0.182146 -1) (0.175547 -0.185511 -1) (0.201 -0.188074 -1) (0.227083 -0.189957 -1) (0.253807 -0.191258 -1) (0.281163 -0.192058 -1) (0.309124 -0.192419 -1) (0.337641 -0.192394 -1) (0.366646 -0.192024 -1) (0.396054 -0.191345 -1) (0.425768 -0.19039 -1) (0.45568 -0.189191 -1) (0.485673 -0.187778 -1) (0.515628 -0.186182 -1) (0.545424 -0.184435 -1) (0.574939 -0.182566 -1) (0.604056 -0.180606 -1) (0.632664 -0.178582 -1) (0.660663 -0.176518 -1) (0.687963 -0.174431 -1) (0.714495 -0.172327 -1) (0.740211 -0.170197 -1) (0.76509 -0.168009 -1) (0.789144 -0.165707 -1) (0.812411 -0.163204 -1) (0.834958 -0.160388 -1) (0.856864 -0.157118 -1) (0.878216 -0.153228 -1) (0.899095 -0.148528 -1) (0.919563 -0.142801 -1) (0.939655 -0.135789 -1) (0.959364 -0.127188 -1) (0.978614 -0.116616 -1) (0.997222 -0.103581 -1) (1.01482 -0.0874354 -1) (1.03062 -0.0673219 -1) (1.04367 -0.0420833 -1) (1.04654 -0.013455 -1) (1.04521 0.042462 -1) (1.0323 0.0681677 -1) (1.01654 0.0887624 -1) (0.99891 0.105366 -1) (0.980212 0.118821 -1) (0.960836 0.12977 -1) (0.940978 0.138704 -1) (0.920725 0.146007 -1) (0.900094 0.151985 -1) (0.879059 0.156893 -1) (0.857565 0.160953 -1) (0.835536 0.164356 -1) (0.812888 0.167268 -1) (0.789543 0.169835 -1) (0.765434 0.172175 -1) (0.740517 0.174378 -1) (0.714778 0.176508 -1) (0.688232 0.178601 -1) (0.660922 0.180672 -1) (0.632916 0.182718 -1) (0.6043 0.184723 -1) (0.575174 0.186665 -1) (0.545648 0.188517 -1) (0.515838 0.190249 -1) (0.485866 0.19183 -1) (0.455852 0.193229 -1) (0.425916 0.194415 -1) (0.396173 0.195355 -1) (0.36673 0.196018 -1) (0.337683 0.19637 -1) (0.309115 0.196371 -1) (0.281093 0.195978 -1) (0.253663 0.195137 -1) (0.226851 0.193779 -1) (0.200663 0.191822 -1) (0.175088 0.189163 -1) (0.150103 0.185674 -1) (0.125682 0.181207 -1) (0.101805 0.175583 -1) (0.0784738 0.168596 -1) (0.0557222 0.160006 -1) (0.0336389 0.149533 -1) (0.0123928 0.136859 -1) (-0.00772832 0.121625 -1) (-0.0262618 0.103451 -1) (-0.0424945 0.0819978 -1) (-0.0553928 0.0571404 -1) (-0.0636099 0.0293584 -1) (-0.0663629 2.57498e-19 -1) (-0.0636099 -0.0293584 -1) (-0.0553928 -0.0571404 -1) (-0.0424945 -0.0819978 -1) (-0.0262618 -0.103451 -1) (-0.00772832 -0.121625 -1) (0.0123928 -0.136859 -1) (0.0336389 -0.149533 -1) (0.0557222 -0.160006 -1) (0.0784738 -0.168596 -1) (0.101805 -0.175583 -1) (0.125682 -0.181207 -1) (0.150103 -0.185674 -1) (0.175088 -0.189163 -1) (0.200663 -0.191822 -1) (0.226851 -0.193779 -1) (0.253663 -0.195137 -1) (0.281093 -0.195978 -1) (0.309115 -0.196371 -1) (0.337683 -0.19637 -1) (0.36673 -0.196018 -1) (0.396173 -0.195355 -1) (0.425916 -0.194415 -1) (0.455852 -0.193229 -1) (0.485866 -0.19183 -1) (0.515838 -0.190249 -1) (0.545648 -0.188517 -1) (0.575174 -0.186665 -1) (0.6043 -0.184723 -1) (0.632916 -0.182718 -1) (0.660922 -0.180672 -1) (0.688232 -0.178601 -1) (0.714778 -0.176508 -1) (0.740517 -0.174378 -1) (0.765434 -0.172175 -1) (0.789543 -0.169835 -1) (0.812888 -0.167268 -1) (0.835536 -0.164356 -1) (0.857565 -0.160953 -1) (0.879059 -0.156893 -1) (0.900094 -0.151985 -1) (0.920725 -0.146007 -1) (0.940978 -0.138704 -1) (0.960836 -0.12977 -1) (0.980212 -0.118821 -1) (0.99891 -0.105366 -1) (1.01654 -0.0887624 -1) (1.0323 -0.0681677 -1) (1.04521 -0.042462 -1) (1.04788 -0.0135434 -1) (1.04678 0.0428366 -1) (1.03401 0.0690073 -1) (1.0183 0.0900857 -1) (1.00064 0.107153 -1) (0.98186 0.121033 -1) (0.96236 0.132367 -1) (0.942353 0.141643 -1) (0.921938 0.149246 -1) (0.901143 0.155482 -1) (0.879949 0.160609 -1) (0.858307 0.164848 -1) (0.836149 0.168392 -1) (0.813394 0.171409 -1) (0.789965 0.174049 -1) (0.765795 0.176432 -1) (0.740836 0.178656 -1) (0.715069 0.180789 -1) (0.688506 0.182874 -1) (0.661185 0.18493 -1) (0.633171 0.186957 -1) (0.604547 0.188943 -1) (0.575412 0.190866 -1) (0.545874 0.192701 -1) (0.516051 0.194416 -1) (0.486061 0.195981 -1) (0.456026 0.197365 -1) (0.426065 0.198536 -1) (0.396291 0.199461 -1) (0.366812 0.200107 -1) (0.337721 0.200438 -1) (0.3091 0.200413 -1) (0.281014 0.199986 -1) (0.253507 0.199098 -1) (0.226602 0.19768 -1) (0.200304 0.195643 -1) (0.174602 0.192881 -1) (0.149474 0.189263 -1) (0.124896 0.184636 -1) (0.100853 0.17882 -1) (0.0773514 0.171607 -1) (0.0544325 0.162755 -1) (0.0321932 0.151986 -1) (0.0108117 0.138981 -1) (-0.00941407 0.123386 -1) (-0.0280112 0.104829 -1) (-0.0442596 0.0829864 -1) (-0.0571272 0.0577553 -1) (-0.06529 0.0296429 -1) (-0.0680136 2.30393e-19 -1) (-0.06529 -0.0296429 -1) (-0.0571272 -0.0577553 -1) (-0.0442596 -0.0829864 -1) (-0.0280112 -0.104829 -1) (-0.00941407 -0.123386 -1) (0.0108117 -0.138981 -1) (0.0321932 -0.151986 -1) (0.0544325 -0.162755 -1) (0.0773514 -0.171607 -1) (0.100853 -0.17882 -1) (0.124896 -0.184636 -1) (0.149474 -0.189263 -1) (0.174602 -0.192881 -1) (0.200304 -0.195643 -1) (0.226602 -0.19768 -1) (0.253507 -0.199098 -1) (0.281014 -0.199986 -1) (0.3091 -0.200413 -1) (0.337721 -0.200438 -1) (0.366812 -0.200107 -1) (0.396291 -0.199461 -1) (0.426065 -0.198536 -1) (0.456026 -0.197365 -1) (0.486061 -0.195981 -1) (0.516051 -0.194416 -1) (0.545874 -0.192701 -1) (0.575412 -0.190866 -1) (0.604547 -0.188943 -1) (0.633171 -0.186957 -1) (0.661185 -0.18493 -1) (0.688506 -0.182874 -1) (0.715069 -0.180789 -1) (0.740836 -0.178656 -1) (0.765795 -0.176432 -1) (0.789965 -0.174049 -1) (0.813394 -0.171409 -1) (0.836149 -0.168392 -1) (0.858307 -0.164848 -1) (0.879949 -0.160609 -1) (0.901143 -0.155482 -1) (0.921938 -0.149246 -1) (0.942353 -0.141643 -1) (0.96236 -0.132367 -1) (0.98186 -0.121033 -1) (1.00064 -0.107153 -1) (1.0183 -0.0900857 -1) (1.03401 -0.0690073 -1) (1.04678 -0.0428366 -1) (1.04926 -0.0136313 -1) (1.04838 0.0432073 -1) (1.03577 0.069841 -1) (1.02011 0.0914052 -1) (1.00242 0.10894 -1) (0.983558 0.123253 -1) (0.963936 0.134978 -1) (0.943782 0.144605 -1) (0.923205 0.152516 -1) (0.902243 0.15902 -1) (0.880887 0.164375 -1) (0.859093 0.168803 -1) (0.8368 0.172497 -1) (0.813931 0.175628 -1) (0.790412 0.178348 -1) (0.766173 0.180782 -1) (0.741167 0.183032 -1) (0.715369 0.185172 -1) (0.688786 0.187251 -1) (0.661452 0.189293 -1) (0.633429 0.191302 -1) (0.604796 0.193269 -1) (0.575652 0.195173 -1) (0.546103 0.196988 -1) (0.516265 0.198686 -1) (0.486258 0.200235 -1) (0.456201 0.201603 -1) (0.426214 0.202758 -1) (0.396409 0.203666 -1) (0.366891 0.204293 -1) (0.337755 0.204601 -1) (0.309079 0.204547 -1) (0.280925 0.204082 -1) (0.253336 0.203145 -1) (0.226334 0.20166 -1) (0.199922 0.199538 -1) (0.174088 0.196666 -1) (0.148813 0.192911 -1) (0.124074 0.188118 -1) (0.0998611 0.182103 -1) (0.0761867 0.174656 -1) (0.0530992 0.165535 -1) (0.0307038 0.154461 -1) (0.00918776 0.14112 -1) (-0.0111408 0.125158 -1) (-0.0297993 0.106214 -1) (-0.0460608 0.0839783 -1) (-0.0588958 0.0583719 -1) (-0.0670035 0.0299282 -1) (-0.0696979 1.76183e-19 -1) (-0.0670035 -0.0299282 -1) (-0.0588958 -0.0583719 -1) (-0.0460608 -0.0839783 -1) (-0.0297993 -0.106214 -1) (-0.0111408 -0.125158 -1) (0.00918776 -0.14112 -1) (0.0307038 -0.154461 -1) (0.0530992 -0.165535 -1) (0.0761867 -0.174656 -1) (0.0998611 -0.182103 -1) (0.124074 -0.188118 -1) (0.148813 -0.192911 -1) (0.174088 -0.196666 -1) (0.199922 -0.199538 -1) (0.226334 -0.20166 -1) (0.253336 -0.203145 -1) (0.280925 -0.204082 -1) (0.309079 -0.204547 -1) (0.337755 -0.204601 -1) (0.366891 -0.204293 -1) (0.396409 -0.203666 -1) (0.426214 -0.202758 -1) (0.456201 -0.201603 -1) (0.486258 -0.200235 -1) (0.516265 -0.198686 -1) (0.546103 -0.196988 -1) (0.575652 -0.195173 -1) (0.604796 -0.193269 -1) (0.633429 -0.191302 -1) (0.661452 -0.189293 -1) (0.688786 -0.187251 -1) (0.715369 -0.185172 -1) (0.741167 -0.183032 -1) (0.766173 -0.180782 -1) (0.790412 -0.178348 -1) (0.813931 -0.175628 -1) (0.8368 -0.172497 -1) (0.859093 -0.168803 -1) (0.880887 -0.164375 -1) (0.902243 -0.15902 -1) (0.923205 -0.152516 -1) (0.943782 -0.144605 -1) (0.963936 -0.134978 -1) (0.983558 -0.123253 -1) (1.00242 -0.10894 -1) (1.02011 -0.0914052 -1) (1.03577 -0.069841 -1) (1.04838 -0.0432073 -1) (1.05067 -0.0137187 -1) (1.05001 0.0435744 -1) (1.03755 0.0706686 -1) (1.02195 0.0927207 -1) (1.00425 0.110728 -1) (0.985307 0.12548 -1) (0.965566 0.137605 -1) (0.945266 0.14759 -1) (0.924527 0.155819 -1) (0.903397 0.1626 -1) (0.881874 0.168192 -1) (0.859924 0.172817 -1) (0.83749 0.17667 -1) (0.814501 0.179925 -1) (0.790884 0.182733 -1) (0.766572 0.185225 -1) (0.741512 0.187507 -1) (0.715679 0.189659 -1) (0.689073 0.191736 -1) (0.661724 0.193765 -1) (0.63369 0.195757 -1) (0.605049 0.197703 -1) (0.575894 0.199587 -1) (0.546333 0.201383 -1) (0.516481 0.203062 -1) (0.486456 0.204593 -1) (0.456377 0.205944 -1) (0.426363 0.207082 -1) (0.396525 0.207972 -1) (0.366968 0.208577 -1) (0.337783 0.20886 -1) (0.309049 0.208775 -1) (0.280824 0.208268 -1) (0.25315 0.207276 -1) (0.226046 0.205721 -1) (0.199515 0.203507 -1) (0.173545 0.200519 -1) (0.148117 0.196621 -1) (0.123213 0.191653 -1) (0.0988276 0.185431 -1) (0.0749784 0.177742 -1) (0.0517213 0.168345 -1) (0.0291697 0.15696 -1) (0.00752012 0.143275 -1) (-0.0129094 0.126942 -1) (-0.0316268 0.107605 -1) (-0.0478988 0.0849736 -1) (-0.0606994 0.0589901 -1) (-0.0687516 0.0302143 -1) (-0.0714169 1.76183e-19 -1) (-0.0687516 -0.0302143 -1) (-0.0606994 -0.0589901 -1) (-0.0478988 -0.0849736 -1) (-0.0316268 -0.107605 -1) (-0.0129094 -0.126942 -1) (0.00752012 -0.143275 -1) (0.0291697 -0.15696 -1) (0.0517213 -0.168345 -1) (0.0749784 -0.177742 -1) (0.0988276 -0.185431 -1) (0.123213 -0.191653 -1) (0.148117 -0.196621 -1) (0.173545 -0.200519 -1) (0.199515 -0.203507 -1) (0.226046 -0.205721 -1) (0.25315 -0.207276 -1) (0.280824 -0.208268 -1) (0.309049 -0.208775 -1) (0.337783 -0.20886 -1) (0.366968 -0.208577 -1) (0.396525 -0.207972 -1) (0.426363 -0.207082 -1) (0.456377 -0.205944 -1) (0.486456 -0.204593 -1) (0.516481 -0.203062 -1) (0.546333 -0.201383 -1) (0.575894 -0.199587 -1) (0.605049 -0.197703 -1) (0.63369 -0.195757 -1) (0.661724 -0.193765 -1) (0.689073 -0.191736 -1) (0.715679 -0.189659 -1) (0.741512 -0.187507 -1) (0.766572 -0.185225 -1) (0.790884 -0.182733 -1) (0.814501 -0.179925 -1) (0.83749 -0.17667 -1) (0.859924 -0.172817 -1) (0.881874 -0.168192 -1) (0.903397 -0.1626 -1) (0.924527 -0.155819 -1) (0.945266 -0.14759 -1) (0.965566 -0.137605 -1) (0.985307 -0.12548 -1) (1.00425 -0.110728 -1) (1.02195 -0.0927207 -1) (1.03755 -0.0706686 -1) (1.05001 -0.0435744 -1) (1.05212 -0.0138058 -1) (1.05168 0.0439381 -1) (1.03938 0.0714905 -1) (1.02384 0.0940323 -1) (1.00612 0.112517 -1) (0.987107 0.127714 -1) (0.96725 0.140246 -1) (0.946805 0.150598 -1) (0.925904 0.159152 -1) (0.904605 0.166219 -1) (0.882913 0.172058 -1) (0.860802 0.17689 -1) (0.838222 0.180913 -1) (0.815107 0.1843 -1) (0.791386 0.187205 -1) (0.766992 0.189763 -1) (0.741873 0.192083 -1) (0.715999 0.194252 -1) (0.689367 0.196329 -1) (0.662001 0.198348 -1) (0.633955 0.200322 -1) (0.605303 0.202249 -1) (0.576139 0.204112 -1) (0.546566 0.205887 -1) (0.516699 0.207547 -1) (0.486655 0.209059 -1) (0.456554 0.210392 -1) (0.426511 0.211511 -1) (0.39664 0.21238 -1) (0.367041 0.212963 -1) (0.337806 0.213218 -1) (0.30901 0.213098 -1) (0.280711 0.212546 -1) (0.252947 0.211495 -1) (0.225736 0.209864 -1) (0.199081 0.207552 -1) (0.172969 0.204441 -1) (0.147385 0.200391 -1) (0.122312 0.195241 -1) (0.0977513 0.188804 -1) (0.0737253 0.180867 -1) (0.0502976 0.171185 -1) (0.0275898 0.159483 -1) (0.0058078 0.145447 -1) (-0.0147208 0.128736 -1) (-0.0334946 0.109003 -1) (-0.0497747 0.0859724 -1) (-0.0625389 0.0596101 -1) (-0.070535 0.0305013 -1) (-0.0731714 2.03288e-19 -1) (-0.070535 -0.0305013 -1) (-0.0625389 -0.0596101 -1) (-0.0497747 -0.0859724 -1) (-0.0334946 -0.109003 -1) (-0.0147208 -0.128736 -1) (0.0058078 -0.145447 -1) (0.0275898 -0.159483 -1) (0.0502976 -0.171185 -1) (0.0737253 -0.180867 -1) (0.0977513 -0.188804 -1) (0.122312 -0.195241 -1) (0.147385 -0.200391 -1) (0.172969 -0.204441 -1) (0.199081 -0.207552 -1) (0.225736 -0.209864 -1) (0.252947 -0.211495 -1) (0.280711 -0.212546 -1) (0.30901 -0.213098 -1) (0.337806 -0.213218 -1) (0.367041 -0.212963 -1) (0.39664 -0.21238 -1) (0.426511 -0.211511 -1) (0.456554 -0.210392 -1) (0.486655 -0.209059 -1) (0.516699 -0.207547 -1) (0.546566 -0.205887 -1) (0.576139 -0.204112 -1) (0.605303 -0.202249 -1) (0.633955 -0.200322 -1) (0.662001 -0.198348 -1) (0.689367 -0.196329 -1) (0.715999 -0.194252 -1) (0.741873 -0.192083 -1) (0.766992 -0.189763 -1) (0.791386 -0.187205 -1) (0.815107 -0.1843 -1) (0.838222 -0.180913 -1) (0.860802 -0.17689 -1) (0.882913 -0.172058 -1) (0.904605 -0.166219 -1) (0.925904 -0.159152 -1) (0.946805 -0.150598 -1) (0.96725 -0.140246 -1) (0.987107 -0.127714 -1) (1.00612 -0.112517 -1) (1.02384 -0.0940323 -1) (1.03938 -0.0714905 -1) (1.05168 -0.0439381 -1) (1.0536 -0.0138927 -1) (1.05338 0.0442985 -1) (1.04124 0.0723065 -1) (1.02577 0.09534 -1) (1.00805 0.114306 -1) (0.98896 0.129955 -1) (0.96899 0.142901 -1) (0.948402 0.153628 -1) (0.92734 0.162517 -1) (0.905869 0.169879 -1) (0.884006 0.175973 -1) (0.86173 0.181023 -1) (0.838998 0.185224 -1) (0.81575 0.188753 -1) (0.791918 0.191764 -1) (0.767437 0.194396 -1) (0.742253 0.196761 -1) (0.716332 0.198952 -1) (0.689669 0.201033 -1) (0.662283 0.203043 -1) (0.634224 0.205002 -1) (0.605561 0.206909 -1) (0.576385 0.208751 -1) (0.5468 0.210505 -1) (0.516918 0.212144 -1) (0.486855 0.213637 -1) (0.45673 0.214949 -1) (0.426659 0.216048 -1) (0.396752 0.216895 -1) (0.36711 0.217453 -1) (0.337821 0.217677 -1) (0.308961 0.217519 -1) (0.280584 0.216917 -1) (0.252725 0.215803 -1) (0.225403 0.214089 -1) (0.198619 0.211672 -1) (0.172361 0.208431 -1) (0.146615 0.204223 -1) (0.12137 0.198883 -1) (0.0966307 0.192223 -1) (0.0724259 0.184029 -1) (0.0488268 0.174056 -1) (0.0259631 0.162029 -1) (0.00404982 0.147636 -1) (-0.0165758 0.130541 -1) (-0.0354035 0.110408 -1) (-0.0516891 0.0869748 -1) (-0.0644152 0.0602319 -1) (-0.0723547 0.0307894 -1) (-0.0749624 2.57498e-19 -1) (-0.0723547 -0.0307894 -1) (-0.0644152 -0.0602319 -1) (-0.0516891 -0.0869748 -1) (-0.0354035 -0.110408 -1) (-0.0165758 -0.130541 -1) (0.00404982 -0.147636 -1) (0.0259631 -0.162029 -1) (0.0488268 -0.174056 -1) (0.0724259 -0.184029 -1) (0.0966307 -0.192223 -1) (0.12137 -0.198883 -1) (0.146615 -0.204223 -1) (0.172361 -0.208431 -1) (0.198619 -0.211672 -1) (0.225403 -0.214089 -1) (0.252725 -0.215803 -1) (0.280584 -0.216917 -1) (0.308961 -0.217519 -1) (0.337821 -0.217677 -1) (0.36711 -0.217453 -1) (0.396752 -0.216895 -1) (0.426659 -0.216048 -1) (0.45673 -0.214949 -1) (0.486855 -0.213637 -1) (0.516918 -0.212144 -1) (0.5468 -0.210505 -1) (0.576385 -0.208751 -1) (0.605561 -0.206909 -1) (0.634224 -0.205002 -1) (0.662283 -0.203043 -1) (0.689669 -0.201033 -1) (0.716332 -0.198952 -1) (0.742253 -0.196761 -1) (0.767437 -0.194396 -1) (0.791918 -0.191764 -1) (0.81575 -0.188753 -1) (0.838998 -0.185224 -1) (0.86173 -0.181023 -1) (0.884006 -0.175973 -1) (0.905869 -0.169879 -1) (0.92734 -0.162517 -1) (0.948402 -0.153628 -1) (0.96899 -0.142901 -1) (0.98896 -0.129955 -1) (1.00805 -0.114306 -1) (1.02577 -0.09534 -1) (1.04124 -0.0723065 -1) (1.05338 -0.0442985 -1) (1.05513 -0.0139794 -1) (1.05512 0.044656 -1) (1.04314 0.073117 -1) (1.02774 0.0966436 -1) (1.01002 0.116096 -1) (0.990866 0.132203 -1) (0.970787 0.145571 -1) (0.950058 0.15668 -1) (0.928834 0.165913 -1) (0.907191 0.173579 -1) (0.885154 0.179938 -1) (0.86271 0.185215 -1) (0.839821 0.189604 -1) (0.816434 0.193284 -1) (0.792484 0.196411 -1) (0.767908 0.199124 -1) (0.742651 0.201542 -1) (0.71668 0.203761 -1) (0.689981 0.20585 -1) (0.662572 0.207855 -1) (0.634496 0.2098 -1) (0.605821 0.211687 -1) (0.576634 0.213507 -1) (0.547036 0.215239 -1) (0.517138 0.216856 -1) (0.487055 0.218328 -1) (0.456906 0.219619 -1) (0.426805 0.220695 -1) (0.396861 0.221519 -1) (0.367173 0.222049 -1) (0.337829 0.22224 -1) (0.308901 0.222039 -1) (0.280441 0.221384 -1) (0.252484 0.2202 -1) (0.225045 0.218397 -1) (0.198127 0.21587 -1) (0.171718 0.212491 -1) (0.145806 0.208117 -1) (0.120385 0.202579 -1) (0.0954643 0.195689 -1) (0.0710791 0.18723 -1) (0.0473078 0.176958 -1) (0.0242885 0.164598 -1) (0.00224517 0.149842 -1) (-0.0184754 0.132358 -1) (-0.0373545 0.11182 -1) (-0.0536431 0.0879809 -1) (-0.0663294 0.0608557 -1) (-0.0742118 0.0310784 -1) (-0.0767909 2.57498e-19 -1) (-0.0742118 -0.0310784 -1) (-0.0663294 -0.0608557 -1) (-0.0536431 -0.0879809 -1) (-0.0373545 -0.11182 -1) (-0.0184754 -0.132358 -1) (0.00224517 -0.149842 -1) (0.0242885 -0.164598 -1) (0.0473078 -0.176958 -1) (0.0710791 -0.18723 -1) (0.0954643 -0.195689 -1) (0.120385 -0.202579 -1) (0.145806 -0.208117 -1) (0.171718 -0.212491 -1) (0.198127 -0.21587 -1) (0.225045 -0.218397 -1) (0.252484 -0.2202 -1) (0.280441 -0.221384 -1) (0.308901 -0.222039 -1) (0.337829 -0.22224 -1) (0.367173 -0.222049 -1) (0.396861 -0.221519 -1) (0.426805 -0.220695 -1) (0.456906 -0.219619 -1) (0.487055 -0.218328 -1) (0.517138 -0.216856 -1) (0.547036 -0.215239 -1) (0.576634 -0.213507 -1) (0.605821 -0.211687 -1) (0.634496 -0.2098 -1) (0.662572 -0.207855 -1) (0.689981 -0.20585 -1) (0.71668 -0.203761 -1) (0.742651 -0.201542 -1) (0.767908 -0.199124 -1) (0.792484 -0.196411 -1) (0.816434 -0.193284 -1) (0.839821 -0.189604 -1) (0.86271 -0.185215 -1) (0.885154 -0.179938 -1) (0.907191 -0.173579 -1) (0.928834 -0.165913 -1) (0.950058 -0.15668 -1) (0.970787 -0.145571 -1) (0.990866 -0.132203 -1) (1.01002 -0.116096 -1) (1.02774 -0.0966436 -1) (1.04314 -0.073117 -1) (1.05512 -0.044656 -1) (1.05669 -0.014066 -1) (1.0569 0.0450107 -1) (1.04509 0.0739219 -1) (1.02976 0.0979432 -1) (1.01204 0.117886 -1) (0.992827 0.134457 -1) (0.972641 0.148254 -1) (0.951773 0.159754 -1) (0.930388 0.169339 -1) (0.908573 0.177319 -1) (0.886359 0.183953 -1) (0.863743 0.189465 -1) (0.840693 0.194053 -1) (0.81716 0.197893 -1) (0.793085 0.201145 -1) (0.768407 0.203949 -1) (0.743072 0.206427 -1) (0.717043 0.20868 -1) (0.690304 0.210782 -1) (0.662868 0.212785 -1) (0.634774 0.214717 -1) (0.606084 0.216585 -1) (0.576885 0.218384 -1) (0.547273 0.220093 -1) (0.517358 0.221687 -1) (0.487256 0.223136 -1) (0.457082 0.224404 -1) (0.426949 0.225456 -1) (0.396966 0.226254 -1) (0.367231 0.226753 -1) (0.337828 0.226907 -1) (0.308828 0.22666 -1) (0.280281 0.225947 -1) (0.252221 0.224688 -1) (0.224661 0.22279 -1) (0.197602 0.220145 -1) (0.171038 0.216622 -1) (0.144956 0.212073 -1) (0.119356 0.20633 -1) (0.0942506 0.199201 -1) (0.0696833 0.190469 -1) (0.0457392 0.179891 -1) (0.0225647 0.167191 -1) (0.000392817 0.152065 -1) (-0.0204206 0.134186 -1) (-0.0393484 0.113238 -1) (-0.0556376 0.0889907 -1) (-0.0682823 0.0614816 -1) (-0.0761072 0.0313686 -1) (-0.078658 2.30393e-19 -1) (-0.0761072 -0.0313686 -1) (-0.0682823 -0.0614816 -1) (-0.0556376 -0.0889907 -1) (-0.0393484 -0.113238 -1) (-0.0204206 -0.134186 -1) (0.000392817 -0.152065 -1) (0.0225647 -0.167191 -1) (0.0457392 -0.179891 -1) (0.0696833 -0.190469 -1) (0.0942506 -0.199201 -1) (0.119356 -0.20633 -1) (0.144956 -0.212073 -1) (0.171038 -0.216622 -1) (0.197602 -0.220145 -1) (0.224661 -0.22279 -1) (0.252221 -0.224688 -1) (0.280281 -0.225947 -1) (0.308828 -0.22666 -1) (0.337828 -0.226907 -1) (0.367231 -0.226753 -1) (0.396966 -0.226254 -1) (0.426949 -0.225456 -1) (0.457082 -0.224404 -1) (0.487256 -0.223136 -1) (0.517358 -0.221687 -1) (0.547273 -0.220093 -1) (0.576885 -0.218384 -1) (0.606084 -0.216585 -1) (0.634774 -0.214717 -1) (0.662868 -0.212785 -1) (0.690304 -0.210782 -1) (0.717043 -0.20868 -1) (0.743072 -0.206427 -1) (0.768407 -0.203949 -1) (0.793085 -0.201145 -1) (0.81716 -0.197893 -1) (0.840693 -0.194053 -1) (0.863743 -0.189465 -1) (0.886359 -0.183953 -1) (0.908573 -0.177319 -1) (0.930388 -0.169339 -1) (0.951773 -0.159754 -1) (0.972641 -0.148254 -1) (0.992827 -0.134457 -1) (1.01204 -0.117886 -1) (1.02976 -0.0979432 -1) (1.04509 -0.0739219 -1) (1.0569 -0.0450107 -1) (1.0583 -0.0141526 -1) (1.05871 0.0453628 -1) (1.04707 0.0747215 -1) (1.03182 0.0992387 -1) (1.01411 0.119675 -1) (0.994844 0.136717 -1) (0.974554 0.15095 -1) (0.953549 0.16285 -1) (0.932005 0.172796 -1) (0.910016 0.181098 -1) (0.887624 0.188016 -1) (0.864832 0.193774 -1) (0.841615 0.19857 -1) (0.817931 0.202581 -1) (0.793725 0.205967 -1) (0.768938 0.20887 -1) (0.743517 0.211417 -1) (0.717424 0.21371 -1) (0.690639 0.21583 -1) (0.663172 0.217835 -1) (0.635056 0.219756 -1) (0.606351 0.221607 -1) (0.577137 0.223384 -1) (0.547511 0.22507 -1) (0.517579 0.22664 -1) (0.487456 0.228064 -1) (0.457256 0.229308 -1) (0.42709 0.230334 -1) (0.397067 0.231103 -1) (0.367281 0.231569 -1) (0.337817 0.231683 -1) (0.308741 0.231385 -1) (0.280103 0.230608 -1) (0.251934 0.229268 -1) (0.224247 0.22727 -1) (0.197045 0.224498 -1) (0.170319 0.220823 -1) (0.144063 0.216092 -1) (0.11828 0.210135 -1) (0.0929881 0.202759 -1) (0.0682372 0.193747 -1) (0.0441199 0.182855 -1) (0.0207908 0.169808 -1) (-0.00150831 0.154305 -1) (-0.0224124 0.136026 -1) (-0.0413863 0.114663 -1) (-0.0576736 0.0900045 -1) (-0.070275 0.0621097 -1) (-0.0780421 0.0316599 -1) (-0.0805648 2.84603e-19 -1) (-0.0780421 -0.0316599 -1) (-0.070275 -0.0621097 -1) (-0.0576736 -0.0900045 -1) (-0.0413863 -0.114663 -1) (-0.0224124 -0.136026 -1) (-0.00150831 -0.154305 -1) (0.0207908 -0.169808 -1) (0.0441199 -0.182855 -1) (0.0682372 -0.193747 -1) (0.0929881 -0.202759 -1) (0.11828 -0.210135 -1) (0.144063 -0.216092 -1) (0.170319 -0.220823 -1) (0.197045 -0.224498 -1) (0.224247 -0.22727 -1) (0.251934 -0.229268 -1) (0.280103 -0.230608 -1) (0.308741 -0.231385 -1) (0.337817 -0.231683 -1) (0.367281 -0.231569 -1) (0.397067 -0.231103 -1) (0.42709 -0.230334 -1) (0.457256 -0.229308 -1) (0.487456 -0.228064 -1) (0.517579 -0.22664 -1) (0.547511 -0.22507 -1) (0.577137 -0.223384 -1) (0.606351 -0.221607 -1) (0.635056 -0.219756 -1) (0.663172 -0.217835 -1) (0.690639 -0.21583 -1) (0.717424 -0.21371 -1) (0.743517 -0.211417 -1) (0.768938 -0.20887 -1) (0.793725 -0.205967 -1) (0.817931 -0.202581 -1) (0.841615 -0.19857 -1) (0.864832 -0.193774 -1) (0.887624 -0.188016 -1) (0.910016 -0.181098 -1) (0.932005 -0.172796 -1) (0.953549 -0.16285 -1) (0.974554 -0.15095 -1) (0.994844 -0.136717 -1) (1.01411 -0.119675 -1) (1.03182 -0.0992387 -1) (1.04707 -0.0747215 -1) (1.05871 -0.0453628 -1) (1.05996 -0.0142393 -1) (1.06056 0.0457126 -1) (1.04909 0.0755158 -1) (1.03393 0.10053 -1) (1.01623 0.121465 -1) (0.996916 0.138982 -1) (0.976528 0.15366 -1) (0.955388 0.165967 -1) (0.933684 0.176282 -1) (0.911522 0.184916 -1) (0.88895 0.192128 -1) (0.865979 0.198142 -1) (0.842591 0.203156 -1) (0.81875 0.207347 -1) (0.794406 0.210876 -1) (0.769502 0.213889 -1) (0.743988 0.216512 -1) (0.717824 0.218853 -1) (0.690988 0.220998 -1) (0.663485 0.223008 -1) (0.635344 0.224921 -1) (0.606621 0.226756 -1) (0.577392 0.228511 -1) (0.54775 0.230173 -1) (0.517801 0.231718 -1) (0.487655 0.233116 -1) (0.457428 0.234333 -1) (0.427228 0.235331 -1) (0.397162 0.236069 -1) (0.367323 0.236498 -1) (0.337794 0.236568 -1) (0.308639 0.236215 -1) (0.279905 0.235368 -1) (0.251622 0.233942 -1) (0.223804 0.231835 -1) (0.196451 0.228931 -1) (0.16956 0.225095 -1) (0.143126 0.220175 -1) (0.117156 0.213996 -1) (0.0916752 0.206365 -1) (0.0667394 0.197064 -1) (0.0424485 0.185849 -1) (0.0189654 0.172448 -1) (-0.0034593 0.156563 -1) (-0.0244518 0.137877 -1) (-0.0434692 0.116096 -1) (-0.059752 0.0910222 -1) (-0.0723085 0.06274 -1) (-0.0800174 0.0319525 -1) (-0.0825123 3.11708e-19 -1) (-0.0800174 -0.0319525 -1) (-0.0723085 -0.06274 -1) (-0.059752 -0.0910222 -1) (-0.0434692 -0.116096 -1) (-0.0244518 -0.137877 -1) (-0.0034593 -0.156563 -1) (0.0189654 -0.172448 -1) (0.0424485 -0.185849 -1) (0.0667394 -0.197064 -1) (0.0916752 -0.206365 -1) (0.117156 -0.213996 -1) (0.143126 -0.220175 -1) (0.16956 -0.225095 -1) (0.196451 -0.228931 -1) (0.223804 -0.231835 -1) (0.251622 -0.233942 -1) (0.279905 -0.235368 -1) (0.308639 -0.236215 -1) (0.337794 -0.236568 -1) (0.367323 -0.236498 -1) (0.397162 -0.236069 -1) (0.427228 -0.235331 -1) (0.457428 -0.234333 -1) (0.487655 -0.233116 -1) (0.517801 -0.231718 -1) (0.54775 -0.230173 -1) (0.577392 -0.228511 -1) (0.606621 -0.226756 -1) (0.635344 -0.224921 -1) (0.663485 -0.223008 -1) (0.690988 -0.220998 -1) (0.717824 -0.218853 -1) (0.743988 -0.216512 -1) (0.769502 -0.213889 -1) (0.794406 -0.210876 -1) (0.81875 -0.207347 -1) (0.842591 -0.203156 -1) (0.865979 -0.198142 -1) (0.88895 -0.192128 -1) (0.911522 -0.184916 -1) (0.933684 -0.176282 -1) (0.955388 -0.165967 -1) (0.976528 -0.15366 -1) (0.996916 -0.138982 -1) (1.01623 -0.121465 -1) (1.03393 -0.10053 -1) (1.04909 -0.0755158 -1) (1.06056 -0.0457126 -1) (1.06165 -0.0143262 -1) (1.06246 0.0460603 -1) (1.05116 0.076305 -1) (1.03609 0.101817 -1) (1.01841 0.123255 -1) (0.999046 0.141254 -1) (0.978562 0.156382 -1) (0.95729 0.169105 -1) (0.935429 0.179799 -1) (0.913093 0.188773 -1) (0.890339 0.196288 -1) (0.867186 0.202568 -1) (0.843623 0.207809 -1) (0.819619 0.212191 -1) (0.79513 0.215875 -1) (0.770103 0.219006 -1) (0.744488 0.221714 -1) (0.718246 0.22411 -1) (0.691353 0.226285 -1) (0.663809 0.228305 -1) (0.63564 0.230214 -1) (0.606895 0.232034 -1) (0.577648 0.233768 -1) (0.54799 0.235405 -1) (0.518022 0.236924 -1) (0.487853 0.238295 -1) (0.457597 0.239484 -1) (0.427362 0.240451 -1) (0.39725 0.241154 -1) (0.367356 0.241544 -1) (0.337758 0.241565 -1) (0.308519 0.241152 -1) (0.279685 0.240231 -1) (0.251283 0.238711 -1) (0.223327 0.236489 -1) (0.19582 0.233444 -1) (0.168758 0.22944 -1) (0.142142 0.224321 -1) (0.115982 0.217912 -1) (0.0903104 0.210017 -1) (0.0651883 0.20042 -1) (0.0407237 0.188875 -1) (0.0170874 0.175113 -1) (-0.00546127 0.158837 -1) (-0.0265398 0.13974 -1) (-0.045598 0.117535 -1) (-0.0618739 0.0920439 -1) (-0.0743839 0.0633726 -1) (-0.0820344 0.0322463 -1) (-0.0845016 3.11708e-19 -1) (-0.0820344 -0.0322463 -1) (-0.0743839 -0.0633726 -1) (-0.0618739 -0.0920439 -1) (-0.045598 -0.117535 -1) (-0.0265398 -0.13974 -1) (-0.00546127 -0.158837 -1) (0.0170874 -0.175113 -1) (0.0407237 -0.188875 -1) (0.0651883 -0.20042 -1) (0.0903104 -0.210017 -1) (0.115982 -0.217912 -1) (0.142142 -0.224321 -1) (0.168758 -0.22944 -1) (0.19582 -0.233444 -1) (0.223327 -0.236489 -1) (0.251283 -0.238711 -1) (0.279685 -0.240231 -1) (0.308519 -0.241152 -1) (0.337758 -0.241565 -1) (0.367356 -0.241544 -1) (0.39725 -0.241154 -1) (0.427362 -0.240451 -1) (0.457597 -0.239484 -1) (0.487853 -0.238295 -1) (0.518022 -0.236924 -1) (0.54799 -0.235405 -1) (0.577648 -0.233768 -1) (0.606895 -0.232034 -1) (0.63564 -0.230214 -1) (0.663809 -0.228305 -1) (0.691353 -0.226285 -1) (0.718246 -0.22411 -1) (0.744488 -0.221714 -1) (0.770103 -0.219006 -1) (0.79513 -0.215875 -1) (0.819619 -0.212191 -1) (0.843623 -0.207809 -1) (0.867186 -0.202568 -1) (0.890339 -0.196288 -1) (0.913093 -0.188773 -1) (0.935429 -0.179799 -1) (0.95729 -0.169105 -1) (0.978562 -0.156382 -1) (0.999046 -0.141254 -1) (1.01841 -0.123255 -1) (1.03609 -0.101817 -1) (1.05116 -0.076305 -1) (1.06246 -0.0460603 -1) (1.06339 -0.0144133 -1) (1.0644 0.0464063 -1) (1.05327 0.0770903 -1) (1.0383 0.103102 -1) (1.02064 0.125045 -1) (1.00124 0.143532 -1) (0.980659 0.159119 -1) (0.959258 0.172265 -1) (0.93724 0.183346 -1) (0.91473 0.19267 -1) (0.891793 0.200498 -1) (0.868455 0.207053 -1) (0.844713 0.212532 -1) (0.820542 0.217115 -1) (0.795901 0.220962 -1) (0.770743 0.22422 -1) (0.74502 0.227023 -1) (0.718693 0.229483 -1) (0.691735 0.231695 -1) (0.664145 0.23373 -1) (0.635942 0.235637 -1) (0.607174 0.237444 -1) (0.577908 0.239158 -1) (0.54823 0.240771 -1) (0.518242 0.242262 -1) (0.488049 0.243604 -1) (0.457763 0.244762 -1) (0.42749 0.245697 -1) (0.397331 0.246362 -1) (0.367378 0.246708 -1) (0.337707 0.246676 -1) (0.30838 0.246199 -1) (0.27944 0.245196 -1) (0.250914 0.243576 -1) (0.222816 0.241232 -1) (0.195148 0.238039 -1) (0.167911 0.233858 -1) (0.141109 0.228532 -1) (0.114757 0.221884 -1) (0.0888917 0.213718 -1) (0.0635823 0.203815 -1) (0.0389438 0.191933 -1) (0.0151551 0.177802 -1) (-0.00751587 0.16113 -1) (-0.0286781 0.141616 -1) (-0.0477746 0.118983 -1) (-0.0640412 0.0930707 -1) (-0.0765034 0.0640083 -1) (-0.0840952 0.0325417 -1) (-0.0865349 2.57498e-19 -1) (-0.0840952 -0.0325417 -1) (-0.0765034 -0.0640083 -1) (-0.0640412 -0.0930707 -1) (-0.0477746 -0.118983 -1) (-0.0286781 -0.141616 -1) (-0.00751587 -0.16113 -1) (0.0151551 -0.177802 -1) (0.0389438 -0.191933 -1) (0.0635823 -0.203815 -1) (0.0888917 -0.213718 -1) (0.114757 -0.221884 -1) (0.141109 -0.228532 -1) (0.167911 -0.233858 -1) (0.195148 -0.238039 -1) (0.222816 -0.241232 -1) (0.250914 -0.243576 -1) (0.27944 -0.245196 -1) (0.30838 -0.246199 -1) (0.337707 -0.246676 -1) (0.367378 -0.246708 -1) (0.397331 -0.246362 -1) (0.42749 -0.245697 -1) (0.457763 -0.244762 -1) (0.488049 -0.243604 -1) (0.518242 -0.242262 -1) (0.54823 -0.240771 -1) (0.577908 -0.239158 -1) (0.607174 -0.237444 -1) (0.635942 -0.235637 -1) (0.664145 -0.23373 -1) (0.691735 -0.231695 -1) (0.718693 -0.229483 -1) (0.74502 -0.227023 -1) (0.770743 -0.22422 -1) (0.795901 -0.220962 -1) (0.820542 -0.217115 -1) (0.844713 -0.212532 -1) (0.868455 -0.207053 -1) (0.891793 -0.200498 -1) (0.91473 -0.19267 -1) (0.93724 -0.183346 -1) (0.959258 -0.172265 -1) (0.980659 -0.159119 -1) (1.00124 -0.143532 -1) (1.02064 -0.125045 -1) (1.0383 -0.103102 -1) (1.05327 -0.0770903 -1) (1.0644 -0.0464063 -1) (1.06518 -0.0145002 -1) (1.06638 0.0467506 -1) (1.05543 0.0778718 -1) (1.04056 0.104383 -1) (1.02292 0.126837 -1) (1.00348 0.145817 -1) (0.98282 0.161868 -1) (0.961292 0.175446 -1) (0.939119 0.186923 -1) (0.916436 0.196607 -1) (0.893315 0.204757 -1) (0.86979 0.211597 -1) (0.845864 0.217324 -1) (0.821519 0.222117 -1) (0.79672 0.226138 -1) (0.771424 0.229534 -1) (0.745586 0.23244 -1) (0.719166 0.234972 -1) (0.692138 0.237228 -1) (0.664495 0.239284 -1) (0.636254 0.241194 -1) (0.607458 0.24299 -1) (0.578169 0.244685 -1) (0.548472 0.246272 -1) (0.518461 0.247736 -1) (0.488243 0.249047 -1) (0.457924 0.250173 -1) (0.427611 0.251071 -1) (0.397403 0.251696 -1) (0.367387 0.251994 -1) (0.33764 0.251904 -1) (0.30822 0.251356 -1) (0.279169 0.250266 -1) (0.250514 0.248539 -1) (0.222267 0.246065 -1) (0.194435 0.242716 -1) (0.167018 0.23835 -1) (0.140026 0.232808 -1) (0.113478 0.225913 -1) (0.0874175 0.217467 -1) (0.0619199 0.207251 -1) (0.0371075 0.195023 -1) (0.0131673 0.180516 -1) (-0.00962432 0.163441 -1) (-0.030868 0.143504 -1) (-0.0500001 0.120439 -1) (-0.0662552 0.0941025 -1) (-0.0786681 0.064647 -1) (-0.0862009 0.0328387 -1) (-0.0886133 3.65918e-19 -1) (-0.0862009 -0.0328387 -1) (-0.0786681 -0.064647 -1) (-0.0662552 -0.0941025 -1) (-0.0500001 -0.120439 -1) (-0.030868 -0.143504 -1) (-0.00962432 -0.163441 -1) (0.0131673 -0.180516 -1) (0.0371075 -0.195023 -1) (0.0619199 -0.207251 -1) (0.0874175 -0.217467 -1) (0.113478 -0.225913 -1) (0.140026 -0.232808 -1) (0.167018 -0.23835 -1) (0.194435 -0.242716 -1) (0.222267 -0.246065 -1) (0.250514 -0.248539 -1) (0.279169 -0.250266 -1) (0.30822 -0.251356 -1) (0.33764 -0.251904 -1) (0.367387 -0.251994 -1) (0.397403 -0.251696 -1) (0.427611 -0.251071 -1) (0.457924 -0.250173 -1) (0.488243 -0.249047 -1) (0.518461 -0.247736 -1) (0.548472 -0.246272 -1) (0.578169 -0.244685 -1) (0.607458 -0.24299 -1) (0.636254 -0.241194 -1) (0.664495 -0.239284 -1) (0.692138 -0.237228 -1) (0.719166 -0.234972 -1) (0.745586 -0.23244 -1) (0.771424 -0.229534 -1) (0.79672 -0.226138 -1) (0.821519 -0.222117 -1) (0.845864 -0.217324 -1) (0.86979 -0.211597 -1) (0.893315 -0.204757 -1) (0.916436 -0.196607 -1) (0.939119 -0.186923 -1) (0.961292 -0.175446 -1) (0.98282 -0.161868 -1) (1.00348 -0.145817 -1) (1.02292 -0.126837 -1) (1.04056 -0.104383 -1) (1.05543 -0.0778718 -1) (1.06638 -0.0467506 -1) (1.06702 -0.0145869 -1) (1.06841 0.0470934 -1) (1.05763 0.0786496 -1) (1.04286 0.105662 -1) (1.02526 0.128628 -1) (1.00579 0.148108 -1) (0.985046 0.164632 -1) (0.963394 0.178649 -1) (0.941068 0.19053 -1) (0.918211 0.200582 -1) (0.894905 0.209064 -1) (0.871191 0.216199 -1) (0.847078 0.222185 -1) (0.822555 0.227199 -1) (0.797592 0.231403 -1) (0.772151 0.234947 -1) (0.746189 0.237966 -1) (0.719669 0.240578 -1) (0.692562 0.242885 -1) (0.66486 0.244968 -1) (0.636577 0.246886 -1) (0.607748 0.248674 -1) (0.578434 0.250351 -1) (0.548713 0.251914 -1) (0.518679 0.253349 -1) (0.488433 0.254628 -1) (0.458081 0.255718 -1) (0.427726 0.256577 -1) (0.397464 0.257158 -1) (0.367383 0.257404 -1) (0.337555 0.257251 -1) (0.308037 0.256626 -1) (0.27887 0.255443 -1) (0.250079 0.253602 -1) (0.221679 0.250989 -1) (0.193677 0.247475 -1) (0.166076 0.242916 -1) (0.13889 0.237151 -1) (0.112144 0.229999 -1) (0.0858861 0.221264 -1) (0.0601993 0.210727 -1) (0.0352131 0.198146 -1) (0.0111225 0.183255 -1) (-0.0117879 0.165771 -1) (-0.0331105 0.145405 -1) (-0.0522757 0.121903 -1) (-0.0685169 0.0951394 -1) (-0.0808792 0.0652888 -1) (-0.0883528 0.0331374 -1) (-0.0907381 4.20128e-19 -1) (-0.0883528 -0.0331374 -1) (-0.0808792 -0.0652888 -1) (-0.0685169 -0.0951394 -1) (-0.0522757 -0.121903 -1) (-0.0331105 -0.145405 -1) (-0.0117879 -0.165771 -1) (0.0111225 -0.183255 -1) (0.0352131 -0.198146 -1) (0.0601993 -0.210727 -1) (0.0858861 -0.221264 -1) (0.112144 -0.229999 -1) (0.13889 -0.237151 -1) (0.166076 -0.242916 -1) (0.193677 -0.247475 -1) (0.221679 -0.250989 -1) (0.250079 -0.253602 -1) (0.27887 -0.255443 -1) (0.308037 -0.256626 -1) (0.337555 -0.257251 -1) (0.367383 -0.257404 -1) (0.397464 -0.257158 -1) (0.427726 -0.256577 -1) (0.458081 -0.255718 -1) (0.488433 -0.254628 -1) (0.518679 -0.253349 -1) (0.548713 -0.251914 -1) (0.578434 -0.250351 -1) (0.607748 -0.248674 -1) (0.636577 -0.246886 -1) (0.66486 -0.244968 -1) (0.692562 -0.242885 -1) (0.719669 -0.240578 -1) (0.746189 -0.237966 -1) (0.772151 -0.234947 -1) (0.797592 -0.231403 -1) (0.822555 -0.227199 -1) (0.847078 -0.222185 -1) (0.871191 -0.216199 -1) (0.894905 -0.209064 -1) (0.918211 -0.200582 -1) (0.941068 -0.19053 -1) (0.963394 -0.178649 -1) (0.985046 -0.164632 -1) (1.00579 -0.148108 -1) (1.02526 -0.128628 -1) (1.04286 -0.105662 -1) (1.05763 -0.0786496 -1) (1.06841 -0.0470934 -1) (1.06891 -0.0146734 -1) (1.07049 0.0474348 -1) (1.05988 0.0794238 -1) (1.04522 0.106938 -1) (1.02766 0.130421 -1) (1.00817 0.150405 -1) (0.987339 0.167408 -1) (0.965566 0.181873 -1) (0.943089 0.194167 -1) (0.920059 0.204597 -1) (0.896567 0.213421 -1) (0.872661 0.220861 -1) (0.848358 0.227114 -1) (0.823652 0.232359 -1) (0.798519 0.236758 -1) (0.772926 0.24046 -1) (0.746833 0.243602 -1) (0.720203 0.246303 -1) (0.693011 0.24867 -1) (0.665243 0.250786 -1) (0.636911 0.252715 -1) (0.608045 0.2545 -1) (0.578702 0.25616 -1) (0.548956 0.257699 -1) (0.518895 0.259104 -1) (0.48862 0.260349 -1) (0.458231 0.261402 -1) (0.427831 0.262219 -1) (0.397513 0.262751 -1) (0.367362 0.26294 -1) (0.337449 0.262719 -1) (0.307828 0.262012 -1) (0.27854 0.260728 -1) (0.249609 0.258765 -1) (0.22105 0.256006 -1) (0.192872 0.252319 -1) (0.165083 0.247558 -1) (0.1377 0.241559 -1) (0.110753 0.234143 -1) (0.0842958 0.225111 -1) (0.0584191 0.214244 -1) (0.0332594 0.201302 -1) (0.00901947 0.18602 -1) (-0.0140078 0.16812 -1) (-0.035407 0.147319 -1) (-0.0546025 0.123376 -1) (-0.0708276 0.0961817 -1) (-0.0831379 0.0659339 -1) (-0.0905521 0.0334377 -1) (-0.0929105 4.20128e-19 -1) (-0.0905521 -0.0334377 -1) (-0.0831379 -0.0659339 -1) (-0.0708276 -0.0961817 -1) (-0.0546025 -0.123376 -1) (-0.035407 -0.147319 -1) (-0.0140078 -0.16812 -1) (0.00901947 -0.18602 -1) (0.0332594 -0.201302 -1) (0.0584191 -0.214244 -1) (0.0842958 -0.225111 -1) (0.110753 -0.234143 -1) (0.1377 -0.241559 -1) (0.165083 -0.247558 -1) (0.192872 -0.252319 -1) (0.22105 -0.256006 -1) (0.249609 -0.258765 -1) (0.27854 -0.260728 -1) (0.307828 -0.262012 -1) (0.337449 -0.262719 -1) (0.367362 -0.26294 -1) (0.397513 -0.262751 -1) (0.427831 -0.262219 -1) (0.458231 -0.261402 -1) (0.48862 -0.260349 -1) (0.518895 -0.259104 -1) (0.548956 -0.257699 -1) (0.578702 -0.25616 -1) (0.608045 -0.2545 -1) (0.636911 -0.252715 -1) (0.665243 -0.250786 -1) (0.693011 -0.24867 -1) (0.720203 -0.246303 -1) (0.746833 -0.243602 -1) (0.772926 -0.24046 -1) (0.798519 -0.236758 -1) (0.823652 -0.232359 -1) (0.848358 -0.227114 -1) (0.872661 -0.220861 -1) (0.896567 -0.213421 -1) (0.920059 -0.204597 -1) (0.943089 -0.194167 -1) (0.965566 -0.181873 -1) (0.987339 -0.167408 -1) (1.00817 -0.150405 -1) (1.02766 -0.130421 -1) (1.04522 -0.106938 -1) (1.05988 -0.0794238 -1) (1.07049 -0.0474348 -1) (1.07084 -0.0147599 -1) (1.07261 0.0477751 -1) (1.06218 0.0801946 -1) (1.04764 0.108211 -1) (1.03012 0.132214 -1) (1.0106 0.152708 -1) (0.989699 0.170198 -1) (0.967809 0.185118 -1) (0.945182 0.197834 -1) (0.921981 0.208651 -1) (0.898303 0.217825 -1) (0.874203 0.22558 -1) (0.849706 0.232113 -1) (0.824812 0.237599 -1) (0.799503 0.242203 -1) (0.773751 0.246073 -1) (0.747519 0.249347 -1) (0.720773 0.252147 -1) (0.693486 0.254581 -1) (0.665646 0.256738 -1) (0.637258 0.258685 -1) (0.608351 0.260469 -1) (0.578974 0.262115 -1) (0.549199 0.263631 -1) (0.519109 0.265005 -1) (0.488801 0.266215 -1) (0.458374 0.267227 -1) (0.427926 0.267999 -1) (0.397549 0.268478 -1) (0.367324 0.268605 -1) (0.337321 0.268311 -1) (0.307592 0.267514 -1) (0.278177 0.266122 -1) (0.2491 0.264029 -1) (0.220377 0.261116 -1) (0.192019 0.257248 -1) (0.164037 0.252276 -1) (0.136453 0.246035 -1) (0.109302 0.238345 -1) (0.0826447 0.229007 -1) (0.0565776 0.217802 -1) (0.0312447 0.20449 -1) (0.00685673 0.18881 -1) (-0.0162854 0.170487 -1) (-0.0377586 0.149246 -1) (-0.0569818 0.124857 -1) (-0.0731884 0.0972292 -1) (-0.0854455 0.0665823 -1) (-0.0928002 0.0337398 -1) (-0.0951319 3.65918e-19 -1) (-0.0928002 -0.0337398 -1) (-0.0854455 -0.0665823 -1) (-0.0731884 -0.0972292 -1) (-0.0569818 -0.124857 -1) (-0.0377586 -0.149246 -1) (-0.0162854 -0.170487 -1) (0.00685673 -0.18881 -1) (0.0312447 -0.20449 -1) (0.0565776 -0.217802 -1) (0.0826447 -0.229007 -1) (0.109302 -0.238345 -1) (0.136453 -0.246035 -1) (0.164037 -0.252276 -1) (0.192019 -0.257248 -1) (0.220377 -0.261116 -1) (0.2491 -0.264029 -1) (0.278177 -0.266122 -1) (0.307592 -0.267514 -1) (0.337321 -0.268311 -1) (0.367324 -0.268605 -1) (0.397549 -0.268478 -1) (0.427926 -0.267999 -1) (0.458374 -0.267227 -1) (0.488801 -0.266215 -1) (0.519109 -0.265005 -1) (0.549199 -0.263631 -1) (0.578974 -0.262115 -1) (0.608351 -0.260469 -1) (0.637258 -0.258685 -1) (0.665646 -0.256738 -1) (0.693486 -0.254581 -1) (0.720773 -0.252147 -1) (0.747519 -0.249347 -1) (0.773751 -0.246073 -1) (0.799503 -0.242203 -1) (0.824812 -0.237599 -1) (0.849706 -0.232113 -1) (0.874203 -0.22558 -1) (0.898303 -0.217825 -1) (0.921981 -0.208651 -1) (0.945182 -0.197834 -1) (0.967809 -0.185118 -1) (0.989699 -0.170198 -1) (1.0106 -0.152708 -1) (1.03012 -0.132214 -1) (1.04764 -0.108211 -1) (1.06218 -0.0801946 -1) (1.07261 -0.0477751 -1) (1.07284 -0.0148463 -1) (1.07479 0.0481143 -1) (1.06453 0.0809621 -1) (1.0501 0.109481 -1) (1.03264 0.134007 -1) (1.0131 0.155018 -1) (0.992129 0.173 -1) (0.970124 0.188384 -1) (0.947351 0.201531 -1) (0.923978 0.212744 -1) (0.900113 0.222279 -1) (0.875819 0.230359 -1) (0.851125 0.23718 -1) (0.826039 0.242919 -1) (0.800548 0.247738 -1) (0.774629 0.251787 -1) (0.748251 0.255203 -1) (0.72138 0.258112 -1) (0.693992 0.260622 -1) (0.666071 0.262826 -1) (0.63762 0.264796 -1) (0.608665 0.266584 -1) (0.579251 0.268219 -1) (0.549442 0.269712 -1) (0.519321 0.271056 -1) (0.488978 0.272229 -1) (0.458509 0.273198 -1) (0.428009 0.27392 -1) (0.397569 0.274343 -1) (0.367266 0.274403 -1) (0.337168 0.274028 -1) (0.307326 0.273135 -1) (0.277778 0.271628 -1) (0.248549 0.269397 -1) (0.219657 0.266321 -1) (0.191114 0.262262 -1) (0.162936 0.25707 -1) (0.135147 0.250578 -1) (0.10779 0.242606 -1) (0.0809311 0.232953 -1) (0.054673 0.221401 -1) (0.0291675 0.207712 -1) (0.00463284 0.191626 -1) (-0.018622 0.172873 -1) (-0.0401666 0.151186 -1) (-0.0594148 0.126347 -1) (-0.0756007 0.0982822 -1) (-0.0878033 0.0672341 -1) (-0.0950983 0.0340437 -1) (-0.0974036 3.65918e-19 -1) (-0.0950983 -0.0340437 -1) (-0.0878033 -0.0672341 -1) (-0.0756007 -0.0982822 -1) (-0.0594148 -0.126347 -1) (-0.0401666 -0.151186 -1) (-0.018622 -0.172873 -1) (0.00463284 -0.191626 -1) (0.0291675 -0.207712 -1) (0.054673 -0.221401 -1) (0.0809311 -0.232953 -1) (0.10779 -0.242606 -1) (0.135147 -0.250578 -1) (0.162936 -0.25707 -1) (0.191114 -0.262262 -1) (0.219657 -0.266321 -1) (0.248549 -0.269397 -1) (0.277778 -0.271628 -1) (0.307326 -0.273135 -1) (0.337168 -0.274028 -1) (0.367266 -0.274403 -1) (0.397569 -0.274343 -1) (0.428009 -0.27392 -1) (0.458509 -0.273198 -1) (0.488978 -0.272229 -1) (0.519321 -0.271056 -1) (0.549442 -0.269712 -1) (0.579251 -0.268219 -1) (0.608665 -0.266584 -1) (0.63762 -0.264796 -1) (0.666071 -0.262826 -1) (0.693992 -0.260622 -1) (0.72138 -0.258112 -1) (0.748251 -0.255203 -1) (0.774629 -0.251787 -1) (0.800548 -0.247738 -1) (0.826039 -0.242919 -1) (0.851125 -0.23718 -1) (0.875819 -0.230359 -1) (0.900113 -0.222279 -1) (0.923978 -0.212744 -1) (0.947351 -0.201531 -1) (0.970124 -0.188384 -1) (0.992129 -0.173 -1) (1.0131 -0.155018 -1) (1.03264 -0.134007 -1) (1.0501 -0.109481 -1) (1.06453 -0.0809621 -1) (1.07479 -0.0481143 -1) (1.07488 -0.0149329 -1) (1.07702 0.0484527 -1) (1.06693 0.0817264 -1) (1.05263 0.110748 -1) (1.03521 0.135801 -1) (1.01567 0.157332 -1) (0.994629 0.175815 -1) (0.972513 0.19167 -1) (0.949595 0.205256 -1) (0.926053 0.216875 -1) (0.902001 0.226781 -1) (0.87751 0.235196 -1) (0.852617 0.242316 -1) (0.827334 0.248318 -1) (0.801656 0.253363 -1) (0.775565 0.257601 -1) (0.749032 0.26117 -1) (0.722029 0.264197 -1) (0.694529 0.266792 -1) (0.666519 0.269052 -1) (0.637999 0.271052 -1) (0.60899 0.272848 -1) (0.579532 0.274475 -1) (0.549687 0.275946 -1) (0.519529 0.277259 -1) (0.489148 0.278393 -1) (0.458634 0.279317 -1) (0.42808 0.279986 -1) (0.397572 0.280347 -1) (0.367186 0.280334 -1) (0.336988 0.279873 -1) (0.307027 0.278877 -1) (0.277341 0.277246 -1) (0.247955 0.274869 -1) (0.218888 0.271621 -1) (0.190155 0.267362 -1) (0.161776 0.261941 -1) (0.13378 0.25519 -1) (0.106215 0.246925 -1) (0.079153 0.236949 -1) (0.0527038 0.225042 -1) (0.0270262 0.210966 -1) (0.00234633 0.194468 -1) (-0.0210191 0.175278 -1) (-0.0426325 0.153139 -1) (-0.0619029 0.127846 -1) (-0.0780658 0.0993408 -1) (-0.0902127 0.0678894 -1) (-0.0974479 0.0343495 -1) (-0.099727 2.03288e-19 -1) (-0.0974479 -0.0343495 -1) (-0.0902127 -0.0678894 -1) (-0.0780658 -0.0993408 -1) (-0.0619029 -0.127846 -1) (-0.0426325 -0.153139 -1) (-0.0210191 -0.175278 -1) (0.00234633 -0.194468 -1) (0.0270262 -0.210966 -1) (0.0527038 -0.225042 -1) (0.079153 -0.236949 -1) (0.106215 -0.246925 -1) (0.13378 -0.25519 -1) (0.161776 -0.261941 -1) (0.190155 -0.267362 -1) (0.218888 -0.271621 -1) (0.247955 -0.274869 -1) (0.277341 -0.277246 -1) (0.307027 -0.278877 -1) (0.336988 -0.279873 -1) (0.367186 -0.280334 -1) (0.397572 -0.280347 -1) (0.42808 -0.279986 -1) (0.458634 -0.279317 -1) (0.489148 -0.278393 -1) (0.519529 -0.277259 -1) (0.549687 -0.275946 -1) (0.579532 -0.274475 -1) (0.60899 -0.272848 -1) (0.637999 -0.271052 -1) (0.666519 -0.269052 -1) (0.694529 -0.266792 -1) (0.722029 -0.264197 -1) (0.749032 -0.26117 -1) (0.775565 -0.257601 -1) (0.801656 -0.253363 -1) (0.827334 -0.248318 -1) (0.852617 -0.242316 -1) (0.87751 -0.235196 -1) (0.902001 -0.226781 -1) (0.926053 -0.216875 -1) (0.949595 -0.205256 -1) (0.972513 -0.19167 -1) (0.994629 -0.175815 -1) (1.01567 -0.157332 -1) (1.03521 -0.135801 -1) (1.05263 -0.110748 -1) (1.06693 -0.0817264 -1) (1.07702 -0.0484527 -1) (1.07699 -0.0150195 -1) (1.0793 0.0487905 -1) (1.06939 0.0824876 -1) (1.05521 0.112012 -1) (1.03785 0.137595 -1) (1.0183 0.159653 -1) (0.997201 0.178642 -1) (0.974978 0.194977 -1) (0.951918 0.209011 -1) (0.928207 0.221045 -1) (0.903969 0.231331 -1) (0.87928 0.240092 -1) (0.854184 0.247521 -1) (0.828701 0.253796 -1) (0.802831 0.259078 -1) (0.77656 0.263516 -1) (0.749865 0.267249 -1) (0.722721 0.270404 -1) (0.695102 0.273094 -1) (0.666995 0.275417 -1) (0.638398 0.277454 -1) (0.609327 0.279264 -1) (0.57982 0.280885 -1) (0.549932 0.282337 -1) (0.519735 0.283618 -1) (0.489311 0.284713 -1) (0.458748 0.285588 -1) (0.428135 0.2862 -1) (0.397555 0.286494 -1) (0.367082 0.286403 -1) (0.336779 0.285848 -1) (0.306693 0.284741 -1) (0.276863 0.282979 -1) (0.247314 0.280447 -1) (0.218067 0.277018 -1) (0.18914 0.27255 -1) (0.160556 0.266891 -1) (0.13235 0.25987 -1) (0.104575 0.251304 -1) (0.0773085 0.240995 -1) (0.0506679 0.228724 -1) (0.0248191 0.214255 -1) (-4.34595e-06 0.197335 -1) (-0.023478 0.177702 -1) (-0.0451575 0.155106 -1) (-0.0644474 0.129353 -1) (-0.080585 0.100405 -1) (-0.092675 0.0685483 -1) (-0.0998504 0.0346572 -1) (-0.102103 1.49078e-19 -1) (-0.0998504 -0.0346572 -1) (-0.092675 -0.0685483 -1) (-0.080585 -0.100405 -1) (-0.0644474 -0.129353 -1) (-0.0451575 -0.155106 -1) (-0.023478 -0.177702 -1) (-4.34595e-06 -0.197335 -1) (0.0248191 -0.214255 -1) (0.0506679 -0.228724 -1) (0.0773085 -0.240995 -1) (0.104575 -0.251304 -1) (0.13235 -0.25987 -1) (0.160556 -0.266891 -1) (0.18914 -0.27255 -1) (0.218067 -0.277018 -1) (0.247314 -0.280447 -1) (0.276863 -0.282979 -1) (0.306693 -0.284741 -1) (0.336779 -0.285848 -1) (0.367082 -0.286403 -1) (0.397555 -0.286494 -1) (0.428135 -0.2862 -1) (0.458748 -0.285588 -1) (0.489311 -0.284713 -1) (0.519735 -0.283618 -1) (0.549932 -0.282337 -1) (0.57982 -0.280885 -1) (0.609327 -0.279264 -1) (0.638398 -0.277454 -1) (0.666995 -0.275417 -1) (0.695102 -0.273094 -1) (0.722721 -0.270404 -1) (0.749865 -0.267249 -1) (0.77656 -0.263516 -1) (0.802831 -0.259078 -1) (0.828701 -0.253796 -1) (0.854184 -0.247521 -1) (0.87928 -0.240092 -1) (0.903969 -0.231331 -1) (0.928207 -0.221045 -1) (0.951918 -0.209011 -1) (0.974978 -0.194977 -1) (0.997201 -0.178642 -1) (1.0183 -0.159653 -1) (1.03785 -0.137595 -1) (1.05521 -0.112012 -1) (1.06939 -0.0824876 -1) (1.0793 -0.0487905 -1) (1.07915 -0.0151065 -1) (1.08164 0.0491277 -1) (1.0719 0.083246 -1) (1.05785 0.113274 -1) (1.04056 0.139389 -1) (1.02101 0.161978 -1) (0.999846 0.181481 -1) (0.97752 0.198304 -1) (0.95432 0.212795 -1) (0.930443 0.225253 -1) (0.906018 0.23593 -1) (0.88113 0.245046 -1) (0.85583 0.252795 -1) (0.830143 0.259354 -1) (0.804075 0.264884 -1) (0.777618 0.269532 -1) (0.750754 0.27344 -1) (0.72346 0.276733 -1) (0.695713 0.279527 -1) (0.6675 0.281923 -1) (0.638817 0.284003 -1) (0.609678 0.285832 -1) (0.580115 0.287452 -1) (0.550179 0.288886 -1) (0.519936 0.290137 -1) (0.489465 0.29119 -1) (0.458849 0.292014 -1) (0.428173 0.292565 -1) (0.397517 0.292787 -1) (0.366951 0.29261 -1) (0.336537 0.291955 -1) (0.306322 0.290729 -1) (0.276342 0.288827 -1) (0.246624 0.286132 -1) (0.217192 0.282512 -1) (0.188066 0.277827 -1) (0.159274 0.271919 -1) (0.130855 0.264619 -1) (0.102867 0.255743 -1) (0.0753956 0.245092 -1) (0.0485638 0.232448 -1) (0.0225446 0.217577 -1) (-0.00242077 0.200228 -1) (-0.0260004 0.180146 -1) (-0.0477431 0.157086 -1) (-0.0670497 0.130869 -1) (-0.0831598 0.101475 -1) (-0.0951916 0.0692109 -1) (-0.102307 0.0349668 -1) (-0.104535 9.48677e-20 -1) (-0.102307 -0.0349668 -1) (-0.0951916 -0.0692109 -1) (-0.0831598 -0.101475 -1) (-0.0670497 -0.130869 -1) (-0.0477431 -0.157086 -1) (-0.0260004 -0.180146 -1) (-0.00242077 -0.200228 -1) (0.0225446 -0.217577 -1) (0.0485638 -0.232448 -1) (0.0753956 -0.245092 -1) (0.102867 -0.255743 -1) (0.130855 -0.264619 -1) (0.159274 -0.271919 -1) (0.188066 -0.277827 -1) (0.217192 -0.282512 -1) (0.246624 -0.286132 -1) (0.276342 -0.288827 -1) (0.306322 -0.290729 -1) (0.336537 -0.291955 -1) (0.366951 -0.29261 -1) (0.397517 -0.292787 -1) (0.428173 -0.292565 -1) (0.458849 -0.292014 -1) (0.489465 -0.29119 -1) (0.519936 -0.290137 -1) (0.550179 -0.288886 -1) (0.580115 -0.287452 -1) (0.609678 -0.285832 -1) (0.638817 -0.284003 -1) (0.6675 -0.281923 -1) (0.695713 -0.279527 -1) (0.72346 -0.276733 -1) (0.750754 -0.27344 -1) (0.777618 -0.269532 -1) (0.804075 -0.264884 -1) (0.830143 -0.259354 -1) (0.85583 -0.252795 -1) (0.88113 -0.245046 -1) (0.906018 -0.23593 -1) (0.930443 -0.225253 -1) (0.95432 -0.212795 -1) (0.97752 -0.198304 -1) (0.999846 -0.181481 -1) (1.02101 -0.161978 -1) (1.04056 -0.139389 -1) (1.05785 -0.113274 -1) (1.0719 -0.083246 -1) (1.08164 -0.0491277 -1) (1.08137 -0.0151937 -1) (1.08404 0.0494646 -1) (1.07447 0.0840016 -1) (1.06054 0.114532 -1) (1.04333 0.141183 -1) (1.02378 0.164309 -1) (1.00257 0.184333 -1) (0.980141 0.201651 -1) (0.956805 0.216608 -1) (0.932762 0.229499 -1) (0.908151 0.240576 -1) (0.883063 0.250058 -1) (0.857556 0.258138 -1) (0.831662 0.264992 -1) (0.805391 0.27078 -1) (0.778743 0.275651 -1) (0.751702 0.279743 -1) (0.724249 0.283185 -1) (0.696366 0.286094 -1) (0.668038 0.288571 -1) (0.63926 0.290702 -1) (0.610044 0.292556 -1) (0.580418 0.294179 -1) (0.550427 0.295598 -1) (0.520134 0.296818 -1) (0.489611 0.297828 -1) (0.458937 0.298598 -1) (0.428193 0.299084 -1) (0.397454 0.299228 -1) (0.366791 0.29896 -1) (0.33626 0.298197 -1) (0.305909 0.296844 -1) (0.275773 0.294793 -1) (0.245882 0.291925 -1) (0.21626 0.288106 -1) (0.18693 0.283192 -1) (0.157926 0.277026 -1) (0.129291 0.269438 -1) (0.10109 0.260242 -1) (0.0734124 0.24924 -1) (0.0463894 0.236214 -1) (0.0202009 0.220933 -1) (-0.00490456 0.203148 -1) (-0.0285876 0.182608 -1) (-0.0503908 0.15908 -1) (-0.0697113 0.132395 -1) (-0.0857915 0.102551 -1) (-0.0977642 0.0698774 -1) (-0.10482 0.0352785 -1) (-0.107022 2.03288e-19 -1) (-0.10482 -0.0352785 -1) (-0.0977642 -0.0698774 -1) (-0.0857915 -0.102551 -1) (-0.0697113 -0.132395 -1) (-0.0503908 -0.15908 -1) (-0.0285876 -0.182608 -1) (-0.00490456 -0.203148 -1) (0.0202009 -0.220933 -1) (0.0463894 -0.236214 -1) (0.0734124 -0.24924 -1) (0.10109 -0.260242 -1) (0.129291 -0.269438 -1) (0.157926 -0.277026 -1) (0.18693 -0.283192 -1) (0.21626 -0.288106 -1) (0.245882 -0.291925 -1) (0.275773 -0.294793 -1) (0.305909 -0.296844 -1) (0.33626 -0.298197 -1) (0.366791 -0.29896 -1) (0.397454 -0.299228 -1) (0.428193 -0.299084 -1) (0.458937 -0.298598 -1) (0.489611 -0.297828 -1) (0.520134 -0.296818 -1) (0.550427 -0.295598 -1) (0.580418 -0.294179 -1) (0.610044 -0.292556 -1) (0.63926 -0.290702 -1) (0.668038 -0.288571 -1) (0.696366 -0.286094 -1) (0.724249 -0.283185 -1) (0.751702 -0.279743 -1) (0.778743 -0.275651 -1) (0.805391 -0.27078 -1) (0.831662 -0.264992 -1) (0.857556 -0.258138 -1) (0.883063 -0.250058 -1) (0.908151 -0.240576 -1) (0.932762 -0.229499 -1) (0.956805 -0.216608 -1) (0.980141 -0.201651 -1) (1.00257 -0.184333 -1) (1.02378 -0.164309 -1) (1.04333 -0.141183 -1) (1.06054 -0.114532 -1) (1.07447 -0.0840016 -1) (1.08404 -0.0494646 -1) (1.08365 -0.0152814 -1) (1.08649 0.0498013 -1) (1.07709 0.0847548 -1) (1.0633 0.115789 -1) (1.04616 0.142978 -1) (1.02662 0.166645 -1) (1.00536 0.187196 -1) (0.982843 0.205017 -1) (0.959373 0.220449 -1) (0.935167 0.233783 -1) (0.91037 0.24527 -1) (0.885082 0.255128 -1) (0.859366 0.26355 -1) (0.833261 0.27071 -1) (0.806783 0.276767 -1) (0.779936 0.281871 -1) (0.752711 0.286159 -1) (0.725092 0.289761 -1) (0.697063 0.292794 -1) (0.66861 0.295361 -1) (0.639729 0.297552 -1) (0.610427 0.299437 -1) (0.58073 0.301068 -1) (0.550678 0.302473 -1) (0.520328 0.303664 -1) (0.489747 0.30463 -1) (0.459009 0.305343 -1) (0.428191 0.305759 -1) (0.397366 0.30582 -1) (0.366598 0.305454 -1) (0.335945 0.304576 -1) (0.305452 0.303087 -1) (0.275155 0.300879 -1) (0.245085 0.297827 -1) (0.215267 0.293799 -1) (0.18573 0.288647 -1) (0.156511 0.282214 -1) (0.127658 0.274327 -1) (0.0992403 0.264802 -1) (0.0713566 0.253439 -1) (0.0441428 0.240023 -1) (0.0177861 0.224322 -1) (-0.0074574 0.206094 -1) (-0.0312414 0.185091 -1) (-0.0531021 0.161087 -1) (-0.0724336 0.13393 -1) (-0.0884819 0.103633 -1) (-0.100394 0.0705477 -1) (-0.10739 0.0355922 -1) (-0.109567 9.48677e-20 -1) (-0.10739 -0.0355922 -1) (-0.100394 -0.0705477 -1) (-0.0884819 -0.103633 -1) (-0.0724336 -0.13393 -1) (-0.0531021 -0.161087 -1) (-0.0312414 -0.185091 -1) (-0.0074574 -0.206094 -1) (0.0177861 -0.224322 -1) (0.0441428 -0.240023 -1) (0.0713566 -0.253439 -1) (0.0992403 -0.264802 -1) (0.127658 -0.274327 -1) (0.156511 -0.282214 -1) (0.18573 -0.288647 -1) (0.215267 -0.293799 -1) (0.245085 -0.297827 -1) (0.275155 -0.300879 -1) (0.305452 -0.303087 -1) (0.335945 -0.304576 -1) (0.366598 -0.305454 -1) (0.397366 -0.30582 -1) (0.428191 -0.305759 -1) (0.459009 -0.305343 -1) (0.489747 -0.30463 -1) (0.520328 -0.303664 -1) (0.550678 -0.302473 -1) (0.58073 -0.301068 -1) (0.610427 -0.299437 -1) (0.639729 -0.297552 -1) (0.66861 -0.295361 -1) (0.697063 -0.292794 -1) (0.725092 -0.289761 -1) (0.752711 -0.286159 -1) (0.779936 -0.281871 -1) (0.806783 -0.276767 -1) (0.833261 -0.27071 -1) (0.859366 -0.26355 -1) (0.885082 -0.255128 -1) (0.91037 -0.24527 -1) (0.935167 -0.233783 -1) (0.959373 -0.220449 -1) (0.982843 -0.205017 -1) (1.00536 -0.187196 -1) (1.02662 -0.166645 -1) (1.04616 -0.142978 -1) (1.0633 -0.115789 -1) (1.07709 -0.0847548 -1) (1.08649 -0.0498013 -1) (1.08599 -0.0153695 -1) (1.08901 0.0501382 -1) (1.07978 0.0855055 -1) (1.06613 0.117042 -1) (1.04906 0.144772 -1) (1.02954 0.168986 -1) (1.00824 0.190071 -1) (0.985627 0.208404 -1) (0.962026 0.224319 -1) (0.937659 0.238106 -1) (0.912678 0.250013 -1) (0.887189 0.260257 -1) (0.861263 0.269031 -1) (0.834943 0.276507 -1) (0.808254 0.282845 -1) (0.781203 0.288193 -1) (0.753786 0.292689 -1) (0.725993 0.296461 -1) (0.697809 0.299628 -1) (0.669221 0.302295 -1) (0.640226 0.304554 -1) (0.61083 0.306477 -1) (0.581053 0.30812 -1) (0.550932 0.309516 -1) (0.520517 0.310678 -1) (0.489872 0.311599 -1) (0.459064 0.312252 -1) (0.428167 0.312594 -1) (0.397248 0.312566 -1) (0.366371 0.312095 -1) (0.335589 0.311093 -1) (0.304948 0.30946 -1) (0.274484 0.307084 -1) (0.244229 0.303841 -1) (0.214211 0.299593 -1) (0.184463 0.294194 -1) (0.155025 0.287482 -1) (0.125951 0.279287 -1) (0.0973169 0.269423 -1) (0.0692263 0.25769 -1) (0.041822 0.243874 -1) (0.0152986 0.227747 -1) (-0.010081 0.209066 -1) (-0.0339632 0.187592 -1) (-0.0558785 0.163108 -1) (-0.0752182 0.135474 -1) (-0.0912322 0.104722 -1) (-0.103083 0.0712221 -1) (-0.11002 0.0359082 -1) (-0.112171 -1.35525e-20 -1) (-0.11002 -0.0359082 -1) (-0.103083 -0.0712221 -1) (-0.0912322 -0.104722 -1) (-0.0752182 -0.135474 -1) (-0.0558785 -0.163108 -1) (-0.0339632 -0.187592 -1) (-0.010081 -0.209066 -1) (0.0152986 -0.227747 -1) (0.041822 -0.243874 -1) (0.0692263 -0.25769 -1) (0.0973169 -0.269423 -1) (0.125951 -0.279287 -1) (0.155025 -0.287482 -1) (0.184463 -0.294194 -1) (0.214211 -0.299593 -1) (0.244229 -0.303841 -1) (0.274484 -0.307084 -1) (0.304948 -0.30946 -1) (0.335589 -0.311093 -1) (0.366371 -0.312095 -1) (0.397248 -0.312566 -1) (0.428167 -0.312594 -1) (0.459064 -0.312252 -1) (0.489872 -0.311599 -1) (0.520517 -0.310678 -1) (0.550932 -0.309516 -1) (0.581053 -0.30812 -1) (0.61083 -0.306477 -1) (0.640226 -0.304554 -1) (0.669221 -0.302295 -1) (0.697809 -0.299628 -1) (0.725993 -0.296461 -1) (0.753786 -0.292689 -1) (0.781203 -0.288193 -1) (0.808254 -0.282845 -1) (0.834943 -0.276507 -1) (0.861263 -0.269031 -1) (0.887189 -0.260257 -1) (0.912678 -0.250013 -1) (0.937659 -0.238106 -1) (0.962026 -0.224319 -1) (0.985627 -0.208404 -1) (1.00824 -0.190071 -1) (1.02954 -0.168986 -1) (1.04906 -0.144772 -1) (1.06613 -0.117042 -1) (1.07978 -0.0855055 -1) (1.08901 -0.0501382 -1) (1.0884 -0.0154582 -1) (1.09159 0.0504753 -1) (1.08253 0.0862541 -1) (1.06901 0.118293 -1) (1.05203 0.146566 -1) (1.03253 0.171332 -1) (1.01119 0.192957 -1) (0.988495 0.211809 -1) (0.964767 0.228217 -1) (0.94024 0.242466 -1) (0.915076 0.254803 -1) (0.889386 0.265444 -1) (0.863248 0.274581 -1) (0.836711 0.282385 -1) (0.809806 0.289015 -1) (0.782545 0.294618 -1) (0.75493 0.299332 -1) (0.726953 0.303286 -1) (0.698605 0.306597 -1) (0.669874 0.309374 -1) (0.640756 0.311709 -1) (0.611255 0.313677 -1) (0.581388 0.315338 -1) (0.551189 0.316728 -1) (0.520703 0.317862 -1) (0.489985 0.318737 -1) (0.459101 0.319327 -1) (0.428117 0.319591 -1) (0.397099 0.319468 -1) (0.366105 0.318884 -1) (0.335189 0.317751 -1) (0.304393 0.315965 -1) (0.273757 0.313412 -1) (0.243311 0.309967 -1) (0.213089 0.30549 -1) (0.183125 0.299832 -1) (0.153466 0.292832 -1) (0.124169 0.284319 -1) (0.0953169 0.274105 -1) (0.0670191 0.261993 -1) (0.0394251 0.247769 -1) (0.0127363 0.231205 -1) (-0.0127772 0.212066 -1) (-0.0367549 0.190114 -1) (-0.0587217 0.165144 -1) (-0.0780667 0.137027 -1) (-0.0940444 0.105816 -1) (-0.105833 0.0719006 -1) (-0.11271 0.0362263 -1) (-0.114836 -1.76183e-19 -1) (-0.11271 -0.0362263 -1) (-0.105833 -0.0719006 -1) (-0.0940444 -0.105816 -1) (-0.0780667 -0.137027 -1) (-0.0587217 -0.165144 -1) (-0.0367549 -0.190114 -1) (-0.0127772 -0.212066 -1) (0.0127363 -0.231205 -1) (0.0394251 -0.247769 -1) (0.0670191 -0.261993 -1) (0.0953169 -0.274105 -1) (0.124169 -0.284319 -1) (0.153466 -0.292832 -1) (0.183125 -0.299832 -1) (0.213089 -0.30549 -1) (0.243311 -0.309967 -1) (0.273757 -0.313412 -1) (0.304393 -0.315965 -1) (0.335189 -0.317751 -1) (0.366105 -0.318884 -1) (0.397099 -0.319468 -1) (0.428117 -0.319591 -1) (0.459101 -0.319327 -1) (0.489985 -0.318737 -1) (0.520703 -0.317862 -1) (0.551189 -0.316728 -1) (0.581388 -0.315338 -1) (0.611255 -0.313677 -1) (0.640756 -0.311709 -1) (0.669874 -0.309374 -1) (0.698605 -0.306597 -1) (0.726953 -0.303286 -1) (0.75493 -0.299332 -1) (0.782545 -0.294618 -1) (0.809806 -0.289015 -1) (0.836711 -0.282385 -1) (0.863248 -0.274581 -1) (0.889386 -0.265444 -1) (0.915076 -0.254803 -1) (0.94024 -0.242466 -1) (0.964767 -0.228217 -1) (0.988495 -0.211809 -1) (1.01119 -0.192957 -1) (1.03253 -0.171332 -1) (1.05203 -0.146566 -1) (1.06901 -0.118293 -1) (1.08253 -0.0862541 -1) (1.09159 -0.0504753 -1) (1.09088 -0.0155477 -1) (1.09424 0.0508129 -1) (1.08534 0.0870007 -1) (1.07197 0.119542 -1) (1.05508 0.148361 -1) (1.0356 0.173682 -1) (1.01423 0.195855 -1) (0.991449 0.215234 -1) (0.967597 0.232143 -1) (0.942914 0.246863 -1) (0.917567 0.259641 -1) (0.891677 0.27069 -1) (0.865325 0.2802 -1) (0.838568 0.288342 -1) (0.811442 0.295276 -1) (0.783966 0.301145 -1) (0.756146 0.306089 -1) (0.727978 0.310235 -1) (0.699456 0.313703 -1) (0.670571 0.316599 -1) (0.641319 0.319018 -1) (0.611703 0.32104 -1) (0.581737 0.322724 -1) (0.551451 0.324111 -1) (0.520883 0.325219 -1) (0.490086 0.326047 -1) (0.459118 0.326572 -1) (0.428041 0.326753 -1) (0.396915 0.326529 -1) (0.365799 0.325825 -1) (0.334741 0.324551 -1) (0.303785 0.322603 -1) (0.27297 0.319864 -1) (0.242329 0.316206 -1) (0.211897 0.311489 -1) (0.181714 0.305563 -1) (0.15183 0.298265 -1) (0.122309 0.289422 -1) (0.0932379 0.27885 -1) (0.0647328 0.266349 -1) (0.0369499 0.251707 -1) (0.0100973 0.234699 -1) (-0.0155477 0.215092 -1) (-0.0396181 0.192656 -1) (-0.0616334 0.167193 -1) (-0.0809807 0.13859 -1) (-0.0969198 0.106917 -1) (-0.108645 0.0725833 -1) (-0.115462 0.0365467 -1) (-0.117565 -3.93023e-19 -1) (-0.115462 -0.0365467 -1) (-0.108645 -0.0725833 -1) (-0.0969198 -0.106917 -1) (-0.0809807 -0.13859 -1) (-0.0616334 -0.167193 -1) (-0.0396181 -0.192656 -1) (-0.0155477 -0.215092 -1) (0.0100973 -0.234699 -1) (0.0369499 -0.251707 -1) (0.0647328 -0.266349 -1) (0.0932379 -0.27885 -1) (0.122309 -0.289422 -1) (0.15183 -0.298265 -1) (0.181714 -0.305563 -1) (0.211897 -0.311489 -1) (0.242329 -0.316206 -1) (0.27297 -0.319864 -1) (0.303785 -0.322603 -1) (0.334741 -0.324551 -1) (0.365799 -0.325825 -1) (0.396915 -0.326529 -1) (0.428041 -0.326753 -1) (0.459118 -0.326572 -1) (0.490086 -0.326047 -1) (0.520883 -0.325219 -1) (0.551451 -0.324111 -1) (0.581737 -0.322724 -1) (0.611703 -0.32104 -1) (0.641319 -0.319018 -1) (0.670571 -0.316599 -1) (0.699456 -0.313703 -1) (0.727978 -0.310235 -1) (0.756146 -0.306089 -1) (0.783966 -0.301145 -1) (0.811442 -0.295276 -1) (0.838568 -0.288342 -1) (0.865325 -0.2802 -1) (0.891677 -0.27069 -1) (0.917567 -0.259641 -1) (0.942914 -0.246863 -1) (0.967597 -0.232143 -1) (0.991449 -0.215234 -1) (1.01423 -0.195855 -1) (1.0356 -0.173682 -1) (1.05508 -0.148361 -1) (1.07197 -0.119542 -1) (1.08534 -0.0870007 -1) (1.09424 -0.0508129 -1) (1.09342 -0.0156378 -1) (1.09695 0.0511512 -1) (1.08821 0.0877455 -1) (1.07499 0.120789 -1) (1.05819 0.150155 -1) (1.03875 0.176037 -1) (1.01735 0.198764 -1) (0.99449 0.218678 -1) (0.970519 0.236096 -1) (0.945682 0.251298 -1) (0.920154 0.264526 -1) (0.894062 0.275993 -1) (0.867496 0.285888 -1) (0.840517 0.29438 -1) (0.813167 0.301628 -1) (0.78547 0.307776 -1) (0.757437 0.312961 -1) (0.72907 0.317311 -1) (0.700365 0.320944 -1) (0.671316 0.32397 -1) (0.641919 0.326483 -1) (0.612177 0.328565 -1) (0.582102 0.330279 -1) (0.551718 0.331666 -1) (0.521059 0.332751 -1) (0.490173 0.333532 -1) (0.459113 0.333989 -1) (0.427934 0.334082 -1) (0.396695 0.333751 -1) (0.365448 0.33292 -1) (0.334242 0.331497 -1) (0.303119 0.329377 -1) (0.272119 0.326441 -1) (0.241278 0.32256 -1) (0.210632 0.317593 -1) (0.180227 0.311387 -1) (0.150116 0.30378 -1) (0.120368 0.294599 -1) (0.0910774 0.283657 -1) (0.0623651 0.270758 -1) (0.0343942 0.255688 -1) (0.0073796 0.238227 -1) (-0.0183946 0.218145 -1) (-0.0425547 0.195217 -1) (-0.0646152 0.169257 -1) (-0.0839621 0.140163 -1) (-0.0998604 0.108025 -1) (-0.111521 0.0732705 -1) (-0.118279 0.0368695 -1) (-0.120357 -7.18284e-19 -1) (-0.118279 -0.0368695 -1) (-0.111521 -0.0732705 -1) (-0.0998604 -0.108025 -1) (-0.0839621 -0.140163 -1) (-0.0646152 -0.169257 -1) (-0.0425547 -0.195217 -1) (-0.0183946 -0.218145 -1) (0.0073796 -0.238227 -1) (0.0343942 -0.255688 -1) (0.0623651 -0.270758 -1) (0.0910774 -0.283657 -1) (0.120368 -0.294599 -1) (0.150116 -0.30378 -1) (0.180227 -0.311387 -1) (0.210632 -0.317593 -1) (0.241278 -0.32256 -1) (0.272119 -0.326441 -1) (0.303119 -0.329377 -1) (0.334242 -0.331497 -1) (0.365448 -0.33292 -1) (0.396695 -0.333751 -1) (0.427934 -0.334082 -1) (0.459113 -0.333989 -1) (0.490173 -0.333532 -1) (0.521059 -0.332751 -1) (0.551718 -0.331666 -1) (0.582102 -0.330279 -1) (0.612177 -0.328565 -1) (0.641919 -0.326483 -1) (0.671316 -0.32397 -1) (0.700365 -0.320944 -1) (0.72907 -0.317311 -1) (0.757437 -0.312961 -1) (0.78547 -0.307776 -1) (0.813167 -0.301628 -1) (0.840517 -0.29438 -1) (0.867496 -0.285888 -1) (0.894062 -0.275993 -1) (0.920154 -0.264526 -1) (0.945682 -0.251298 -1) (0.970519 -0.236096 -1) (0.99449 -0.218678 -1) (1.01735 -0.198764 -1) (1.03875 -0.176037 -1) (1.05819 -0.150155 -1) (1.07499 -0.120789 -1) (1.08821 -0.0877455 -1) (1.09695 -0.0511512 -1) (1.09604 -0.0157289 -1) (1.09973 0.0514903 -1) (1.09116 0.0884888 -1) (1.07808 0.122033 -1) (1.06138 0.151949 -1) (1.04197 0.178397 -1) (1.02055 0.201683 -1) (0.997622 0.22214 -1) (0.973534 0.240078 -1) (0.948545 0.255771 -1) (0.922839 0.269459 -1) (0.896546 0.281355 -1) (0.869764 0.291645 -1) (0.842561 0.300499 -1) (0.814982 0.308072 -1) (0.787059 0.31451 -1) (0.758808 0.319947 -1) (0.730233 0.324512 -1) (0.701336 0.328323 -1) (0.672113 0.331488 -1) (0.64256 0.334105 -1) (0.61268 0.336255 -1) (0.582484 0.338004 -1) (0.55199 0.339397 -1) (0.521231 0.340459 -1) (0.490247 0.341193 -1) (0.459084 0.34158 -1) (0.427796 0.34158 -1) (0.396434 0.341136 -1) (0.365049 0.340169 -1) (0.333688 0.338589 -1) (0.302393 0.336287 -1) (0.271202 0.333145 -1) (0.240155 0.329031 -1) (0.209292 0.323802 -1) (0.178661 0.317306 -1) (0.14832 0.30938 -1) (0.118344 0.299849 -1) (0.0888327 0.288528 -1) (0.0599136 0.275219 -1) (0.0317558 0.259714 -1) (0.00458109 0.241791 -1) (-0.0213196 0.221225 -1) (-0.0455664 0.197799 -1) (-0.0676691 0.171335 -1) (-0.0870124 0.141746 -1) (-0.102868 0.109139 -1) (-0.114464 0.0739621 -1) (-0.121162 0.0371946 -1) (-0.123216 -9.89334e-19 -1) (-0.121162 -0.0371946 -1) (-0.114464 -0.0739621 -1) (-0.102868 -0.109139 -1) (-0.0870124 -0.141746 -1) (-0.0676691 -0.171335 -1) (-0.0455664 -0.197799 -1) (-0.0213196 -0.221225 -1) (0.00458109 -0.241791 -1) (0.0317558 -0.259714 -1) (0.0599136 -0.275219 -1) (0.0888327 -0.288528 -1) (0.118344 -0.299849 -1) (0.14832 -0.30938 -1) (0.178661 -0.317306 -1) (0.209292 -0.323802 -1) (0.240155 -0.329031 -1) (0.271202 -0.333145 -1) (0.302393 -0.336287 -1) (0.333688 -0.338589 -1) (0.365049 -0.340169 -1) (0.396434 -0.341136 -1) (0.427796 -0.34158 -1) (0.459084 -0.34158 -1) (0.490247 -0.341193 -1) (0.521231 -0.340459 -1) (0.55199 -0.339397 -1) (0.582484 -0.338004 -1) (0.61268 -0.336255 -1) (0.64256 -0.334105 -1) (0.672113 -0.331488 -1) (0.701336 -0.328323 -1) (0.730233 -0.324512 -1) (0.758808 -0.319947 -1) (0.787059 -0.31451 -1) (0.814982 -0.308072 -1) (0.842561 -0.300499 -1) (0.869764 -0.291645 -1) (0.896546 -0.281355 -1) (0.922839 -0.269459 -1) (0.948545 -0.255771 -1) (0.973534 -0.240078 -1) (0.997622 -0.22214 -1) (1.02055 -0.201683 -1) (1.04197 -0.178397 -1) (1.06138 -0.151949 -1) (1.07808 -0.122033 -1) (1.09116 -0.0884888 -1) (1.09973 -0.0514903 -1) (1.09873 -0.0158209 -1) (1.10258 0.0518306 -1) (1.09417 0.0892307 -1) (1.08124 0.123275 -1) (1.06465 0.153743 -1) (1.04528 0.18076 -1) (1.02385 0.204614 -1) (1.00085 0.225622 -1) (0.976645 0.244087 -1) (0.951508 0.26028 -1) (0.925623 0.274439 -1) (0.899131 0.286774 -1) (0.872132 0.297471 -1) (0.844702 0.306697 -1) (0.816892 0.314608 -1) (0.788738 0.321347 -1) (0.760261 0.327048 -1) (0.731471 0.331839 -1) (0.702372 0.335838 -1) (0.672963 0.339154 -1) (0.643243 0.341883 -1) (0.613214 0.344109 -1) (0.582885 0.3459 -1) (0.552271 0.347303 -1) (0.521399 0.348345 -1) (0.490305 0.349032 -1) (0.459031 0.349346 -1) (0.427623 0.34925 -1) (0.396131 0.348686 -1) (0.3646 0.347577 -1) (0.333076 0.345829 -1) (0.301601 0.343336 -1) (0.270214 0.339977 -1) (0.238957 0.335619 -1) (0.207872 0.330118 -1) (0.177011 0.323321 -1) (0.146438 0.315064 -1) (0.116234 0.305172 -1) (0.0865014 0.293462 -1) (0.0573758 0.279735 -1) (0.0290324 0.263783 -1) (0.00169965 0.24539 -1) (-0.0243249 0.224332 -1) (-0.0486553 0.200401 -1) (-0.0707968 0.173427 -1) (-0.0901337 0.143339 -1) (-0.105944 0.11026 -1) (-0.117474 0.0746583 -1) (-0.124113 0.0375223 -1) (-0.126144 -1.36881e-18 -1) (-0.124113 -0.0375223 -1) (-0.117474 -0.0746583 -1) (-0.105944 -0.11026 -1) (-0.0901337 -0.143339 -1) (-0.0707968 -0.173427 -1) (-0.0486553 -0.200401 -1) (-0.0243249 -0.224332 -1) (0.00169965 -0.24539 -1) (0.0290324 -0.263783 -1) (0.0573758 -0.279735 -1) (0.0865014 -0.293462 -1) (0.116234 -0.305172 -1) (0.146438 -0.315064 -1) (0.177011 -0.323321 -1) (0.207872 -0.330118 -1) (0.238957 -0.335619 -1) (0.270214 -0.339977 -1) (0.301601 -0.343336 -1) (0.333076 -0.345829 -1) (0.3646 -0.347577 -1) (0.396131 -0.348686 -1) (0.427623 -0.34925 -1) (0.459031 -0.349346 -1) (0.490305 -0.349032 -1) (0.521399 -0.348345 -1) (0.552271 -0.347303 -1) (0.582885 -0.3459 -1) (0.613214 -0.344109 -1) (0.643243 -0.341883 -1) (0.672963 -0.339154 -1) (0.702372 -0.335838 -1) (0.731471 -0.331839 -1) (0.760261 -0.327048 -1) (0.788738 -0.321347 -1) (0.816892 -0.314608 -1) (0.844702 -0.306697 -1) (0.872132 -0.297471 -1) (0.899131 -0.286774 -1) (0.925623 -0.274439 -1) (0.951508 -0.26028 -1) (0.976645 -0.244087 -1) (1.00085 -0.225622 -1) (1.02385 -0.204614 -1) (1.04528 -0.18076 -1) (1.06465 -0.153743 -1) (1.08124 -0.123275 -1) (1.09417 -0.0892307 -1) (1.10258 -0.0518306 -1) (1.1015 -0.015914 -1) (1.10551 0.0521723 -1) (1.09725 0.0899716 -1) (1.08448 0.124515 -1) (1.06799 0.155537 -1) (1.04867 0.183129 -1) (1.02723 0.207555 -1) (1.00416 0.229121 -1) (0.979854 0.248123 -1) (0.954571 0.264827 -1) (0.928511 0.279467 -1) (0.901819 0.292252 -1) (0.874604 0.303366 -1) (0.846945 0.312976 -1) (0.8189 0.321236 -1) (0.790509 0.328287 -1) (0.7618 0.334265 -1) (0.732786 0.339294 -1) (0.703476 0.343492 -1) (0.673872 0.346967 -1) (0.643973 0.349819 -1) (0.613782 0.35213 -1) (0.583306 0.353969 -1) (0.552559 0.355386 -1) (0.521563 0.356411 -1) (0.490348 0.35705 -1) (0.458951 0.35729 -1) (0.427414 0.357094 -1) (0.395781 0.356403 -1) (0.364097 0.355143 -1) (0.332403 0.35322 -1) (0.300741 0.350526 -1) (0.269153 0.346939 -1) (0.237679 0.342325 -1) (0.206368 0.336541 -1) (0.175276 0.329432 -1) (0.144469 0.320833 -1) (0.114034 0.310571 -1) (0.0840805 0.29846 -1) (0.0547491 0.284304 -1) (0.0262217 0.267898 -1) (-0.00126694 0.249024 -1) (-0.0274126 0.227468 -1) (-0.0518233 0.203024 -1) (-0.0740003 0.175535 -1) (-0.0933278 0.144942 -1) (-0.109091 0.111389 -1) (-0.120554 0.0753592 -1) (-0.127134 0.0378525 -1) (-0.129142 -1.47723e-18 -1) (-0.127134 -0.0378525 -1) (-0.120554 -0.0753592 -1) (-0.109091 -0.111389 -1) (-0.0933278 -0.144942 -1) (-0.0740003 -0.175535 -1) (-0.0518233 -0.203024 -1) (-0.0274126 -0.227468 -1) (-0.00126694 -0.249024 -1) (0.0262217 -0.267898 -1) (0.0547491 -0.284304 -1) (0.0840805 -0.29846 -1) (0.114034 -0.310571 -1) (0.144469 -0.320833 -1) (0.175276 -0.329432 -1) (0.206368 -0.336541 -1) (0.237679 -0.342325 -1) (0.269153 -0.346939 -1) (0.300741 -0.350526 -1) (0.332403 -0.35322 -1) (0.364097 -0.355143 -1) (0.395781 -0.356403 -1) (0.427414 -0.357094 -1) (0.458951 -0.35729 -1) (0.490348 -0.35705 -1) (0.521563 -0.356411 -1) (0.552559 -0.355386 -1) (0.583306 -0.353969 -1) (0.613782 -0.35213 -1) (0.643973 -0.349819 -1) (0.673872 -0.346967 -1) (0.703476 -0.343492 -1) (0.732786 -0.339294 -1) (0.7618 -0.334265 -1) (0.790509 -0.328287 -1) (0.8189 -0.321236 -1) (0.846945 -0.312976 -1) (0.874604 -0.303366 -1) (0.901819 -0.292252 -1) (0.928511 -0.279467 -1) (0.954571 -0.264827 -1) (0.979854 -0.248123 -1) (1.00416 -0.229121 -1) (1.02723 -0.207555 -1) (1.04867 -0.183129 -1) (1.06799 -0.155537 -1) (1.08448 -0.124515 -1) (1.09725 -0.0899716 -1) (1.10551 -0.0521723 -1) (1.10434 -0.0160082 -1) (1.10851 0.0525155 -1) (1.10041 0.0907116 -1) (1.08779 0.125754 -1) (1.07141 0.157331 -1) (1.05215 0.185501 -1) (1.0307 0.210506 -1) (1.00758 0.232639 -1) (0.983163 0.252186 -1) (0.957738 0.26941 -1) (0.931504 0.284542 -1) (0.904613 0.297787 -1) (0.877181 0.30933 -1) (0.849291 0.319336 -1) (0.821007 0.327956 -1) (0.792376 0.335332 -1) (0.763428 0.341597 -1) (0.734183 0.346875 -1) (0.704653 0.351283 -1) (0.674841 0.35493 -1) (0.644752 0.357912 -1) (0.614386 0.360316 -1) (0.583751 0.362211 -1) (0.552857 0.363647 -1) (0.521723 0.364657 -1) (0.490374 0.36525 -1) (0.458843 0.365413 -1) (0.427166 0.365112 -1) (0.395384 0.364289 -1) (0.363536 0.362871 -1) (0.331664 0.360763 -1) (0.299809 0.357857 -1) (0.268013 0.354031 -1) (0.236319 0.349152 -1) (0.204779 0.343073 -1) (0.173451 0.33564 -1) (0.142408 0.326689 -1) (0.111742 0.316044 -1) (0.0815673 0.303523 -1) (0.0520311 0.288928 -1) (0.0233211 0.272057 -1) (-0.00432096 0.252695 -1) (-0.0305847 0.23063 -1) (-0.0550724 0.205667 -1) (-0.0772816 0.177657 -1) (-0.0965966 0.146556 -1) (-0.112311 0.112524 -1) (-0.123706 0.076065 -1) (-0.130227 0.0381853 -1) (-0.132212 -1.63986e-18 -1) (-0.130227 -0.0381853 -1) (-0.123706 -0.076065 -1) (-0.112311 -0.112524 -1) (-0.0965966 -0.146556 -1) (-0.0772816 -0.177657 -1) (-0.0550724 -0.205667 -1) (-0.0305847 -0.23063 -1) (-0.00432096 -0.252695 -1) (0.0233211 -0.272057 -1) (0.0520311 -0.288928 -1) (0.0815673 -0.303523 -1) (0.111742 -0.316044 -1) (0.142408 -0.326689 -1) (0.173451 -0.33564 -1) (0.204779 -0.343073 -1) (0.236319 -0.349152 -1) (0.268013 -0.354031 -1) (0.299809 -0.357857 -1) (0.331664 -0.360763 -1) (0.363536 -0.362871 -1) (0.395384 -0.364289 -1) (0.427166 -0.365112 -1) (0.458843 -0.365413 -1) (0.490374 -0.36525 -1) (0.521723 -0.364657 -1) (0.552857 -0.363647 -1) (0.583751 -0.362211 -1) (0.614386 -0.360316 -1) (0.644752 -0.357912 -1) (0.674841 -0.35493 -1) (0.704653 -0.351283 -1) (0.734183 -0.346875 -1) (0.763428 -0.341597 -1) (0.792376 -0.335332 -1) (0.821007 -0.327956 -1) (0.849291 -0.319336 -1) (0.877181 -0.30933 -1) (0.904613 -0.297787 -1) (0.931504 -0.284542 -1) (0.957738 -0.26941 -1) (0.983163 -0.252186 -1) (1.00758 -0.232639 -1) (1.0307 -0.210506 -1) (1.05215 -0.185501 -1) (1.07141 -0.157331 -1) (1.08779 -0.125754 -1) (1.10041 -0.0907116 -1) (1.10851 -0.0525155 -1) (1.10726 -0.0161036 -1) (1.11159 0.0528605 -1) (1.10364 0.091451 -1) (1.09118 0.12699 -1) (1.07492 0.159124 -1) (1.05571 0.187877 -1) (1.03426 0.213468 -1) (1.01109 0.236175 -1) (0.986575 0.256276 -1) (0.96101 0.27403 -1) (0.934605 0.289663 -1) (0.907517 0.303381 -1) (0.879866 0.315364 -1) (0.851744 0.325776 -1) (0.823219 0.334768 -1) (0.794342 0.342481 -1) (0.765149 0.349044 -1) (0.735665 0.354583 -1) (0.705904 0.359213 -1) (0.675875 0.363041 -1) (0.645582 0.366165 -1) (0.615029 0.36867 -1) (0.58422 0.370626 -1) (0.553166 0.372087 -1) (0.52188 0.373085 -1) (0.490384 0.373632 -1) (0.458706 0.373716 -1) (0.426878 0.373306 -1) (0.394935 0.372345 -1) (0.362915 0.370761 -1) (0.330857 0.368459 -1) (0.298801 0.365332 -1) (0.266791 0.361257 -1) (0.234872 0.356099 -1) (0.203098 0.349714 -1) (0.171533 0.341946 -1) (0.140253 0.332631 -1) (0.109355 0.321594 -1) (0.078959 0.30865 -1) (0.0492188 0.293607 -1) (0.0203283 0.276261 -1) (-0.00746477 0.256401 -1) (-0.0338435 0.233821 -1) (-0.0584048 0.208332 -1) (-0.0806426 0.179794 -1) (-0.0999422 0.14818 -1) (-0.115605 0.113667 -1) (-0.126932 0.0767758 -1) (-0.133395 0.0385208 -1) (-0.135356 -1.91091e-18 -1) (-0.133395 -0.0385208 -1) (-0.126932 -0.0767758 -1) (-0.115605 -0.113667 -1) (-0.0999422 -0.14818 -1) (-0.0806426 -0.179794 -1) (-0.0584048 -0.208332 -1) (-0.0338435 -0.233821 -1) (-0.00746477 -0.256401 -1) (0.0203283 -0.276261 -1) (0.0492188 -0.293607 -1) (0.078959 -0.30865 -1) (0.109355 -0.321594 -1) (0.140253 -0.332631 -1) (0.171533 -0.341946 -1) (0.203098 -0.349714 -1) (0.234872 -0.356099 -1) (0.266791 -0.361257 -1) (0.298801 -0.365332 -1) (0.330857 -0.368459 -1) (0.362915 -0.370761 -1) (0.394935 -0.372345 -1) (0.426878 -0.373306 -1) (0.458706 -0.373716 -1) (0.490384 -0.373632 -1) (0.52188 -0.373085 -1) (0.553166 -0.372087 -1) (0.58422 -0.370626 -1) (0.615029 -0.36867 -1) (0.645582 -0.366165 -1) (0.675875 -0.363041 -1) (0.705904 -0.359213 -1) (0.735665 -0.354583 -1) (0.765149 -0.349044 -1) (0.794342 -0.342481 -1) (0.823219 -0.334768 -1) (0.851744 -0.325776 -1) (0.879866 -0.315364 -1) (0.907517 -0.303381 -1) (0.934605 -0.289663 -1) (0.96101 -0.27403 -1) (0.986575 -0.256276 -1) (1.01109 -0.236175 -1) (1.03426 -0.213468 -1) (1.05571 -0.187877 -1) (1.07492 -0.159124 -1) (1.09118 -0.12699 -1) (1.10364 -0.091451 -1) (1.11159 -0.0528605 -1) (1.11027 -0.0162004 -1) (1.11475 0.0532075 -1) (1.10696 0.0921901 -1) (1.09465 0.128226 -1) (1.07851 0.160918 -1) (1.05937 0.190257 -1) (1.03792 0.216439 -1) (1.0147 0.239728 -1) (0.990091 0.260393 -1) (0.964391 0.278686 -1) (0.937816 0.294832 -1) (0.910532 0.309032 -1) (0.882663 0.321466 -1) (0.854307 0.332297 -1) (0.825538 0.341673 -1) (0.796411 0.349733 -1) (0.766967 0.356608 -1) (0.737235 0.362419 -1) (0.707234 0.367281 -1) (0.676976 0.371301 -1) (0.646468 0.374575 -1) (0.615713 0.37719 -1) (0.584716 0.379216 -1) (0.553486 0.380706 -1) (0.522034 0.381695 -1) (0.490377 0.382196 -1) (0.458539 0.382201 -1) (0.426546 0.381677 -1) (0.394432 0.380573 -1) (0.362229 0.378815 -1) (0.329977 0.37631 -1) (0.297714 0.372951 -1) (0.265484 0.368616 -1) (0.233335 0.363169 -1) (0.201324 0.356466 -1) (0.169518 0.348352 -1) (0.137999 0.338661 -1) (0.106869 0.327219 -1) (0.0762525 0.313844 -1) (0.0463097 0.298341 -1) (0.0172405 0.28051 -1) (-0.0107008 0.260144 -1) (-0.0371913 0.23704 -1) (-0.0618227 0.211017 -1) (-0.0840856 0.181946 -1) (-0.103367 0.149815 -1) (-0.118976 0.114817 -1) (-0.130234 0.0774917 -1) (-0.136639 0.0388591 -1) (-0.138578 -1.8567e-18 -1) (-0.136639 -0.0388591 -1) (-0.130234 -0.0774917 -1) (-0.118976 -0.114817 -1) (-0.103367 -0.149815 -1) (-0.0840856 -0.181946 -1) (-0.0618227 -0.211017 -1) (-0.0371913 -0.23704 -1) (-0.0107008 -0.260144 -1) (0.0172405 -0.28051 -1) (0.0463097 -0.298341 -1) (0.0762525 -0.313844 -1) (0.106869 -0.327219 -1) (0.137999 -0.338661 -1) (0.169518 -0.348352 -1) (0.201324 -0.356466 -1) (0.233335 -0.363169 -1) (0.265484 -0.368616 -1) (0.297714 -0.372951 -1) (0.329977 -0.37631 -1) (0.362229 -0.378815 -1) (0.394432 -0.380573 -1) (0.426546 -0.381677 -1) (0.458539 -0.382201 -1) (0.490377 -0.382196 -1) (0.522034 -0.381695 -1) (0.553486 -0.380706 -1) (0.584716 -0.379216 -1) (0.615713 -0.37719 -1) (0.646468 -0.374575 -1) (0.676976 -0.371301 -1) (0.707234 -0.367281 -1) (0.737235 -0.362419 -1) (0.766967 -0.356608 -1) (0.796411 -0.349733 -1) (0.825538 -0.341673 -1) (0.854307 -0.332297 -1) (0.882663 -0.321466 -1) (0.910532 -0.309032 -1) (0.937816 -0.294832 -1) (0.964391 -0.278686 -1) (0.990091 -0.260393 -1) (1.0147 -0.239728 -1) (1.03792 -0.216439 -1) (1.05937 -0.190257 -1) (1.07851 -0.160918 -1) (1.09465 -0.128226 -1) (1.10696 -0.0921901 -1) (1.11475 -0.0532075 -1) (1.11336 -0.0162986 -1) (1.118 0.0535568 -1) (1.11035 0.0929292 -1) (1.0982 0.12946 -1) (1.08218 0.162712 -1) (1.06311 0.192642 -1) (1.04168 0.219421 -1) (1.01841 0.243299 -1) (0.993714 0.264537 -1) (0.967882 0.283379 -1) (0.941141 0.300048 -1) (0.913662 0.314742 -1) (0.885575 0.327638 -1) (0.856984 0.338899 -1) (0.827967 0.348671 -1) (0.798585 0.357091 -1) (0.768884 0.364288 -1) (0.738896 0.370382 -1) (0.708646 0.375488 -1) (0.678148 0.37971 -1) (0.647411 0.383145 -1) (0.61644 0.385878 -1) (0.585241 0.387979 -1) (0.55382 0.389504 -1) (0.522186 0.390487 -1) (0.490353 0.390944 -1) (0.45834 0.390867 -1) (0.42617 0.390228 -1) (0.393872 0.388974 -1) (0.361477 0.387034 -1) (0.329021 0.384317 -1) (0.296542 0.380716 -1) (0.264086 0.376109 -1) (0.231703 0.370363 -1) (0.199452 0.36333 -1) (0.167403 0.354858 -1) (0.135644 0.344779 -1) (0.104281 0.332922 -1) (0.0734447 0.319103 -1) (0.0433007 0.303131 -1) (0.0140552 0.284805 -1) (-0.0140315 0.263923 -1) (-0.0406305 0.240288 -1) (-0.0653282 0.213723 -1) (-0.0876127 0.184114 -1) (-0.106872 0.15146 -1) (-0.122427 0.115975 -1) (-0.133614 0.0782129 -1) (-0.139961 0.0392002 -1) (-0.141878 -1.74828e-18 -1) (-0.139961 -0.0392002 -1) (-0.133614 -0.0782129 -1) (-0.122427 -0.115975 -1) (-0.106872 -0.15146 -1) (-0.0876127 -0.184114 -1) (-0.0653282 -0.213723 -1) (-0.0406305 -0.240288 -1) (-0.0140315 -0.263923 -1) (0.0140552 -0.284805 -1) (0.0433007 -0.303131 -1) (0.0734447 -0.319103 -1) (0.104281 -0.332922 -1) (0.135644 -0.344779 -1) (0.167403 -0.354858 -1) (0.199452 -0.36333 -1) (0.231703 -0.370363 -1) (0.264086 -0.376109 -1) (0.296542 -0.380716 -1) (0.329021 -0.384317 -1) (0.361477 -0.387034 -1) (0.393872 -0.388974 -1) (0.42617 -0.390228 -1) (0.45834 -0.390867 -1) (0.490353 -0.390944 -1) (0.522186 -0.390487 -1) (0.55382 -0.389504 -1) (0.585241 -0.387979 -1) (0.61644 -0.385878 -1) (0.647411 -0.383145 -1) (0.678148 -0.37971 -1) (0.708646 -0.375488 -1) (0.738896 -0.370382 -1) (0.768884 -0.364288 -1) (0.798585 -0.357091 -1) (0.827967 -0.348671 -1) (0.856984 -0.338899 -1) (0.885575 -0.327638 -1) (0.913662 -0.314742 -1) (0.941141 -0.300048 -1) (0.967882 -0.283379 -1) (0.993714 -0.264537 -1) (1.01841 -0.243299 -1) (1.04168 -0.219421 -1) (1.06311 -0.192642 -1) (1.08218 -0.162712 -1) (1.0982 -0.12946 -1) (1.11035 -0.0929292 -1) (1.118 -0.0535568 -1) (1.11653 -0.0163983 -1) (1.12133 0.0539085 -1) (1.11383 0.0936686 -1) (1.10183 0.130693 -1) (1.08594 0.164506 -1) (1.06695 0.19503 -1) (1.04553 0.222412 -1) (1.02223 0.246888 -1) (0.997447 0.268707 -1) (0.971487 0.288108 -1) (0.944582 0.30531 -1) (0.916909 0.320509 -1) (0.888605 0.333879 -1) (0.859777 0.345581 -1) (0.830509 0.355761 -1) (0.800868 0.364552 -1) (0.770903 0.372083 -1) (0.740653 0.378473 -1) (0.710143 0.383833 -1) (0.679393 0.388268 -1) (0.648414 0.391874 -1) (0.617213 0.394733 -1) (0.585796 0.396917 -1) (0.554168 0.398481 -1) (0.522336 0.399462 -1) (0.490311 0.399875 -1) (0.458108 0.399716 -1) (0.425747 0.398957 -1) (0.393252 0.397548 -1) (0.360654 0.395419 -1) (0.327985 0.392481 -1) (0.295284 0.388628 -1) (0.262596 0.383739 -1) (0.229973 0.377681 -1) (0.197477 0.370307 -1) (0.165184 0.361464 -1) (0.133184 0.350987 -1) (0.101588 0.338703 -1) (0.0705326 0.324429 -1) (0.040189 0.307976 -1) (0.0107695 0.289146 -1) (-0.0174596 0.26774 -1) (-0.0441635 0.243563 -1) (-0.0689239 0.216451 -1) (-0.0912263 0.186297 -1) (-0.110461 0.153117 -1) (-0.125958 0.117141 -1) (-0.137075 0.0789395 -1) (-0.143364 0.0395443 -1) (-0.14526 -1.74828e-18 -1) (-0.143364 -0.0395443 -1) (-0.137075 -0.0789395 -1) (-0.125958 -0.117141 -1) (-0.110461 -0.153117 -1) (-0.0912263 -0.186297 -1) (-0.0689239 -0.216451 -1) (-0.0441635 -0.243563 -1) (-0.0174596 -0.26774 -1) (0.0107695 -0.289146 -1) (0.040189 -0.307976 -1) (0.0705326 -0.324429 -1) (0.101588 -0.338703 -1) (0.133184 -0.350987 -1) (0.165184 -0.361464 -1) (0.197477 -0.370307 -1) (0.229973 -0.377681 -1) (0.262596 -0.383739 -1) (0.295284 -0.388628 -1) (0.327985 -0.392481 -1) (0.360654 -0.395419 -1) (0.393252 -0.397548 -1) (0.425747 -0.398957 -1) (0.458108 -0.399716 -1) (0.490311 -0.399875 -1) (0.522336 -0.399462 -1) (0.554168 -0.398481 -1) (0.585796 -0.396917 -1) (0.617213 -0.394733 -1) (0.648414 -0.391874 -1) (0.679393 -0.388268 -1) (0.710143 -0.383833 -1) (0.740653 -0.378473 -1) (0.770903 -0.372083 -1) (0.800868 -0.364552 -1) (0.830509 -0.355761 -1) (0.859777 -0.345581 -1) (0.888605 -0.333879 -1) (0.916909 -0.320509 -1) (0.944582 -0.30531 -1) (0.971487 -0.288108 -1) (0.997447 -0.268707 -1) (1.02223 -0.246888 -1) (1.04553 -0.222412 -1) (1.06695 -0.19503 -1) (1.08594 -0.164506 -1) (1.10183 -0.130693 -1) (1.11383 -0.0936686 -1) (1.12133 -0.0539085 -1) (1.1198 -0.0164995 -1) (1.12475 0.0542631 -1) (1.11739 0.0944084 -1) (1.10556 0.131925 -1) (1.0898 0.1663 -1) (1.07088 0.197421 -1) (1.04949 0.225414 -1) (1.02616 0.250494 -1) (1.00129 0.272902 -1) (0.975208 0.292873 -1) (0.948142 0.310619 -1) (0.920277 0.326333 -1) (0.891755 0.34019 -1) (0.862689 0.352345 -1) (0.833169 0.362944 -1) (0.803264 0.372119 -1) (0.773029 0.379996 -1) (0.742507 0.386692 -1) (0.711729 0.392318 -1) (0.680715 0.396976 -1) (0.649481 0.400761 -1) (0.618035 0.403755 -1) (0.586384 0.406029 -1) (0.554532 0.407639 -1) (0.522484 0.40862 -1) (0.490251 0.408991 -1) (0.457842 0.408748 -1) (0.425275 0.407866 -1) (0.392572 0.406296 -1) (0.359758 0.403971 -1) (0.326866 0.400804 -1) (0.293934 0.396689 -1) (0.261007 0.391507 -1) (0.22814 0.385124 -1) (0.195398 0.377398 -1) (0.162857 0.368172 -1) (0.130615 0.357285 -1) (0.0987858 0.344562 -1) (0.0675128 0.329823 -1) (0.0369716 0.312878 -1) (0.00738065 0.293534 -1) (-0.0209876 0.271593 -1) (-0.0477928 0.246868 -1) (-0.072612 0.219201 -1) (-0.0949287 0.188496 -1) (-0.114136 0.154785 -1) (-0.129574 0.118315 -1) (-0.140619 0.0796717 -1) (-0.146851 0.0398913 -1) (-0.148725 -1.96512e-18 -1) (-0.146851 -0.0398913 -1) (-0.140619 -0.0796717 -1) (-0.129574 -0.118315 -1) (-0.114136 -0.154785 -1) (-0.0949287 -0.188496 -1) (-0.072612 -0.219201 -1) (-0.0477928 -0.246868 -1) (-0.0209876 -0.271593 -1) (0.00738065 -0.293534 -1) (0.0369716 -0.312878 -1) (0.0675128 -0.329823 -1) (0.0987858 -0.344562 -1) (0.130615 -0.357285 -1) (0.162857 -0.368172 -1) (0.195398 -0.377398 -1) (0.22814 -0.385124 -1) (0.261007 -0.391507 -1) (0.293934 -0.396689 -1) (0.326866 -0.400804 -1) (0.359758 -0.403971 -1) (0.392572 -0.406296 -1) (0.425275 -0.407866 -1) (0.457842 -0.408748 -1) (0.490251 -0.408991 -1) (0.522484 -0.40862 -1) (0.554532 -0.407639 -1) (0.586384 -0.406029 -1) (0.618035 -0.403755 -1) (0.649481 -0.400761 -1) (0.680715 -0.396976 -1) (0.711729 -0.392318 -1) (0.742507 -0.386692 -1) (0.773029 -0.379996 -1) (0.803264 -0.372119 -1) (0.833169 -0.362944 -1) (0.862689 -0.352345 -1) (0.891755 -0.34019 -1) (0.920277 -0.326333 -1) (0.948142 -0.310619 -1) (0.975208 -0.292873 -1) (1.00129 -0.272902 -1) (1.02616 -0.250494 -1) (1.04949 -0.225414 -1) (1.07088 -0.197421 -1) (1.0898 -0.1663 -1) (1.10556 -0.131925 -1) (1.11739 -0.0944084 -1) (1.12475 -0.0542631 -1) (1.12316 -0.0166025 -1) (1.12826 0.0546206 -1) (1.12104 0.0951492 -1) (1.10937 0.133157 -1) (1.09375 0.168094 -1) (1.07492 0.199817 -1) (1.05355 0.228424 -1) (1.03019 0.254116 -1) (1.00525 0.277124 -1) (0.979048 0.297674 -1) (0.951824 0.315974 -1) (0.923768 0.332216 -1) (0.895029 0.346569 -1) (0.865724 0.35919 -1) (0.835948 0.370219 -1) (0.805775 0.37979 -1) (0.775265 0.388025 -1) (0.744463 0.395039 -1) (0.713405 0.400942 -1) (0.682117 0.405834 -1) (0.650614 0.409807 -1) (0.618908 0.412945 -1) (0.587006 0.415316 -1) (0.554912 0.416975 -1) (0.522632 0.417961 -1) (0.490172 0.418291 -1) (0.457542 0.417963 -1) (0.424753 0.416955 -1) (0.391827 0.415219 -1) (0.358785 0.412692 -1) (0.32566 0.409285 -1) (0.292489 0.404898 -1) (0.259318 0.399412 -1) (0.226201 0.392695 -1) (0.193208 0.384603 -1) (0.160419 0.374983 -1) (0.127933 0.363673 -1) (0.0958719 0.350499 -1) (0.0643821 0.335283 -1) (0.0336453 0.317837 -1) (0.0038857 0.297968 -1) (-0.0246183 0.275483 -1) (-0.051521 0.250201 -1) (-0.076395 0.221972 -1) (-0.0987222 0.190711 -1) (-0.117899 0.156465 -1) (-0.133275 0.119497 -1) (-0.144249 0.0804095 -1) (-0.150424 0.0402415 -1) (-0.152276 -1.96512e-18 -1) (-0.150424 -0.0402415 -1) (-0.144249 -0.0804095 -1) (-0.133275 -0.119497 -1) (-0.117899 -0.156465 -1) (-0.0987222 -0.190711 -1) (-0.076395 -0.221972 -1) (-0.051521 -0.250201 -1) (-0.0246183 -0.275483 -1) (0.0038857 -0.297968 -1) (0.0336453 -0.317837 -1) (0.0643821 -0.335283 -1) (0.0958719 -0.350499 -1) (0.127933 -0.363673 -1) (0.160419 -0.374983 -1) (0.193208 -0.384603 -1) (0.226201 -0.392695 -1) (0.259318 -0.399412 -1) (0.292489 -0.404898 -1) (0.32566 -0.409285 -1) (0.358785 -0.412692 -1) (0.391827 -0.415219 -1) (0.424753 -0.416955 -1) (0.457542 -0.417963 -1) (0.490172 -0.418291 -1) (0.522632 -0.417961 -1) (0.554912 -0.416975 -1) (0.587006 -0.415316 -1) (0.618908 -0.412945 -1) (0.650614 -0.409807 -1) (0.682117 -0.405834 -1) (0.713405 -0.400942 -1) (0.744463 -0.395039 -1) (0.775265 -0.388025 -1) (0.805775 -0.37979 -1) (0.835948 -0.370219 -1) (0.865724 -0.35919 -1) (0.895029 -0.346569 -1) (0.923768 -0.332216 -1) (0.951824 -0.315974 -1) (0.979048 -0.297674 -1) (1.00525 -0.277124 -1) (1.03019 -0.254116 -1) (1.05355 -0.228424 -1) (1.07492 -0.199817 -1) (1.09375 -0.168094 -1) (1.10937 -0.133157 -1) (1.12104 -0.0951492 -1) (1.12826 -0.0546206 -1) (1.12662 -0.0167072 -1) (1.13187 0.0549813 -1) (1.12479 0.0958911 -1) (1.11327 0.134388 -1) (1.09779 0.169889 -1) (1.07905 0.202217 -1) (1.05772 0.231444 -1) (1.03434 0.257756 -1) (1.00933 0.281372 -1) (0.98301 0.30251 -1) (0.95563 0.321376 -1) (0.927385 0.338156 -1) (0.89843 0.353018 -1) (0.868885 0.366115 -1) (0.83885 0.377588 -1) (0.808405 0.387566 -1) (0.777612 0.396171 -1) (0.746523 0.403515 -1) (0.715176 0.409705 -1) (0.6836 0.41484 -1) (0.651814 0.419012 -1) (0.619833 0.422301 -1) (0.587663 0.424776 -1) (0.555311 0.426491 -1) (0.52278 0.427484 -1) (0.490076 0.427774 -1) (0.457206 0.427362 -1) (0.42418 0.426224 -1) (0.391016 0.424318 -1) (0.357734 0.42158 -1) (0.324365 0.417927 -1) (0.290946 0.413258 -1) (0.257523 0.407457 -1) (0.224152 0.400393 -1) (0.190905 0.391924 -1) (0.157865 0.381898 -1) (0.125136 0.370152 -1) (0.0928423 0.356517 -1) (0.061137 0.340812 -1) (0.0302069 0.322852 -1) (0.000281632 0.302448 -1) (-0.0283546 0.279411 -1) (-0.0553508 0.253564 -1) (-0.0802757 0.224764 -1) (-0.10261 0.192942 -1) (-0.121752 0.158156 -1) (-0.137066 0.120688 -1) (-0.147967 0.0811532 -1) (-0.154085 0.0405947 -1) (-0.155917 -2.07354e-18 -1) (-0.154085 -0.0405947 -1) (-0.147967 -0.0811532 -1) (-0.137066 -0.120688 -1) (-0.121752 -0.158156 -1) (-0.10261 -0.192942 -1) (-0.0802757 -0.224764 -1) (-0.0553508 -0.253564 -1) (-0.0283546 -0.279411 -1) (0.000281632 -0.302448 -1) (0.0302069 -0.322852 -1) (0.061137 -0.340812 -1) (0.0928423 -0.356517 -1) (0.125136 -0.370152 -1) (0.157865 -0.381898 -1) (0.190905 -0.391924 -1) (0.224152 -0.400393 -1) (0.257523 -0.407457 -1) (0.290946 -0.413258 -1) (0.324365 -0.417927 -1) (0.357734 -0.42158 -1) (0.391016 -0.424318 -1) (0.42418 -0.426224 -1) (0.457206 -0.427362 -1) (0.490076 -0.427774 -1) (0.52278 -0.427484 -1) (0.555311 -0.426491 -1) (0.587663 -0.424776 -1) (0.619833 -0.422301 -1) (0.651814 -0.419012 -1) (0.6836 -0.41484 -1) (0.715176 -0.409705 -1) (0.746523 -0.403515 -1) (0.777612 -0.396171 -1) (0.808405 -0.387566 -1) (0.83885 -0.377588 -1) (0.868885 -0.366115 -1) (0.89843 -0.353018 -1) (0.927385 -0.338156 -1) (0.95563 -0.321376 -1) (0.98301 -0.30251 -1) (1.00933 -0.281372 -1) (1.03434 -0.257756 -1) (1.05772 -0.231444 -1) (1.07905 -0.202217 -1) (1.09779 -0.169889 -1) (1.11327 -0.134388 -1) (1.12479 -0.0958911 -1) (1.13187 -0.0549813 -1) (1.13017 -0.0168138 -1) (1.13558 0.0553454 -1) (1.12863 0.0966345 -1) (1.11727 0.13562 -1) (1.10193 0.171685 -1) (1.08329 0.20462 -1) (1.062 0.234473 -1) (1.03861 0.261412 -1) (1.01353 0.285645 -1) (0.987095 0.307382 -1) (0.959564 0.326824 -1) (0.931132 0.344153 -1) (0.90196 0.359536 -1) (0.872174 0.373122 -1) (0.841878 0.38505 -1) (0.811156 0.395448 -1) (0.780075 0.404433 -1) (0.748691 0.412118 -1) (0.717044 0.418607 -1) (0.685168 0.423997 -1) (0.653086 0.428376 -1) (0.620812 0.431824 -1) (0.588358 0.434409 -1) (0.555729 0.436185 -1) (0.522929 0.437189 -1) (0.489962 0.437441 -1) (0.456834 0.436943 -1) (0.423554 0.435674 -1) (0.390136 0.433592 -1) (0.356602 0.430638 -1) (0.322978 0.42673 -1) (0.289301 0.421769 -1) (0.255619 0.415641 -1) (0.221989 0.408219 -1) (0.188484 0.399361 -1) (0.155192 0.388916 -1) (0.122218 0.376724 -1) (0.0896932 0.362614 -1) (0.0577741 0.346409 -1) (0.0266531 0.327926 -1) (-0.00343466 0.306976 -1) (-0.0321995 0.283376 -1) (-0.0592851 0.256955 -1) (-0.0842565 0.227579 -1) (-0.106593 0.195189 -1) (-0.125699 0.159858 -1) (-0.140947 0.121887 -1) (-0.151776 0.0819028 -1) (-0.157838 0.0409513 -1) (-0.159648 -2.72406e-18 -1) (-0.157838 -0.0409513 -1) (-0.151776 -0.0819028 -1) (-0.140947 -0.121887 -1) (-0.125699 -0.159858 -1) (-0.106593 -0.195189 -1) (-0.0842565 -0.227579 -1) (-0.0592851 -0.256955 -1) (-0.0321995 -0.283376 -1) (-0.00343466 -0.306976 -1) (0.0266531 -0.327926 -1) (0.0577741 -0.346409 -1) (0.0896932 -0.362614 -1) (0.122218 -0.376724 -1) (0.155192 -0.388916 -1) (0.188484 -0.399361 -1) (0.221989 -0.408219 -1) (0.255619 -0.415641 -1) (0.289301 -0.421769 -1) (0.322978 -0.42673 -1) (0.356602 -0.430638 -1) (0.390136 -0.433592 -1) (0.423554 -0.435674 -1) (0.456834 -0.436943 -1) (0.489962 -0.437441 -1) (0.522929 -0.437189 -1) (0.555729 -0.436185 -1) (0.588358 -0.434409 -1) (0.620812 -0.431824 -1) (0.653086 -0.428376 -1) (0.685168 -0.423997 -1) (0.717044 -0.418607 -1) (0.748691 -0.412118 -1) (0.780075 -0.404433 -1) (0.811156 -0.395448 -1) (0.841878 -0.38505 -1) (0.872174 -0.373122 -1) (0.90196 -0.359536 -1) (0.931132 -0.344153 -1) (0.959564 -0.326824 -1) (0.987095 -0.307382 -1) (1.01353 -0.285645 -1) (1.03861 -0.261412 -1) (1.062 -0.234473 -1) (1.08329 -0.20462 -1) (1.10193 -0.171685 -1) (1.11727 -0.13562 -1) (1.12863 -0.0966345 -1) (1.13558 -0.0553454 -1) (1.13383 -0.0169223 -1) (1.13938 0.0557132 -1) (1.13257 0.0973798 -1) (1.12137 0.136851 -1) (1.10617 0.173481 -1) (1.08763 0.207026 -1) (1.06639 0.237512 -1) (1.04299 0.265085 -1) (1.01785 0.289943 -1) (0.991309 0.312289 -1) (0.963628 0.332318 -1) (0.935012 0.350208 -1) (0.905624 0.366123 -1) (0.875596 0.38021 -1) (0.845036 0.392606 -1) (0.814033 0.403434 -1) (0.782657 0.412813 -1) (0.750968 0.42085 -1) (0.719012 0.427648 -1) (0.686824 0.433302 -1) (0.65443 0.437898 -1) (0.621849 0.441514 -1) (0.589092 0.444216 -1) (0.556168 0.446057 -1) (0.523079 0.447076 -1) (0.48983 0.447292 -1) (0.456426 0.446707 -1) (0.422874 0.445304 -1) (0.389187 0.443042 -1) (0.355385 0.439865 -1) (0.321494 0.435693 -1) (0.287551 0.430431 -1) (0.253602 0.423967 -1) (0.219708 0.416175 -1) (0.185942 0.406915 -1) (0.152395 0.39604 -1) (0.119177 0.383388 -1) (0.0864209 0.368791 -1) (0.0542898 0.352075 -1) (0.0229805 0.333057 -1) (-0.00726638 0.311552 -1) (-0.0361558 0.28738 -1) (-0.0633267 0.260376 -1) (-0.0883404 0.230416 -1) (-0.110676 0.197452 -1) (-0.129742 0.161573 -1) (-0.144923 0.123095 -1) (-0.155678 0.0826586 -1) (-0.161684 0.0413111 -1) (-0.163474 -3.15774e-18 -1) (-0.161684 -0.0413111 -1) (-0.155678 -0.0826586 -1) (-0.144923 -0.123095 -1) (-0.129742 -0.161573 -1) (-0.110676 -0.197452 -1) (-0.0883404 -0.230416 -1) (-0.0633267 -0.260376 -1) (-0.0361558 -0.28738 -1) (-0.00726638 -0.311552 -1) (0.0229805 -0.333057 -1) (0.0542898 -0.352075 -1) (0.0864209 -0.368791 -1) (0.119177 -0.383388 -1) (0.152395 -0.39604 -1) (0.185942 -0.406915 -1) (0.219708 -0.416175 -1) (0.253602 -0.423967 -1) (0.287551 -0.430431 -1) (0.321494 -0.435693 -1) (0.355385 -0.439865 -1) (0.389187 -0.443042 -1) (0.422874 -0.445304 -1) (0.456426 -0.446707 -1) (0.48983 -0.447292 -1) (0.523079 -0.447076 -1) (0.556168 -0.446057 -1) (0.589092 -0.444216 -1) (0.621849 -0.441514 -1) (0.65443 -0.437898 -1) (0.686824 -0.433302 -1) (0.719012 -0.427648 -1) (0.750968 -0.42085 -1) (0.782657 -0.412813 -1) (0.814033 -0.403434 -1) (0.845036 -0.392606 -1) (0.875596 -0.38021 -1) (0.905624 -0.366123 -1) (0.935012 -0.350208 -1) (0.963628 -0.332318 -1) (0.991309 -0.312289 -1) (1.01785 -0.289943 -1) (1.04299 -0.265085 -1) (1.06639 -0.237512 -1) (1.08763 -0.207026 -1) (1.10617 -0.173481 -1) (1.12137 -0.136851 -1) (1.13257 -0.0973798 -1) (1.13938 -0.0557132 -1) (1.13759 -0.0170327 -1) (1.1433 0.056085 -1) (1.13661 0.0981273 -1) (1.12557 0.138083 -1) (1.11052 0.175278 -1) (1.09208 0.209437 -1) (1.0709 0.240559 -1) (1.04749 0.268774 -1) (1.02229 0.294267 -1) (0.995652 0.317231 -1) (0.967826 0.337857 -1) (0.939027 0.35632 -1) (0.909424 0.372779 -1) (0.879153 0.387379 -1) (0.848327 0.400254 -1) (0.817037 0.411526 -1) (0.78536 0.421309 -1) (0.753358 0.42971 -1) (0.721082 0.436829 -1) (0.688569 0.442756 -1) (0.655849 0.447578 -1) (0.622944 0.45137 -1) (0.589867 0.454196 -1) (0.556628 0.456108 -1) (0.52323 0.457144 -1) (0.48968 0.457325 -1) (0.45598 0.456654 -1) (0.422138 0.455114 -1) (0.388166 0.452668 -1) (0.354082 0.449261 -1) (0.319912 0.444818 -1) (0.285692 0.439245 -1) (0.251469 0.432434 -1) (0.217305 0.42426 -1) (0.183274 0.414588 -1) (0.14947 0.403269 -1) (0.116007 0.390145 -1) (0.0830216 0.37505 -1) (0.0506804 0.35781 -1) (0.0191856 0.338246 -1) (-0.0112168 0.316175 -1) (-0.0402268 0.291421 -1) (-0.0674785 0.263827 -1) (-0.0925302 0.233276 -1) (-0.114861 0.199732 -1) (-0.133883 0.1633 -1) (-0.148996 0.124312 -1) (-0.159676 0.0834207 -1) (-0.165627 0.0416743 -1) (-0.167397 -3.69984e-18 -1) (-0.165627 -0.0416743 -1) (-0.159676 -0.0834207 -1) (-0.148996 -0.124312 -1) (-0.133883 -0.1633 -1) (-0.114861 -0.199732 -1) (-0.0925302 -0.233276 -1) (-0.0674785 -0.263827 -1) (-0.0402268 -0.291421 -1) (-0.0112168 -0.316175 -1) (0.0191856 -0.338246 -1) (0.0506804 -0.35781 -1) (0.0830216 -0.37505 -1) (0.116007 -0.390145 -1) (0.14947 -0.403269 -1) (0.183274 -0.414588 -1) (0.217305 -0.42426 -1) (0.251469 -0.432434 -1) (0.285692 -0.439245 -1) (0.319912 -0.444818 -1) (0.354082 -0.449261 -1) (0.388166 -0.452668 -1) (0.422138 -0.455114 -1) (0.45598 -0.456654 -1) (0.48968 -0.457325 -1) (0.52323 -0.457144 -1) (0.556628 -0.456108 -1) (0.589867 -0.454196 -1) (0.622944 -0.45137 -1) (0.655849 -0.447578 -1) (0.688569 -0.442756 -1) (0.721082 -0.436829 -1) (0.753358 -0.42971 -1) (0.78536 -0.421309 -1) (0.817037 -0.411526 -1) (0.848327 -0.400254 -1) (0.879153 -0.387379 -1) (0.909424 -0.372779 -1) (0.939027 -0.35632 -1) (0.967826 -0.337857 -1) (0.995652 -0.317231 -1) (1.02229 -0.294267 -1) (1.04749 -0.268774 -1) (1.0709 -0.240559 -1) (1.09208 -0.209437 -1) (1.11052 -0.175278 -1) (1.12557 -0.138083 -1) (1.13661 -0.0981273 -1) (1.1433 -0.056085 -1) (1.14145 -0.0171452 -1) (1.14732 0.0564609 -1) (1.14075 0.0988773 -1) (1.12988 0.139316 -1) (1.11497 0.177076 -1) (1.09665 0.211852 -1) (1.07552 0.243616 -1) (1.05211 0.27248 -1) (1.02687 0.298615 -1) (1.00013 0.322208 -1) (0.97216 0.343443 -1) (0.943181 0.36249 -1) (0.913363 0.379504 -1) (0.882848 0.39463 -1) (0.851752 0.407996 -1) (0.820172 0.419723 -1) (0.788187 0.429923 -1) (0.755864 0.438699 -1) (0.723256 0.446148 -1) (0.690406 0.45236 -1) (0.657345 0.457417 -1) (0.624099 0.461392 -1) (0.590684 0.464348 -1) (0.55711 0.466336 -1) (0.523385 0.467393 -1) (0.489512 0.467541 -1) (0.455497 0.466783 -1) (0.421347 0.465104 -1) (0.387073 0.46247 -1) (0.352691 0.458827 -1) (0.318229 0.454105 -1) (0.283722 0.448212 -1) (0.249217 0.441043 -1) (0.214776 0.432476 -1) (0.180477 0.422379 -1) (0.146415 0.410604 -1) (0.112706 0.396996 -1) (0.0794914 0.381391 -1) (0.0469422 0.363615 -1) (0.015265 0.343493 -1) (-0.0152893 0.320845 -1) (-0.0444156 0.295501 -1) (-0.0717436 0.267307 -1) (-0.0968287 0.236158 -1) (-0.11915 0.202029 -1) (-0.138126 0.16504 -1) (-0.153168 0.125538 -1) (-0.163774 0.0841893 -1) (-0.16967 0.042041 -1) (-0.17142 -4.0251e-18 -1) (-0.16967 -0.042041 -1) (-0.163774 -0.0841893 -1) (-0.153168 -0.125538 -1) (-0.138126 -0.16504 -1) (-0.11915 -0.202029 -1) (-0.0968287 -0.236158 -1) (-0.0717436 -0.267307 -1) (-0.0444156 -0.295501 -1) (-0.0152893 -0.320845 -1) (0.015265 -0.343493 -1) (0.0469422 -0.363615 -1) (0.0794914 -0.381391 -1) (0.112706 -0.396996 -1) (0.146415 -0.410604 -1) (0.180477 -0.422379 -1) (0.214776 -0.432476 -1) (0.249217 -0.441043 -1) (0.283722 -0.448212 -1) (0.318229 -0.454105 -1) (0.352691 -0.458827 -1) (0.387073 -0.46247 -1) (0.421347 -0.465104 -1) (0.455497 -0.466783 -1) (0.489512 -0.467541 -1) (0.523385 -0.467393 -1) (0.55711 -0.466336 -1) (0.590684 -0.464348 -1) (0.624099 -0.461392 -1) (0.657345 -0.457417 -1) (0.690406 -0.45236 -1) (0.723256 -0.446148 -1) (0.755864 -0.438699 -1) (0.788187 -0.429923 -1) (0.820172 -0.419723 -1) (0.851752 -0.407996 -1) (0.882848 -0.39463 -1) (0.913363 -0.379504 -1) (0.943181 -0.36249 -1) (0.97216 -0.343443 -1) (1.00013 -0.322208 -1) (1.02687 -0.298615 -1) (1.05211 -0.27248 -1) (1.07552 -0.243616 -1) (1.09665 -0.211852 -1) (1.11497 -0.177076 -1) (1.12988 -0.139316 -1) (1.14075 -0.0988773 -1) (1.14732 -0.0564609 -1) (1.14543 -0.0172598 -1) (1.15145 0.0568411 -1) (1.14501 0.0996302 -1) (1.13429 0.14055 -1) (1.11954 0.178875 -1) (1.10133 0.21427 -1) (1.08026 0.246681 -1) (1.05686 0.276201 -1) (1.03158 0.302988 -1) (1.00474 0.32722 -1) (0.976635 0.349074 -1) (0.947477 0.368716 -1) (0.917445 0.386299 -1) (0.886685 0.401961 -1) (0.855317 0.415831 -1) (0.823441 0.428026 -1) (0.791142 0.438654 -1) (0.758488 0.447817 -1) (0.725538 0.455607 -1) (0.692337 0.462113 -1) (0.65892 0.467413 -1) (0.625316 0.471579 -1) (0.591544 0.474672 -1) (0.557616 0.476741 -1) (0.523542 0.477823 -1) (0.489327 0.477939 -1) (0.454977 0.477094 -1) (0.420499 0.475273 -1) (0.385904 0.472447 -1) (0.35121 0.468563 -1) (0.316442 0.463554 -1) (0.281637 0.457332 -1) (0.246841 0.449794 -1) (0.212118 0.440824 -1) (0.177546 0.430289 -1) (0.143223 0.418046 -1) (0.109269 0.403941 -1) (0.0758263 0.387813 -1) (0.0430713 0.36949 -1) (0.0112148 0.348799 -1) (-0.0194874 0.325564 -1) (-0.0487256 0.299619 -1) (-0.0761252 0.270818 -1) (-0.101239 0.239063 -1) (-0.123547 0.204342 -1) (-0.142474 0.166792 -1) (-0.157444 0.126774 -1) (-0.167975 0.0849644 -1) (-0.173815 0.0424113 -1) (-0.175546 -4.45878e-18 -1) (-0.173815 -0.0424113 -1) (-0.167975 -0.0849644 -1) (-0.157444 -0.126774 -1) (-0.142474 -0.166792 -1) (-0.123547 -0.204342 -1) (-0.101239 -0.239063 -1) (-0.0761252 -0.270818 -1) (-0.0487256 -0.299619 -1) (-0.0194874 -0.325564 -1) (0.0112148 -0.348799 -1) (0.0430713 -0.36949 -1) (0.0758263 -0.387813 -1) (0.109269 -0.403941 -1) (0.143223 -0.418046 -1) (0.177546 -0.430289 -1) (0.212118 -0.440824 -1) (0.246841 -0.449794 -1) (0.281637 -0.457332 -1) (0.316442 -0.463554 -1) (0.35121 -0.468563 -1) (0.385904 -0.472447 -1) (0.420499 -0.475273 -1) (0.454977 -0.477094 -1) (0.489327 -0.477939 -1) (0.523542 -0.477823 -1) (0.557616 -0.476741 -1) (0.591544 -0.474672 -1) (0.625316 -0.471579 -1) (0.65892 -0.467413 -1) (0.692337 -0.462113 -1) (0.725538 -0.455607 -1) (0.758488 -0.447817 -1) (0.791142 -0.438654 -1) (0.823441 -0.428026 -1) (0.855317 -0.415831 -1) (0.886685 -0.401961 -1) (0.917445 -0.386299 -1) (0.947477 -0.368716 -1) (0.976635 -0.349074 -1) (1.00474 -0.32722 -1) (1.03158 -0.302988 -1) (1.05686 -0.276201 -1) (1.08026 -0.246681 -1) (1.10133 -0.21427 -1) (1.11954 -0.178875 -1) (1.13429 -0.14055 -1) (1.14501 -0.0996302 -1) (1.15145 -0.0568411 -1) (1.14952 -0.0173766 -1) (1.1557 0.057226 -1) (1.14937 0.100386 -1) (1.13881 0.141786 -1) (1.12421 0.180676 -1) (1.10612 0.216692 -1) (1.08513 0.249755 -1) (1.06175 0.279938 -1) (1.03642 0.307386 -1) (1.00949 0.332267 -1) (0.981252 0.354751 -1) (0.951917 0.375 -1) (0.921672 0.393162 -1) (0.890666 0.409374 -1) (0.859023 0.42376 -1) (0.826847 0.436434 -1) (0.794226 0.447503 -1) (0.761233 0.457063 -1) (0.727929 0.465205 -1) (0.694364 0.472014 -1) (0.660576 0.477567 -1) (0.626597 0.481932 -1) (0.592448 0.485168 -1) (0.558147 0.487323 -1) (0.523703 0.488433 -1) (0.489124 0.488518 -1) (0.454418 0.487585 -1) (0.419593 0.485622 -1) (0.38466 0.482599 -1) (0.349637 0.478469 -1) (0.31455 0.473165 -1) (0.279434 0.466605 -1) (0.244339 0.458689 -1) (0.209327 0.449303 -1) (0.174478 0.438318 -1) (0.139893 0.425595 -1) (0.105691 0.410982 -1) (0.0720224 0.394318 -1) (0.0390639 0.375436 -1) (0.00703143 0.354164 -1) (-0.0238147 0.330331 -1) (-0.0531601 0.303775 -1) (-0.0806265 0.274358 -1) (-0.105765 0.24199 -1) (-0.128055 0.206673 -1) (-0.146929 0.168557 -1) (-0.161825 0.128019 -1) (-0.172281 0.0857463 -1) (-0.178067 0.0427852 -1) (-0.179778 -4.78404e-18 -1) (-0.178067 -0.0427852 -1) (-0.172281 -0.0857463 -1) (-0.161825 -0.128019 -1) (-0.146929 -0.168557 -1) (-0.128055 -0.206673 -1) (-0.105765 -0.24199 -1) (-0.0806265 -0.274358 -1) (-0.0531601 -0.303775 -1) (-0.0238147 -0.330331 -1) (0.00703143 -0.354164 -1) (0.0390639 -0.375436 -1) (0.0720224 -0.394318 -1) (0.105691 -0.410982 -1) (0.139893 -0.425595 -1) (0.174478 -0.438318 -1) (0.209327 -0.449303 -1) (0.244339 -0.458689 -1) (0.279434 -0.466605 -1) (0.31455 -0.473165 -1) (0.349637 -0.478469 -1) (0.38466 -0.482599 -1) (0.419593 -0.485622 -1) (0.454418 -0.487585 -1) (0.489124 -0.488518 -1) (0.523703 -0.488433 -1) (0.558147 -0.487323 -1) (0.592448 -0.485168 -1) (0.626597 -0.481932 -1) (0.660576 -0.477567 -1) (0.694364 -0.472014 -1) (0.727929 -0.465205 -1) (0.761233 -0.457063 -1) (0.794226 -0.447503 -1) (0.826847 -0.436434 -1) (0.859023 -0.42376 -1) (0.890666 -0.409374 -1) (0.921672 -0.393162 -1) (0.951917 -0.375 -1) (0.981252 -0.354751 -1) (1.00949 -0.332267 -1) (1.03642 -0.307386 -1) (1.06175 -0.279938 -1) (1.08513 -0.249755 -1) (1.10612 -0.216692 -1) (1.12421 -0.180676 -1) (1.13881 -0.141786 -1) (1.14937 -0.100386 -1) (1.1557 -0.057226 -1) (1.15373 -0.0174956 -1) (1.16007 0.0576157 -1) (1.15385 0.101146 -1) (1.14345 0.143023 -1) (1.12901 0.182478 -1) (1.11104 0.219118 -1) (1.09012 0.252838 -1) (1.06676 0.283691 -1) (1.0414 0.311808 -1) (1.01439 0.337347 -1) (0.986015 0.360473 -1) (0.956506 0.38134 -1) (0.926048 0.400094 -1) (0.894794 0.416868 -1) (0.862873 0.431783 -1) (0.830392 0.444949 -1) (0.797442 0.456469 -1) (0.764101 0.466437 -1) (0.730432 0.474942 -1) (0.696489 0.482065 -1) (0.662314 0.487879 -1) (0.627942 0.49245 -1) (0.593399 0.495835 -1) (0.558703 0.498081 -1) (0.523868 0.499222 -1) (0.488905 0.499279 -1) (0.453822 0.498258 -1) (0.41863 0.49615 -1) (0.38334 0.492927 -1) (0.347971 0.488543 -1) (0.31255 0.482938 -1) (0.277112 0.476031 -1) (0.241707 0.467727 -1) (0.206399 0.457914 -1) (0.171269 0.446469 -1) (0.136419 0.433252 -1) (0.10197 0.418117 -1) (0.0680756 0.400905 -1) (0.034916 0.381452 -1) (0.00271101 0.359588 -1) (-0.0282748 0.335147 -1) (-0.0577227 0.307971 -1) (-0.0852509 0.277929 -1) (-0.110408 0.244941 -1) (-0.132677 0.209021 -1) (-0.151495 0.170335 -1) (-0.166315 0.129273 -1) (-0.176695 0.0865351 -1) (-0.182427 0.0431628 -1) (-0.18412 -5.21772e-18 -1) (-0.182427 -0.0431628 -1) (-0.176695 -0.0865351 -1) (-0.166315 -0.129273 -1) (-0.151495 -0.170335 -1) (-0.132677 -0.209021 -1) (-0.110408 -0.244941 -1) (-0.0852509 -0.277929 -1) (-0.0577227 -0.307971 -1) (-0.0282748 -0.335147 -1) (0.00271101 -0.359588 -1) (0.034916 -0.381452 -1) (0.0680756 -0.400905 -1) (0.10197 -0.418117 -1) (0.136419 -0.433252 -1) (0.171269 -0.446469 -1) (0.206399 -0.457914 -1) (0.241707 -0.467727 -1) (0.277112 -0.476031 -1) (0.31255 -0.482938 -1) (0.347971 -0.488543 -1) (0.38334 -0.492927 -1) (0.41863 -0.49615 -1) (0.453822 -0.498258 -1) (0.488905 -0.499279 -1) (0.523868 -0.499222 -1) (0.558703 -0.498081 -1) (0.593399 -0.495835 -1) (0.627942 -0.49245 -1) (0.662314 -0.487879 -1) (0.696489 -0.482065 -1) (0.730432 -0.474942 -1) (0.764101 -0.466437 -1) (0.797442 -0.456469 -1) (0.830392 -0.444949 -1) (0.862873 -0.431783 -1) (0.894794 -0.416868 -1) (0.926048 -0.400094 -1) (0.956506 -0.38134 -1) (0.986015 -0.360473 -1) (1.01439 -0.337347 -1) (1.0414 -0.311808 -1) (1.06676 -0.283691 -1) (1.09012 -0.252838 -1) (1.11104 -0.219118 -1) (1.12901 -0.182478 -1) (1.14345 -0.143023 -1) (1.15385 -0.101146 -1) (1.16007 -0.0576157 -1) (1.15807 -0.0176169 -1) (1.16456 0.0580105 -1) (1.15845 0.10191 -1) (1.1482 0.144263 -1) (1.13392 0.184282 -1) (1.11608 0.221548 -1) (1.09524 0.255929 -1) (1.07191 0.287459 -1) (1.04652 0.316254 -1) (1.01943 0.342462 -1) (0.990928 0.36624 -1) (0.961246 0.387737 -1) (0.930576 0.407096 -1) (0.899073 0.424444 -1) (0.866871 0.439899 -1) (0.834079 0.453568 -1) (0.800794 0.465552 -1) (0.767094 0.475941 -1) (0.733048 0.484819 -1) (0.698713 0.492265 -1) (0.664136 0.498348 -1) (0.629353 0.503133 -1) (0.594396 0.506673 -1) (0.559285 0.509014 -1) (0.524038 0.51019 -1) (0.488669 0.51022 -1) (0.453188 0.509112 -1) (0.417607 0.506856 -1) (0.381942 0.503429 -1) (0.34621 0.498788 -1) (0.310439 0.492874 -1) (0.274667 0.485611 -1) (0.238943 0.476908 -1) (0.203332 0.466658 -1) (0.167916 0.454739 -1) (0.132797 0.441018 -1) (0.0981014 0.425348 -1) (0.0639819 0.407576 -1) (0.0306236 0.387539 -1) (-0.00175035 0.365072 -1) (-0.0328714 0.340011 -1) (-0.0624169 0.312205 -1) (-0.0900019 0.281529 -1) (-0.115174 0.247915 -1) (-0.137416 0.211387 -1) (-0.156176 0.172126 -1) (-0.170918 0.130538 -1) (-0.181222 0.0873309 -1) (-0.1869 0.0435442 -1) (-0.188574 -5.75982e-18 -1) (-0.1869 -0.0435442 -1) (-0.181222 -0.0873309 -1) (-0.170918 -0.130538 -1) (-0.156176 -0.172126 -1) (-0.137416 -0.211387 -1) (-0.115174 -0.247915 -1) (-0.0900019 -0.281529 -1) (-0.0624169 -0.312205 -1) (-0.0328714 -0.340011 -1) (-0.00175035 -0.365072 -1) (0.0306236 -0.387539 -1) (0.0639819 -0.407576 -1) (0.0981014 -0.425348 -1) (0.132797 -0.441018 -1) (0.167916 -0.454739 -1) (0.203332 -0.466658 -1) (0.238943 -0.476908 -1) (0.274667 -0.485611 -1) (0.310439 -0.492874 -1) (0.34621 -0.498788 -1) (0.381942 -0.503429 -1) (0.417607 -0.506856 -1) (0.453188 -0.509112 -1) (0.488669 -0.51022 -1) (0.524038 -0.51019 -1) (0.559285 -0.509014 -1) (0.594396 -0.506673 -1) (0.629353 -0.503133 -1) (0.664136 -0.498348 -1) (0.698713 -0.492265 -1) (0.733048 -0.484819 -1) (0.767094 -0.475941 -1) (0.800794 -0.465552 -1) (0.834079 -0.453568 -1) (0.866871 -0.439899 -1) (0.899073 -0.424444 -1) (0.930576 -0.407096 -1) (0.961246 -0.387737 -1) (0.990928 -0.36624 -1) (1.01943 -0.342462 -1) (1.04652 -0.316254 -1) (1.07191 -0.287459 -1) (1.09524 -0.255929 -1) (1.11608 -0.221548 -1) (1.13392 -0.184282 -1) (1.1482 -0.144263 -1) (1.15845 -0.10191 -1) (1.16456 -0.0580105 -1) (1.16252 -0.0177405 -1) (1.16917 0.0584105 -1) (1.16318 0.102678 -1) (1.15308 0.145505 -1) (1.13896 0.186089 -1) (1.12125 0.223983 -1) (1.10049 0.259029 -1) (1.07719 0.291243 -1) (1.05178 0.320724 -1) (1.02462 0.347611 -1) (0.995992 0.372052 -1) (0.966141 0.394192 -1) (0.935258 0.414166 -1) (0.903506 0.432101 -1) (0.871019 0.448108 -1) (0.837911 0.462294 -1) (0.804282 0.474753 -1) (0.770214 0.485573 -1) (0.73578 0.494835 -1) (0.701039 0.502614 -1) (0.666043 0.508975 -1) (0.630832 0.513981 -1) (0.59544 0.517683 -1) (0.559894 0.520124 -1) (0.524214 0.521337 -1) (0.488416 0.521341 -1) (0.452516 0.520145 -1) (0.416526 0.517741 -1) (0.380465 0.514106 -1) (0.344353 0.509202 -1) (0.308218 0.502972 -1) (0.272098 0.495345 -1) (0.236044 0.486234 -1) (0.200122 0.475535 -1) (0.164414 0.463131 -1) (0.129024 0.448892 -1) (0.0940803 0.432676 -1) (0.0597371 0.414331 -1) (0.0261826 0.393698 -1) (-0.00635663 0.370616 -1) (-0.0376085 0.344925 -1) (-0.0672466 0.316478 -1) (-0.094883 0.285161 -1) (-0.120064 0.250912 -1) (-0.142277 0.21377 -1) (-0.160974 0.17393 -1) (-0.175636 0.131813 -1) (-0.185864 0.088134 -1) (-0.191489 0.0439296 -1) (-0.193144 -6.30193e-18 -1) (-0.191489 -0.0439296 -1) (-0.185864 -0.088134 -1) (-0.175636 -0.131813 -1) (-0.160974 -0.17393 -1) (-0.142277 -0.21377 -1) (-0.120064 -0.250912 -1) (-0.094883 -0.285161 -1) (-0.0672466 -0.316478 -1) (-0.0376085 -0.344925 -1) (-0.00635663 -0.370616 -1) (0.0261826 -0.393698 -1) (0.0597371 -0.414331 -1) (0.0940803 -0.432676 -1) (0.129024 -0.448892 -1) (0.164414 -0.463131 -1) (0.200122 -0.475535 -1) (0.236044 -0.486234 -1) (0.272098 -0.495345 -1) (0.308218 -0.502972 -1) (0.344353 -0.509202 -1) (0.380465 -0.514106 -1) (0.416526 -0.517741 -1) (0.452516 -0.520145 -1) (0.488416 -0.521341 -1) (0.524214 -0.521337 -1) (0.559894 -0.520124 -1) (0.59544 -0.517683 -1) (0.630832 -0.513981 -1) (0.666043 -0.508975 -1) (0.701039 -0.502614 -1) (0.73578 -0.494835 -1) (0.770214 -0.485573 -1) (0.804282 -0.474753 -1) (0.837911 -0.462294 -1) (0.871019 -0.448108 -1) (0.903506 -0.432101 -1) (0.935258 -0.414166 -1) (0.966141 -0.394192 -1) (0.995992 -0.372052 -1) (1.02462 -0.347611 -1) (1.05178 -0.320724 -1) (1.07719 -0.291243 -1) (1.10049 -0.259029 -1) (1.12125 -0.223983 -1) (1.13896 -0.186089 -1) (1.15308 -0.145505 -1) (1.16318 -0.102678 -1) (1.16917 -0.0584105 -1) (1.16711 -0.0178665 -1) (1.17392 0.058816 -1) (1.16803 0.103452 -1) (1.15809 0.146751 -1) (1.14412 0.187898 -1) (1.12655 0.226422 -1) (1.10588 0.262138 -1) (1.08262 0.295042 -1) (1.05719 0.325218 -1) (1.02996 0.352793 -1) (1.00121 0.377909 -1) (0.971193 0.400702 -1) (0.940099 0.421305 -1) (0.908095 0.439839 -1) (0.875319 0.456412 -1) (0.841891 0.471126 -1) (0.80791 0.484073 -1) (0.773464 0.495335 -1) (0.738629 0.504991 -1) (0.703468 0.513112 -1) (0.668036 0.51976 -1) (0.632379 0.524994 -1) (0.596534 0.528864 -1) (0.560531 0.531409 -1) (0.524395 0.532662 -1) (0.488147 0.532643 -1) (0.451805 0.531359 -1) (0.415386 0.528804 -1) (0.378909 0.524958 -1) (0.342398 0.519785 -1) (0.305882 0.513232 -1) (0.269402 0.505233 -1) (0.233007 0.495704 -1) (0.196766 0.484545 -1) (0.16076 0.471645 -1) (0.125097 0.456876 -1) (0.0899032 0.4401 -1) (0.0553372 0.421169 -1) (0.021589 0.399928 -1) (-0.0111119 0.376219 -1) (-0.0424898 0.349887 -1) (-0.0722153 0.320791 -1) (-0.099898 0.288823 -1) (-0.125083 0.253932 -1) (-0.147261 0.216171 -1) (-0.165893 0.175748 -1) (-0.180474 0.133098 -1) (-0.190626 0.0889445 -1) (-0.196198 0.0443188 -1) (-0.197834 -6.84403e-18 -1) (-0.196198 -0.0443188 -1) (-0.190626 -0.0889445 -1) (-0.180474 -0.133098 -1) (-0.165893 -0.175748 -1) (-0.147261 -0.216171 -1) (-0.125083 -0.253932 -1) (-0.099898 -0.288823 -1) (-0.0722153 -0.320791 -1) (-0.0424898 -0.349887 -1) (-0.0111119 -0.376219 -1) (0.021589 -0.399928 -1) (0.0553372 -0.421169 -1) (0.0899032 -0.4401 -1) (0.125097 -0.456876 -1) (0.16076 -0.471645 -1) (0.196766 -0.484545 -1) (0.233007 -0.495704 -1) (0.269402 -0.505233 -1) (0.305882 -0.513232 -1) (0.342398 -0.519785 -1) (0.378909 -0.524958 -1) (0.415386 -0.528804 -1) (0.451805 -0.531359 -1) (0.488147 -0.532643 -1) (0.524395 -0.532662 -1) (0.560531 -0.531409 -1) (0.596534 -0.528864 -1) (0.632379 -0.524994 -1) (0.668036 -0.51976 -1) (0.703468 -0.513112 -1) (0.738629 -0.504991 -1) (0.773464 -0.495335 -1) (0.80791 -0.484073 -1) (0.841891 -0.471126 -1) (0.875319 -0.456412 -1) (0.908095 -0.439839 -1) (0.940099 -0.421305 -1) (0.971193 -0.400702 -1) (1.00121 -0.377909 -1) (1.02996 -0.352793 -1) (1.05719 -0.325218 -1) (1.08262 -0.295042 -1) (1.10588 -0.262138 -1) (1.12655 -0.226422 -1) (1.14412 -0.187898 -1) (1.15809 -0.146751 -1) (1.16803 -0.103452 -1) (1.17392 -0.058816 -1) (1.17183 -0.017995 -1) (1.1788 0.0592271 -1) (1.17301 0.10423 -1) (1.16322 0.148 -1) (1.14942 0.189711 -1) (1.13198 0.228865 -1) (1.11142 0.265256 -1) (1.0882 0.298856 -1) (1.06276 0.329736 -1) (1.03546 0.35801 -1) (1.00659 0.38381 -1) (0.976407 0.40727 -1) (0.945101 0.428514 -1) (0.912844 0.447658 -1) (0.879776 0.46481 -1) (0.84602 0.480065 -1) (0.81168 0.49351 -1) (0.776846 0.505227 -1) (0.741597 0.515287 -1) (0.706002 0.523759 -1) (0.670118 0.530703 -1) (0.633995 0.536173 -1) (0.597677 0.540215 -1) (0.561196 0.54287 -1) (0.524583 0.544167 -1) (0.487863 0.544125 -1) (0.451057 0.542752 -1) (0.414187 0.540045 -1) (0.377274 0.535984 -1) (0.340346 0.530537 -1) (0.303433 0.523655 -1) (0.266577 0.515275 -1) (0.22983 0.505317 -1) (0.19326 0.493689 -1) (0.156952 0.48028 -1) (0.12101 0.464968 -1) (0.0855661 0.44762 -1) (0.0507781 0.428091 -1) (0.0168386 0.40623 -1) (-0.0160202 0.381882 -1) (-0.0475196 0.354898 -1) (-0.0773272 0.325142 -1) (-0.10505 0.292515 -1) (-0.130235 0.256977 -1) (-0.152373 0.218591 -1) (-0.170937 0.17758 -1) (-0.185436 0.134394 -1) (-0.19551 0.0897625 -1) (-0.201029 0.0447122 -1) (-0.202648 -6.84403e-18 -1) (-0.201029 -0.0447122 -1) (-0.19551 -0.0897625 -1) (-0.185436 -0.134394 -1) (-0.170937 -0.17758 -1) (-0.152373 -0.218591 -1) (-0.130235 -0.256977 -1) (-0.10505 -0.292515 -1) (-0.0773272 -0.325142 -1) (-0.0475196 -0.354898 -1) (-0.0160202 -0.381882 -1) (0.0168386 -0.40623 -1) (0.0507781 -0.428091 -1) (0.0855661 -0.44762 -1) (0.12101 -0.464968 -1) (0.156952 -0.48028 -1) (0.19326 -0.493689 -1) (0.22983 -0.505317 -1) (0.266577 -0.515275 -1) (0.303433 -0.523655 -1) (0.340346 -0.530537 -1) (0.377274 -0.535984 -1) (0.414187 -0.540045 -1) (0.451057 -0.542752 -1) (0.487863 -0.544125 -1) (0.524583 -0.544167 -1) (0.561196 -0.54287 -1) (0.597677 -0.540215 -1) (0.633995 -0.536173 -1) (0.670118 -0.530703 -1) (0.706002 -0.523759 -1) (0.741597 -0.515287 -1) (0.776846 -0.505227 -1) (0.81168 -0.49351 -1) (0.84602 -0.480065 -1) (0.879776 -0.46481 -1) (0.912844 -0.447658 -1) (0.945101 -0.428514 -1) (0.976407 -0.40727 -1) (1.00659 -0.38381 -1) (1.03546 -0.35801 -1) (1.06276 -0.329736 -1) (1.0882 -0.298856 -1) (1.11142 -0.265256 -1) (1.13198 -0.228865 -1) (1.14942 -0.189711 -1) (1.16322 -0.148 -1) (1.17301 -0.10423 -1) (1.1788 -0.0592271 -1) (1.17668 -0.0181259 -1) (1.18383 0.0596442 -1) (1.17813 0.105014 -1) (1.16849 0.149253 -1) (1.15485 0.191526 -1) (1.13756 0.231313 -1) (1.11709 0.268383 -1) (1.09392 0.302686 -1) (1.06847 0.334277 -1) (1.04111 0.363259 -1) (1.01213 0.389756 -1) (0.981784 0.413893 -1) (0.950267 0.435791 -1) (0.917755 0.45556 -1) (0.884391 0.473302 -1) (0.850302 0.48911 -1) (0.815594 0.503066 -1) (0.780361 0.515248 -1) (0.744686 0.525724 -1) (0.708641 0.534557 -1) (0.672288 0.541804 -1) (0.635682 0.547517 -1) (0.59887 0.551739 -1) (0.56189 0.554507 -1) (0.524778 0.55585 -1) (0.487563 0.555787 -1) (0.450271 0.554326 -1) (0.412928 0.551464 -1) (0.375559 0.547185 -1) (0.338194 0.541458 -1) (0.300867 0.53424 -1) (0.263621 0.525471 -1) (0.22651 0.515076 -1) (0.189603 0.502966 -1) (0.152984 0.489037 -1) (0.116762 0.473171 -1) (0.0810651 0.455238 -1) (0.0460556 0.435098 -1) (0.0119271 0.412604 -1) (-0.0210857 0.387606 -1) (-0.0527017 0.359958 -1) (-0.0825861 0.329534 -1) (-0.110344 0.296239 -1) (-0.135523 0.260045 -1) (-0.157618 0.221028 -1) (-0.176109 0.179426 -1) (-0.190524 0.135701 -1) (-0.200521 0.0905881 -1) (-0.205988 0.0451096 -1) (-0.207589 -7.38613e-18 -1) (-0.205988 -0.0451096 -1) (-0.200521 -0.0905881 -1) (-0.190524 -0.135701 -1) (-0.176109 -0.179426 -1) (-0.157618 -0.221028 -1) (-0.135523 -0.260045 -1) (-0.110344 -0.296239 -1) (-0.0825861 -0.329534 -1) (-0.0527017 -0.359958 -1) (-0.0210857 -0.387606 -1) (0.0119271 -0.412604 -1) (0.0460556 -0.435098 -1) (0.0810651 -0.455238 -1) (0.116762 -0.473171 -1) (0.152984 -0.489037 -1) (0.189603 -0.502966 -1) (0.22651 -0.515076 -1) (0.263621 -0.525471 -1) (0.300867 -0.53424 -1) (0.338194 -0.541458 -1) (0.375559 -0.547185 -1) (0.412928 -0.551464 -1) (0.450271 -0.554326 -1) (0.487563 -0.555787 -1) (0.524778 -0.55585 -1) (0.56189 -0.554507 -1) (0.59887 -0.551739 -1) (0.635682 -0.547517 -1) (0.672288 -0.541804 -1) (0.708641 -0.534557 -1) (0.744686 -0.525724 -1) (0.780361 -0.515248 -1) (0.815594 -0.503066 -1) (0.850302 -0.48911 -1) (0.884391 -0.473302 -1) (0.917755 -0.45556 -1) (0.950267 -0.435791 -1) (0.981784 -0.413893 -1) (1.01213 -0.389756 -1) (1.04111 -0.363259 -1) (1.06847 -0.334277 -1) (1.09392 -0.302686 -1) (1.11709 -0.268383 -1) (1.13756 -0.231313 -1) (1.15485 -0.191526 -1) (1.16849 -0.149253 -1) (1.17813 -0.105014 -1) (1.18383 -0.0596442 -1) (1.18168 -0.0182593 -1) (1.18899 0.0600673 -1) (1.18339 0.105804 -1) (1.17389 0.150511 -1) (1.16042 0.193346 -1) (1.14327 0.233767 -1) (1.12291 0.271518 -1) (1.0998 0.306531 -1) (1.07435 0.338841 -1) (1.04693 0.368542 -1) (1.01784 0.395747 -1) (0.987329 0.420573 -1) (0.955601 0.443137 -1) (0.922831 0.463543 -1) (0.889168 0.481888 -1) (0.854738 0.498261 -1) (0.819654 0.512741 -1) (0.784012 0.525399 -1) (0.747897 0.5363 -1) (0.711388 0.545504 -1) (0.674549 0.553064 -1) (0.63744 0.559026 -1) (0.600114 0.563433 -1) (0.562614 0.566319 -1) (0.52498 0.567711 -1) (0.487248 0.567628 -1) (0.449447 0.566079 -1) (0.411609 0.563061 -1) (0.373763 0.55856 -1) (0.335942 0.552549 -1) (0.298184 0.544988 -1) (0.260533 0.535821 -1) (0.223046 0.524979 -1) (0.185791 0.512377 -1) (0.148856 0.497916 -1) (0.112347 0.481483 -1) (0.0763963 0.462953 -1) (0.0411656 0.442189 -1) (0.00685052 0.41905 -1) (-0.0263127 0.393389 -1) (-0.0580405 0.365068 -1) (-0.0879961 0.333964 -1) (-0.115784 0.299993 -1) (-0.140951 0.263136 -1) (-0.162998 0.223484 -1) (-0.181414 0.181286 -1) (-0.195743 0.137018 -1) (-0.205662 0.0914216 -1) (-0.211077 0.0455113 -1) (-0.21266 -7.16929e-18 -1) (-0.211077 -0.0455113 -1) (-0.205662 -0.0914216 -1) (-0.195743 -0.137018 -1) (-0.181414 -0.181286 -1) (-0.162998 -0.223484 -1) (-0.140951 -0.263136 -1) (-0.115784 -0.299993 -1) (-0.0879961 -0.333964 -1) (-0.0580405 -0.365068 -1) (-0.0263127 -0.393389 -1) (0.00685052 -0.41905 -1) (0.0411656 -0.442189 -1) (0.0763963 -0.462953 -1) (0.112347 -0.481483 -1) (0.148856 -0.497916 -1) (0.185791 -0.512377 -1) (0.223046 -0.524979 -1) (0.260533 -0.535821 -1) (0.298184 -0.544988 -1) (0.335942 -0.552549 -1) (0.373763 -0.55856 -1) (0.411609 -0.563061 -1) (0.449447 -0.566079 -1) (0.487248 -0.567628 -1) (0.52498 -0.567711 -1) (0.562614 -0.566319 -1) (0.600114 -0.563433 -1) (0.63744 -0.559026 -1) (0.674549 -0.553064 -1) (0.711388 -0.545504 -1) (0.747897 -0.5363 -1) (0.784012 -0.525399 -1) (0.819654 -0.512741 -1) (0.854738 -0.498261 -1) (0.889168 -0.481888 -1) (0.922831 -0.463543 -1) (0.955601 -0.443137 -1) (0.987329 -0.420573 -1) (1.01784 -0.395747 -1) (1.04693 -0.368542 -1) (1.07435 -0.338841 -1) (1.0998 -0.306531 -1) (1.12291 -0.271518 -1) (1.14327 -0.233767 -1) (1.16042 -0.193346 -1) (1.17389 -0.150511 -1) (1.18339 -0.105804 -1) (1.18899 -0.0600673 -1) (1.18683 -0.0183952 -1) (1.19431 0.0604967 -1) (1.1888 0.1066 -1) (1.17944 0.151773 -1) (1.16613 0.195169 -1) (1.14913 0.236226 -1) (1.12888 0.274663 -1) (1.10583 0.31039 -1) (1.08039 0.343429 -1) (1.05292 0.373858 -1) (1.02372 0.401782 -1) (0.993045 0.42731 -1) (0.961105 0.450552 -1) (0.928076 0.471607 -1) (0.894108 0.490569 -1) (0.859332 0.50752 -1) (0.823862 0.522535 -1) (0.787799 0.535681 -1) (0.751233 0.547018 -1) (0.714243 0.556602 -1) (0.676901 0.564482 -1) (0.639271 0.570702 -1) (0.60141 0.5753 -1) (0.563368 0.578308 -1) (0.525191 0.579752 -1) (0.486918 0.579651 -1) (0.448586 0.578012 -1) (0.410231 0.574835 -1) (0.371887 0.570109 -1) (0.33359 0.563809 -1) (0.295382 0.555898 -1) (0.257311 0.546326 -1) (0.219434 0.535027 -1) (0.181822 0.521923 -1) (0.144562 0.506918 -1) (0.107763 0.489906 -1) (0.0715559 0.470765 -1) (0.0361042 0.449366 -1) (0.00160451 0.425568 -1) (-0.0317053 0.399233 -1) (-0.0635402 0.370227 -1) (-0.0935614 0.338434 -1) (-0.121373 0.303778 -1) (-0.146523 0.266252 -1) (-0.168517 0.225958 -1) (-0.186856 0.183161 -1) (-0.201097 0.138347 -1) (-0.210938 0.0922631 -1) (-0.216302 0.0459172 -1) (-0.217867 -8.25349e-18 -1) (-0.216302 -0.0459172 -1) (-0.210938 -0.0922631 -1) (-0.201097 -0.138347 -1) (-0.186856 -0.183161 -1) (-0.168517 -0.225958 -1) (-0.146523 -0.266252 -1) (-0.121373 -0.303778 -1) (-0.0935614 -0.338434 -1) (-0.0635402 -0.370227 -1) (-0.0317053 -0.399233 -1) (0.00160451 -0.425568 -1) (0.0361042 -0.449366 -1) (0.0715559 -0.470765 -1) (0.107763 -0.489906 -1) (0.144562 -0.506918 -1) (0.181822 -0.521923 -1) (0.219434 -0.535027 -1) (0.257311 -0.546326 -1) (0.295382 -0.555898 -1) (0.33359 -0.563809 -1) (0.371887 -0.570109 -1) (0.410231 -0.574835 -1) (0.448586 -0.578012 -1) (0.486918 -0.579651 -1) (0.525191 -0.579752 -1) (0.563368 -0.578308 -1) (0.60141 -0.5753 -1) (0.639271 -0.570702 -1) (0.676901 -0.564482 -1) (0.714243 -0.556602 -1) (0.751233 -0.547018 -1) (0.787799 -0.535681 -1) (0.823862 -0.522535 -1) (0.859332 -0.50752 -1) (0.894108 -0.490569 -1) (0.928076 -0.471607 -1) (0.961105 -0.450552 -1) (0.993045 -0.42731 -1) (1.02372 -0.401782 -1) (1.05292 -0.373858 -1) (1.08039 -0.343429 -1) (1.10583 -0.31039 -1) (1.12888 -0.274663 -1) (1.14913 -0.236226 -1) (1.16613 -0.195169 -1) (1.17944 -0.151773 -1) (1.1888 -0.1066 -1) (1.19431 -0.0604967 -1) (1.19212 -0.0185337 -1) (1.19985 0.0609485 -1) (1.19443 0.10745 -1) (1.18522 0.153123 -1) (1.17207 0.197117 -1) (1.15522 0.238848 -1) (1.13508 0.27801 -1) (1.11208 0.31449 -1) (1.08663 0.348292 -1) (1.0591 0.379482 -1) (1.02978 0.408154 -1) (0.998933 0.434412 -1) (0.966767 0.458358 -1) (0.933463 0.480088 -1) (0.899176 0.499688 -1) (0.864038 0.517237 -1) (0.828169 0.532805 -1) (0.791671 0.546455 -1) (0.754639 0.558243 -1) (0.717156 0.56822 -1) (0.679299 0.57643 -1) (0.641136 0.582914 -1) (0.602731 0.587708 -1) (0.564137 0.590841 -1) (0.525407 0.592337 -1) (0.486585 0.592214 -1) (0.447714 0.59048 -1) (0.408833 0.587137 -1) (0.369983 0.582175 -1) (0.331202 0.575573 -1) (0.292536 0.567299 -1) (0.254034 0.557306 -1) (0.215757 0.545534 -1) (0.177775 0.531909 -1) (0.140178 0.516342 -1) (0.103073 0.49873 -1) (0.0665955 0.478958 -1) (0.0309073 0.456899 -1) (-0.00379264 0.43242 -1) (-0.0372646 0.405385 -1) (-0.0692211 0.375665 -1) (-0.0993215 0.343152 -1) (-0.127168 0.30778 -1) (-0.15231 0.269551 -1) (-0.174258 0.228581 -1) (-0.192522 0.18515 -1) (-0.206676 0.139757 -1) (-0.216439 0.0931554 -1) (-0.221749 0.0463469 -1) (-0.223297 -8.8498e-18 -1) (-0.221749 -0.0463469 -1) (-0.216439 -0.0931554 -1) (-0.206676 -0.139757 -1) (-0.192522 -0.18515 -1) (-0.174258 -0.228581 -1) (-0.15231 -0.269551 -1) (-0.127168 -0.30778 -1) (-0.0993215 -0.343152 -1) (-0.0692211 -0.375665 -1) (-0.0372646 -0.405385 -1) (-0.00379264 -0.43242 -1) (0.0309073 -0.456899 -1) (0.0665955 -0.478958 -1) (0.103073 -0.49873 -1) (0.140178 -0.516342 -1) (0.177775 -0.531909 -1) (0.215757 -0.545534 -1) (0.254034 -0.557306 -1) (0.292536 -0.567299 -1) (0.331202 -0.575573 -1) (0.369983 -0.582175 -1) (0.408833 -0.587137 -1) (0.447714 -0.59048 -1) (0.486585 -0.592214 -1) (0.525407 -0.592337 -1) (0.564137 -0.590841 -1) (0.602731 -0.587708 -1) (0.641136 -0.582914 -1) (0.679299 -0.57643 -1) (0.717156 -0.56822 -1) (0.754639 -0.558243 -1) (0.791671 -0.546455 -1) (0.828169 -0.532805 -1) (0.864038 -0.517237 -1) (0.899176 -0.499688 -1) (0.933463 -0.480088 -1) (0.966767 -0.458358 -1) (0.998933 -0.434412 -1) (1.02978 -0.408154 -1) (1.0591 -0.379482 -1) (1.08663 -0.348292 -1) (1.11208 -0.31449 -1) (1.13508 -0.27801 -1) (1.15522 -0.238848 -1) (1.17207 -0.197117 -1) (1.18522 -0.153123 -1) (1.19443 -0.10745 -1) (1.19985 -0.0609485 -1) (1.19763 -0.0186743 -1) (1.20555 0.061407 -1) (1.20021 0.108306 -1) (1.19115 0.154476 -1) (1.17817 0.199068 -1) (1.16147 0.241475 -1) (1.14144 0.281365 -1) (1.1185 0.318604 -1) (1.09305 0.353178 -1) (1.06546 0.38514 -1) (1.03603 0.414573 -1) (1.005 0.441575 -1) (0.972612 0.466239 -1) (0.939031 0.488657 -1) (0.90442 0.508909 -1) (0.868915 0.527071 -1) (0.832636 0.543206 -1) (0.795692 0.557374 -1) (0.758179 0.569624 -1) (0.720187 0.580004 -1) (0.681797 0.588555 -1) (0.643081 0.595312 -1) (0.604108 0.600309 -1) (0.564939 0.603571 -1) (0.525631 0.605123 -1) (0.486235 0.604979 -1) (0.446799 0.603151 -1) (0.407369 0.599639 -1) (0.367989 0.594436 -1) (0.328703 0.587527 -1) (0.289559 0.57888 -1) (0.250611 0.568456 -1) (0.211919 0.5562 -1) (0.173558 0.542042 -1) (0.135616 0.525899 -1) (0.0982023 0.507674 -1) (0.0614515 0.487257 -1) (0.0255275 0.464524 -1) (-0.00937024 0.439349 -1) (-0.0430002 0.4116 -1) (-0.0750732 0.381155 -1) (-0.105247 0.347913 -1) (-0.133123 0.311815 -1) (-0.158251 0.272875 -1) (-0.180148 0.231223 -1) (-0.198334 0.187154 -1) (-0.2124 0.141178 -1) (-0.222084 0.0940559 -1) (-0.227342 0.046781 -1) (-0.228872 -9.12085e-18 -1) (-0.227342 -0.046781 -1) (-0.222084 -0.0940559 -1) (-0.2124 -0.141178 -1) (-0.198334 -0.187154 -1) (-0.180148 -0.231223 -1) (-0.158251 -0.272875 -1) (-0.133123 -0.311815 -1) (-0.105247 -0.347913 -1) (-0.0750732 -0.381155 -1) (-0.0430002 -0.4116 -1) (-0.00937024 -0.439349 -1) (0.0255275 -0.464524 -1) (0.0614515 -0.487257 -1) (0.0982023 -0.507674 -1) (0.135616 -0.525899 -1) (0.173558 -0.542042 -1) (0.211919 -0.5562 -1) (0.250611 -0.568456 -1) (0.289559 -0.57888 -1) (0.328703 -0.587527 -1) (0.367989 -0.594436 -1) (0.407369 -0.599639 -1) (0.446799 -0.603151 -1) (0.486235 -0.604979 -1) (0.525631 -0.605123 -1) (0.564939 -0.603571 -1) (0.604108 -0.600309 -1) (0.643081 -0.595312 -1) (0.681797 -0.588555 -1) (0.720187 -0.580004 -1) (0.758179 -0.569624 -1) (0.795692 -0.557374 -1) (0.832636 -0.543206 -1) (0.868915 -0.527071 -1) (0.90442 -0.508909 -1) (0.939031 -0.488657 -1) (0.972612 -0.466239 -1) (1.005 -0.441575 -1) (1.03603 -0.414573 -1) (1.06546 -0.38514 -1) (1.09305 -0.353178 -1) (1.1185 -0.318604 -1) (1.14144 -0.281365 -1) (1.16147 -0.241475 -1) (1.17817 -0.199068 -1) (1.19115 -0.154476 -1) (1.20021 -0.108306 -1) (1.20555 -0.061407 -1) (1.20331 -0.0188183 -1) (1.21141 0.0618728 -1) (1.20616 0.109169 -1) (1.19724 0.155834 -1) (1.18443 0.201023 -1) (1.16788 0.244106 -1) (1.14797 0.284729 -1) (1.12509 0.322734 -1) (1.09965 0.358089 -1) (1.072 0.390833 -1) (1.04245 0.42104 -1) (1.01126 0.448798 -1) (0.978642 0.474194 -1) (0.944783 0.497314 -1) (0.909844 0.518234 -1) (0.873963 0.537022 -1) (0.837266 0.553739 -1) (0.799864 0.568437 -1) (0.761857 0.581162 -1) (0.723339 0.591957 -1) (0.684395 0.600858 -1) (0.645105 0.607897 -1) (0.605542 0.613103 -1) (0.565773 0.6165 -1) (0.525862 0.61811 -1) (0.485867 0.617948 -1) (0.445841 0.616023 -1) (0.405837 0.61234 -1) (0.365904 0.606893 -1) (0.326091 0.599668 -1) (0.286451 0.590642 -1) (0.247039 0.579777 -1) (0.207919 0.567025 -1) (0.169167 0.552321 -1) (0.130872 0.53559 -1) (0.093145 0.516738 -1) (0.0561193 0.49566 -1) (0.0199599 0.472241 -1) (-0.015133 0.446356 -1) (-0.0489168 0.417881 -1) (-0.0811009 0.386698 -1) (-0.111342 0.352715 -1) (-0.139241 0.315882 -1) (-0.16435 0.276224 -1) (-0.186192 0.233885 -1) (-0.204296 0.189173 -1) (-0.218272 0.142612 -1) (-0.227878 0.0949649 -1) (-0.233085 0.0472197 -1) (-0.234597 -9.12085e-18 -1) (-0.233085 -0.0472197 -1) (-0.227878 -0.0949649 -1) (-0.218272 -0.142612 -1) (-0.204296 -0.189173 -1) (-0.186192 -0.233885 -1) (-0.16435 -0.276224 -1) (-0.139241 -0.315882 -1) (-0.111342 -0.352715 -1) (-0.0811009 -0.386698 -1) (-0.0489168 -0.417881 -1) (-0.015133 -0.446356 -1) (0.0199599 -0.472241 -1) (0.0561193 -0.49566 -1) (0.093145 -0.516738 -1) (0.130872 -0.53559 -1) (0.169167 -0.552321 -1) (0.207919 -0.567025 -1) (0.247039 -0.579777 -1) (0.286451 -0.590642 -1) (0.326091 -0.599668 -1) (0.365904 -0.606893 -1) (0.405837 -0.61234 -1) (0.445841 -0.616023 -1) (0.485867 -0.617948 -1) (0.525862 -0.61811 -1) (0.565773 -0.6165 -1) (0.605542 -0.613103 -1) (0.645105 -0.607897 -1) (0.684395 -0.600858 -1) (0.723339 -0.591957 -1) (0.761857 -0.581162 -1) (0.799864 -0.568437 -1) (0.837266 -0.553739 -1) (0.873963 -0.537022 -1) (0.909844 -0.518234 -1) (0.944783 -0.497314 -1) (0.978642 -0.474194 -1) (1.01126 -0.448798 -1) (1.04245 -0.42104 -1) (1.072 -0.390833 -1) (1.09965 -0.358089 -1) (1.12509 -0.322734 -1) (1.14797 -0.284729 -1) (1.16788 -0.244106 -1) (1.18443 -0.201023 -1) (1.19724 -0.155834 -1) (1.20616 -0.109169 -1) (1.21141 -0.0618728 -1) (1.20916 -0.0189657 -1) (1.21744 0.0623462 -1) (1.21227 0.110038 -1) (1.2035 0.157197 -1) (1.19084 0.202981 -1) (1.17445 0.246742 -1) (1.15466 0.288101 -1) (1.13185 0.326878 -1) (1.10642 0.363023 -1) (1.07873 0.396561 -1) (1.04907 0.427554 -1) (1.01771 0.456081 -1) (0.984863 0.482224 -1) (0.950722 0.506061 -1) (0.91545 0.527663 -1) (0.879187 0.547092 -1) (0.842062 0.564403 -1) (0.804189 0.579644 -1) (0.765673 0.592857 -1) (0.726612 0.604078 -1) (0.687096 0.613339 -1) (0.64721 0.620668 -1) (0.607034 0.62609 -1) (0.566641 0.629628 -1) (0.526103 0.631299 -1) (0.485482 0.631119 -1) (0.444841 0.629098 -1) (0.404238 0.625241 -1) (0.363728 0.619545 -1) (0.323366 0.611999 -1) (0.283209 0.602584 -1) (0.243316 0.591269 -1) (0.203754 0.57801 -1) (0.1646 0.562749 -1) (0.125944 0.545415 -1) (0.0878975 0.525921 -1) (0.0505946 0.50417 -1) (0.0141999 0.480049 -1) (-0.0210857 0.45344 -1) (-0.0550193 0.424226 -1) (-0.0873092 0.392294 -1) (-0.117611 0.35756 -1) (-0.145527 0.319982 -1) (-0.170612 0.279599 -1) (-0.192393 0.236566 -1) (-0.210414 0.191207 -1) (-0.224299 0.144057 -1) (-0.233826 0.0958826 -1) (-0.238982 0.0476631 -1) (-0.240477 -9.3919e-18 -1) (-0.238982 -0.0476631 -1) (-0.233826 -0.0958826 -1) (-0.224299 -0.144057 -1) (-0.210414 -0.191207 -1) (-0.192393 -0.236566 -1) (-0.170612 -0.279599 -1) (-0.145527 -0.319982 -1) (-0.117611 -0.35756 -1) (-0.0873092 -0.392294 -1) (-0.0550193 -0.424226 -1) (-0.0210857 -0.45344 -1) (0.0141999 -0.480049 -1) (0.0505946 -0.50417 -1) (0.0878975 -0.525921 -1) (0.125944 -0.545415 -1) (0.1646 -0.562749 -1) (0.203754 -0.57801 -1) (0.243316 -0.591269 -1) (0.283209 -0.602584 -1) (0.323366 -0.611999 -1) (0.363728 -0.619545 -1) (0.404238 -0.625241 -1) (0.444841 -0.629098 -1) (0.485482 -0.631119 -1) (0.526103 -0.631299 -1) (0.566641 -0.629628 -1) (0.607034 -0.62609 -1) (0.64721 -0.620668 -1) (0.687096 -0.613339 -1) (0.726612 -0.604078 -1) (0.765673 -0.592857 -1) (0.804189 -0.579644 -1) (0.842062 -0.564403 -1) (0.879187 -0.547092 -1) (0.91545 -0.527663 -1) (0.950722 -0.506061 -1) (0.984863 -0.482224 -1) (1.01771 -0.456081 -1) (1.04907 -0.427554 -1) (1.07873 -0.396561 -1) (1.10642 -0.363023 -1) (1.13185 -0.326878 -1) (1.15466 -0.288101 -1) (1.17445 -0.246742 -1) (1.19084 -0.202981 -1) (1.2035 -0.157197 -1) (1.21227 -0.110038 -1) (1.21744 -0.0623462 -1) (1.21517 -0.0191167 -1) (1.22365 0.0628274 -1) (1.21856 0.110916 -1) (1.20992 0.158566 -1) (1.19743 0.204943 -1) (1.1812 0.249383 -1) (1.16153 0.291481 -1) (1.13879 0.331037 -1) (1.11338 0.367981 -1) (1.08564 0.402323 -1) (1.05588 0.434115 -1) (1.02435 0.463425 -1) (0.991276 0.490329 -1) (0.956852 0.514897 -1) (0.921241 0.537195 -1) (0.884589 0.55728 -1) (0.847026 0.5752 -1) (0.808669 0.590998 -1) (0.769629 0.604711 -1) (0.730007 0.616369 -1) (0.6899 0.625999 -1) (0.649397 0.633626 -1) (0.608585 0.639272 -1) (0.567544 0.642954 -1) (0.526352 0.64469 -1) (0.485081 0.644494 -1) (0.443799 0.642376 -1) (0.402572 0.638342 -1) (0.361461 0.632392 -1) (0.320527 0.624519 -1) (0.279833 0.614708 -1) (0.239441 0.602933 -1) (0.199421 0.589155 -1) (0.159853 0.573323 -1) (0.120827 0.555373 -1) (0.0824559 0.535225 -1) (0.0448729 0.512785 -1) (0.00824294 0.487948 -1) (-0.0272333 0.460603 -1) (-0.0613125 0.430635 -1) (-0.0937028 0.397943 -1) (-0.12406 0.362446 -1) (-0.151987 0.324115 -1) (-0.177041 0.282999 -1) (-0.198757 0.239267 -1) (-0.216691 0.193257 -1) (-0.230483 0.145514 -1) (-0.239932 0.0968091 -1) (-0.245038 0.0481114 -1) (-0.246516 -9.44611e-18 -1) (-0.245038 -0.0481114 -1) (-0.239932 -0.0968091 -1) (-0.230483 -0.145514 -1) (-0.216691 -0.193257 -1) (-0.198757 -0.239267 -1) (-0.177041 -0.282999 -1) (-0.151987 -0.324115 -1) (-0.12406 -0.362446 -1) (-0.0937028 -0.397943 -1) (-0.0613125 -0.430635 -1) (-0.0272333 -0.460603 -1) (0.00824294 -0.487948 -1) (0.0448729 -0.512785 -1) (0.0824559 -0.535225 -1) (0.120827 -0.555373 -1) (0.159853 -0.573323 -1) (0.199421 -0.589155 -1) (0.239441 -0.602933 -1) (0.279833 -0.614708 -1) (0.320527 -0.624519 -1) (0.361461 -0.632392 -1) (0.402572 -0.638342 -1) (0.443799 -0.642376 -1) (0.485081 -0.644494 -1) (0.526352 -0.64469 -1) (0.567544 -0.642954 -1) (0.608585 -0.639272 -1) (0.649397 -0.633626 -1) (0.6899 -0.625999 -1) (0.730007 -0.616369 -1) (0.769629 -0.604711 -1) (0.808669 -0.590998 -1) (0.847026 -0.5752 -1) (0.884589 -0.55728 -1) (0.921241 -0.537195 -1) (0.956852 -0.514897 -1) (0.991276 -0.490329 -1) (1.02435 -0.463425 -1) (1.05588 -0.434115 -1) (1.08564 -0.402323 -1) (1.11338 -0.367981 -1) (1.13879 -0.331037 -1) (1.16153 -0.291481 -1) (1.1812 -0.249383 -1) (1.19743 -0.204943 -1) (1.20992 -0.158566 -1) (1.21856 -0.110916 -1) (1.22365 -0.0628274 -1) (1.22137 -0.0192711 -1) (1.23005 0.0633167 -1) (1.22502 0.111802 -1) (1.21651 0.159941 -1) (1.20418 0.206911 -1) (1.18811 0.252029 -1) (1.16857 0.294871 -1) (1.14592 0.335212 -1) (1.12053 0.372963 -1) (1.09275 0.40812 -1) (1.06288 0.440722 -1) (1.03119 0.47083 -1) (0.997886 0.498509 -1) (0.963176 0.523823 -1) (0.927222 0.546832 -1) (0.890172 0.567586 -1) (0.85216 0.586129 -1) (0.813307 0.602498 -1) (0.773728 0.616722 -1) (0.733528 0.628828 -1) (0.692808 0.638839 -1) (0.651667 0.646772 -1) (0.610195 0.652647 -1) (0.568481 0.65648 -1) (0.526611 0.658284 -1) (0.484663 0.658072 -1) (0.442714 0.655856 -1) (0.400838 0.651643 -1) (0.359102 0.645435 -1) (0.317574 0.637228 -1) (0.276321 0.627013 -1) (0.235412 0.614767 -1) (0.194919 0.60046 -1) (0.154923 0.584046 -1) (0.115519 0.565467 -1) (0.0768161 0.544649 -1) (0.0389499 0.521506 -1) (0.00208427 0.495939 -1) (-0.0335805 0.467843 -1) (-0.0678014 0.43711 -1) (-0.100287 0.403644 -1) (-0.130693 0.367374 -1) (-0.158624 0.328281 -1) (-0.183642 0.286425 -1) (-0.205289 0.241989 -1) (-0.223132 0.195323 -1) (-0.236832 0.146984 -1) (-0.246202 0.0977447 -1) (-0.251258 0.0485646 -1) (-0.25272 -9.60874e-18 -1) (-0.251258 -0.0485646 -1) (-0.246202 -0.0977447 -1) (-0.236832 -0.146984 -1) (-0.223132 -0.195323 -1) (-0.205289 -0.241989 -1) (-0.183642 -0.286425 -1) (-0.158624 -0.328281 -1) (-0.130693 -0.367374 -1) (-0.100287 -0.403644 -1) (-0.0678014 -0.43711 -1) (-0.0335805 -0.467843 -1) (0.00208427 -0.495939 -1) (0.0389499 -0.521506 -1) (0.0768161 -0.544649 -1) (0.115519 -0.565467 -1) (0.154923 -0.584046 -1) (0.194919 -0.60046 -1) (0.235412 -0.614767 -1) (0.276321 -0.627013 -1) (0.317574 -0.637228 -1) (0.359102 -0.645435 -1) (0.400838 -0.651643 -1) (0.442714 -0.655856 -1) (0.484663 -0.658072 -1) (0.526611 -0.658284 -1) (0.568481 -0.65648 -1) (0.610195 -0.652647 -1) (0.651667 -0.646772 -1) (0.692808 -0.638839 -1) (0.733528 -0.628828 -1) (0.773728 -0.616722 -1) (0.813307 -0.602498 -1) (0.85216 -0.586129 -1) (0.890172 -0.567586 -1) (0.927222 -0.546832 -1) (0.963176 -0.523823 -1) (0.997886 -0.498509 -1) (1.03119 -0.47083 -1) (1.06288 -0.440722 -1) (1.09275 -0.40812 -1) (1.12053 -0.372963 -1) (1.14592 -0.335212 -1) (1.16857 -0.294871 -1) (1.18811 -0.252029 -1) (1.20418 -0.206911 -1) (1.21651 -0.159941 -1) (1.22502 -0.111802 -1) (1.23005 -0.0633167 -1) (1.22775 -0.019429 -1) (1.23663 0.0638143 -1) (1.23167 0.112696 -1) (1.22329 0.161324 -1) (1.21112 0.208884 -1) (1.19521 0.254682 -1) (1.1758 0.29827 -1) (1.15323 0.339401 -1) (1.12787 0.377969 -1) (1.10005 0.413952 -1) (1.07008 0.447377 -1) (1.03822 0.478295 -1) (1.0047 0.506763 -1) (0.969696 0.532839 -1) (0.933393 0.556573 -1) (0.895938 0.578012 -1) (0.857467 0.597192 -1) (0.818105 0.614144 -1) (0.77797 0.628893 -1) (0.737173 0.641459 -1) (0.695823 0.651858 -1) (0.65402 0.660107 -1) (0.611865 0.666218 -1) (0.569454 0.670205 -1) (0.52688 0.67208 -1) (0.484229 0.671855 -1) (0.441588 0.66954 -1) (0.399036 0.665145 -1) (0.35665 0.658674 -1) (0.314505 0.650127 -1) (0.272673 0.639499 -1) (0.231227 0.626774 -1) (0.190245 0.611926 -1) (0.149809 0.594917 -1) (0.110015 0.575695 -1) (0.0709746 0.554194 -1) (0.0328214 0.530334 -1) (-0.00428067 0.504023 -1) (-0.0401322 0.475161 -1) (-0.074491 0.443649 -1) (-0.107066 0.409397 -1) (-0.137515 0.372345 -1) (-0.165444 0.33248 -1) (-0.19042 0.289876 -1) (-0.211993 0.24473 -1) (-0.229744 0.197405 -1) (-0.243348 0.148467 -1) (-0.252641 0.0986896 -1) (-0.257648 0.0490228 -1) (-0.259094 -9.71716e-18 -1) (-0.257648 -0.0490228 -1) (-0.252641 -0.0986896 -1) (-0.243348 -0.148467 -1) (-0.229744 -0.197405 -1) (-0.211993 -0.24473 -1) (-0.19042 -0.289876 -1) (-0.165444 -0.33248 -1) (-0.137515 -0.372345 -1) (-0.107066 -0.409397 -1) (-0.074491 -0.443649 -1) (-0.0401322 -0.475161 -1) (-0.00428067 -0.504023 -1) (0.0328214 -0.530334 -1) (0.0709746 -0.554194 -1) (0.110015 -0.575695 -1) (0.149809 -0.594917 -1) (0.190245 -0.611926 -1) (0.231227 -0.626774 -1) (0.272673 -0.639499 -1) (0.314505 -0.650127 -1) (0.35665 -0.658674 -1) (0.399036 -0.665145 -1) (0.441588 -0.66954 -1) (0.484229 -0.671855 -1) (0.52688 -0.67208 -1) (0.569454 -0.670205 -1) (0.611865 -0.666218 -1) (0.65402 -0.660107 -1) (0.695823 -0.651858 -1) (0.737173 -0.641459 -1) (0.77797 -0.628893 -1) (0.818105 -0.614144 -1) (0.857467 -0.597192 -1) (0.895938 -0.578012 -1) (0.933393 -0.556573 -1) (0.969696 -0.532839 -1) (1.0047 -0.506763 -1) (1.03822 -0.478295 -1) (1.07008 -0.447377 -1) (1.10005 -0.413952 -1) (1.12787 -0.377969 -1) (1.15323 -0.339401 -1) (1.1758 -0.29827 -1) (1.19521 -0.254682 -1) (1.21112 -0.208884 -1) (1.22329 -0.161324 -1) (1.23167 -0.112696 -1) (1.23663 -0.0638143 -1) (1.23432 -0.0195905 -1) (1.2434 0.0643205 -1) (1.23851 0.113601 -1) (1.23025 0.162716 -1) (1.21824 0.210864 -1) (1.20249 0.257341 -1) (1.18321 0.301678 -1) (1.16073 0.343606 -1) (1.1354 0.382998 -1) (1.10756 0.419818 -1) (1.07749 0.454079 -1) (1.04547 0.485821 -1) (1.01171 0.515093 -1) (0.976417 0.541944 -1) (0.939759 0.56642 -1) (0.90189 0.588558 -1) (0.862948 0.60839 -1) (0.823064 0.625939 -1) (0.782357 0.641224 -1) (0.740946 0.65426 -1) (0.698943 0.665059 -1) (0.656458 0.673631 -1) (0.613597 0.679985 -1) (0.570463 0.684131 -1) (0.527159 0.68608 -1) (0.48378 0.685842 -1) (0.440419 0.683428 -1) (0.397167 0.678848 -1) (0.354106 0.672109 -1) (0.31132 0.663217 -1) (0.268887 0.652168 -1) (0.226886 0.638953 -1) (0.185397 0.623553 -1) (0.144508 0.605937 -1) (0.104314 0.586059 -1) (0.0649275 0.56386 -1) (0.0264833 0.539268 -1) (-0.0108565 0.512198 -1) (-0.0468933 0.482557 -1) (-0.0813864 0.450253 -1) (-0.114046 0.415204 -1) (-0.144532 0.377357 -1) (-0.172453 0.336712 -1) (-0.197381 0.293354 -1) (-0.218875 0.247492 -1) (-0.23653 0.199503 -1) (-0.250039 0.149962 -1) (-0.259253 0.099644 -1) (-0.264212 0.0494861 -1) (-0.265643 -9.55453e-18 -1) (-0.264212 -0.0494861 -1) (-0.259253 -0.099644 -1) (-0.250039 -0.149962 -1) (-0.23653 -0.199503 -1) (-0.218875 -0.247492 -1) (-0.197381 -0.293354 -1) (-0.172453 -0.336712 -1) (-0.144532 -0.377357 -1) (-0.114046 -0.415204 -1) (-0.0813864 -0.450253 -1) (-0.0468933 -0.482557 -1) (-0.0108565 -0.512198 -1) (0.0264833 -0.539268 -1) (0.0649275 -0.56386 -1) (0.104314 -0.586059 -1) (0.144508 -0.605937 -1) (0.185397 -0.623553 -1) (0.226886 -0.638953 -1) (0.268887 -0.652168 -1) (0.31132 -0.663217 -1) (0.354106 -0.672109 -1) (0.397167 -0.678848 -1) (0.440419 -0.683428 -1) (0.48378 -0.685842 -1) (0.527159 -0.68608 -1) (0.570463 -0.684131 -1) (0.613597 -0.679985 -1) (0.656458 -0.673631 -1) (0.698943 -0.665059 -1) (0.740946 -0.65426 -1) (0.782357 -0.641224 -1) (0.823064 -0.625939 -1) (0.862948 -0.60839 -1) (0.90189 -0.588558 -1) (0.939759 -0.56642 -1) (0.976417 -0.541944 -1) (1.01171 -0.515093 -1) (1.04547 -0.485821 -1) (1.07749 -0.454079 -1) (1.10756 -0.419818 -1) (1.1354 -0.382998 -1) (1.16073 -0.343606 -1) (1.18321 -0.301678 -1) (1.20249 -0.257341 -1) (1.21824 -0.210864 -1) (1.23025 -0.162716 -1) (1.23851 -0.113601 -1) (1.2434 -0.0643205 -1) (1.24108 -0.0197554 -1) (1.25037 0.0648354 -1) (1.24554 0.114516 -1) (1.2374 0.164116 -1) (1.22554 0.212851 -1) (1.20995 0.260008 -1) (1.19082 0.305097 -1) (1.16843 0.347827 -1) (1.14314 0.388052 -1) (1.11527 0.425719 -1) (1.0851 0.460827 -1) (1.05292 0.493407 -1) (1.01893 0.523498 -1) (0.983341 0.55114 -1) (0.946323 0.576373 -1) (0.908031 0.599225 -1) (0.868607 0.619722 -1) (0.828185 0.637882 -1) (0.786892 0.653716 -1) (0.744847 0.667234 -1) (0.702172 0.678442 -1) (0.658981 0.687345 -1) (0.615389 0.693948 -1) (0.571509 0.698259 -1) (0.527448 0.700284 -1) (0.483315 0.700035 -1) (0.439209 0.69752 -1) (0.39523 0.692753 -1) (0.35147 0.685743 -1) (0.308019 0.676497 -1) (0.264963 0.665019 -1) (0.222386 0.651305 -1) (0.180374 0.635342 -1) (0.139016 0.617106 -1) (0.098411 0.596558 -1) (0.0586715 0.573648 -1) (0.0199314 0.548309 -1) (-0.0176476 0.520466 -1) (-0.0538687 0.490031 -1) (-0.0884926 0.456921 -1) (-0.121232 0.421063 -1) (-0.151748 0.382411 -1) (-0.179655 0.340977 -1) (-0.20453 0.296857 -1) (-0.225941 0.250274 -1) (-0.243497 0.201618 -1) (-0.256909 0.151471 -1) (-0.266045 0.100608 -1) (-0.270956 0.0499547 -1) (-0.272371 -9.50032e-18 -1) (-0.270956 -0.0499547 -1) (-0.266045 -0.100608 -1) (-0.256909 -0.151471 -1) (-0.243497 -0.201618 -1) (-0.225941 -0.250274 -1) (-0.20453 -0.296857 -1) (-0.179655 -0.340977 -1) (-0.151748 -0.382411 -1) (-0.121232 -0.421063 -1) (-0.0884926 -0.456921 -1) (-0.0538687 -0.490031 -1) (-0.0176476 -0.520466 -1) (0.0199314 -0.548309 -1) (0.0586715 -0.573648 -1) (0.098411 -0.596558 -1) (0.139016 -0.617106 -1) (0.180374 -0.635342 -1) (0.222386 -0.651305 -1) (0.264963 -0.665019 -1) (0.308019 -0.676497 -1) (0.35147 -0.685743 -1) (0.39523 -0.692753 -1) (0.439209 -0.69752 -1) (0.483315 -0.700035 -1) (0.527448 -0.700284 -1) (0.571509 -0.698259 -1) (0.615389 -0.693948 -1) (0.658981 -0.687345 -1) (0.702172 -0.678442 -1) (0.744847 -0.667234 -1) (0.786892 -0.653716 -1) (0.828185 -0.637882 -1) (0.868607 -0.619722 -1) (0.908031 -0.599225 -1) (0.946323 -0.576373 -1) (0.983341 -0.55114 -1) (1.01893 -0.523498 -1) (1.05292 -0.493407 -1) (1.0851 -0.460827 -1) (1.11527 -0.425719 -1) (1.14314 -0.388052 -1) (1.16843 -0.347827 -1) (1.19082 -0.305097 -1) (1.20995 -0.260008 -1) (1.22554 -0.212851 -1) (1.2374 -0.164116 -1) (1.24554 -0.114516 -1) (1.25037 -0.0648354 -1) (1.24804 -0.0199238 -1) (1.25755 0.0653593 -1) (1.25278 0.115441 -1) (1.24475 0.165526 -1) (1.23305 0.214847 -1) (1.21762 0.262683 -1) (1.19862 0.308526 -1) (1.17633 0.352064 -1) (1.15108 0.39313 -1) (1.12318 0.431654 -1) (1.09293 0.467623 -1) (1.06058 0.501055 -1) (1.02636 0.531979 -1) (0.990472 0.560428 -1) (0.953086 0.586431 -1) (0.914362 0.610013 -1) (0.874445 0.63119 -1) (0.833472 0.649974 -1) (0.791574 0.66637 -1) (0.748878 0.680381 -1) (0.705509 0.692008 -1) (0.66159 0.701251 -1) (0.617244 0.70811 -1) (0.572591 0.712589 -1) (0.527749 0.714695 -1) (0.482834 0.714434 -1) (0.437957 0.711819 -1) (0.393225 0.706861 -1) (0.348741 0.699574 -1) (0.304601 0.689969 -1) (0.2609 0.678054 -1) (0.217728 0.663831 -1) (0.175174 0.647293 -1) (0.133333 0.628424 -1) (0.0923045 0.607193 -1) (0.0522031 0.583557 -1) (0.013162 0.557457 -1) (-0.0246585 0.528825 -1) (-0.0610631 0.497584 -1) (-0.0958148 0.463655 -1) (-0.128629 0.426974 -1) (-0.15917 0.387507 -1) (-0.187056 0.345275 -1) (-0.211871 0.300386 -1) (-0.233195 0.253078 -1) (-0.25065 0.20375 -1) (-0.263964 0.152994 -1) (-0.273023 0.101582 -1) (-0.277886 0.0504286 -1) (-0.279286 -9.17506e-18 -1) (-0.277886 -0.0504286 -1) (-0.273023 -0.101582 -1) (-0.263964 -0.152994 -1) (-0.25065 -0.20375 -1) (-0.233195 -0.253078 -1) (-0.211871 -0.300386 -1) (-0.187056 -0.345275 -1) (-0.15917 -0.387507 -1) (-0.128629 -0.426974 -1) (-0.0958148 -0.463655 -1) (-0.0610631 -0.497584 -1) (-0.0246585 -0.528825 -1) (0.013162 -0.557457 -1) (0.0522031 -0.583557 -1) (0.0923045 -0.607193 -1) (0.133333 -0.628424 -1) (0.175174 -0.647293 -1) (0.217728 -0.663831 -1) (0.2609 -0.678054 -1) (0.304601 -0.689969 -1) (0.348741 -0.699574 -1) (0.393225 -0.706861 -1) (0.437957 -0.711819 -1) (0.482834 -0.714434 -1) (0.527749 -0.714695 -1) (0.572591 -0.712589 -1) (0.617244 -0.70811 -1) (0.66159 -0.701251 -1) (0.705509 -0.692008 -1) (0.748878 -0.680381 -1) (0.791574 -0.66637 -1) (0.833472 -0.649974 -1) (0.874445 -0.63119 -1) (0.914362 -0.610013 -1) (0.953086 -0.586431 -1) (0.990472 -0.560428 -1) (1.02636 -0.531979 -1) (1.06058 -0.501055 -1) (1.09293 -0.467623 -1) (1.12318 -0.431654 -1) (1.15108 -0.39313 -1) (1.17633 -0.352064 -1) (1.19862 -0.308526 -1) (1.21762 -0.262683 -1) (1.23305 -0.214847 -1) (1.24475 -0.165526 -1) (1.25278 -0.115441 -1) (1.25755 -0.0653593 -1) (1.25521 -0.0200957 -1) (1.26495 0.0658924 -1) (1.26022 0.116378 -1) (1.25231 0.166948 -1) (1.24075 0.216852 -1) (1.22548 0.265367 -1) (1.20663 0.311966 -1) (1.18444 0.356317 -1) (1.15923 0.398232 -1) (1.13131 0.437625 -1) (1.10097 0.474467 -1) (1.06846 0.508764 -1) (1.03401 0.540536 -1) (0.997813 0.569806 -1) (0.960052 0.596597 -1) (0.920887 0.620923 -1) (0.880464 0.642795 -1) (0.838925 0.662217 -1) (0.796406 0.679188 -1) (0.753039 0.693703 -1) (0.708955 0.705759 -1) (0.664286 0.715349 -1) (0.619161 0.722471 -1) (0.573711 0.727124 -1) (0.528062 0.729312 -1) (0.482339 0.729041 -1) (0.436664 0.726324 -1) (0.391153 0.721173 -1) (0.345919 0.713604 -1) (0.301067 0.703633 -1) (0.256697 0.691273 -1) (0.212908 0.676531 -1) (0.169795 0.659407 -1) (0.127455 0.639892 -1) (0.0859915 0.617964 -1) (0.045519 0.593588 -1) (0.00617095 0.566712 -1) (-0.0318935 0.537278 -1) (-0.0684813 0.505214 -1) (-0.103358 0.470453 -1) (-0.136242 0.432938 -1) (-0.166802 0.392646 -1) (-0.194662 0.349606 -1) (-0.219412 0.303942 -1) (-0.240644 0.255902 -1) (-0.257994 0.205899 -1) (-0.271209 0.15453 -1) (-0.280191 0.102566 -1) (-0.285008 0.0509079 -1) (-0.286392 -9.50032e-18 -1) (-0.285008 -0.0509079 -1) (-0.280191 -0.102566 -1) (-0.271209 -0.15453 -1) (-0.257994 -0.205899 -1) (-0.240644 -0.255902 -1) (-0.219412 -0.303942 -1) (-0.194662 -0.349606 -1) (-0.166802 -0.392646 -1) (-0.136242 -0.432938 -1) (-0.103358 -0.470453 -1) (-0.0684813 -0.505214 -1) (-0.0318935 -0.537278 -1) (0.00617095 -0.566712 -1) (0.045519 -0.593588 -1) (0.0859915 -0.617964 -1) (0.127455 -0.639892 -1) (0.169795 -0.659407 -1) (0.212908 -0.676531 -1) (0.256697 -0.691273 -1) (0.301067 -0.703633 -1) (0.345919 -0.713604 -1) (0.391153 -0.721173 -1) (0.436664 -0.726324 -1) (0.482339 -0.729041 -1) (0.528062 -0.729312 -1) (0.573711 -0.727124 -1) (0.619161 -0.722471 -1) (0.664286 -0.715349 -1) (0.708955 -0.705759 -1) (0.753039 -0.693703 -1) (0.796406 -0.679188 -1) (0.838925 -0.662217 -1) (0.880464 -0.642795 -1) (0.920887 -0.620923 -1) (0.960052 -0.596597 -1) (0.997813 -0.569806 -1) (1.03401 -0.540536 -1) (1.06846 -0.508764 -1) (1.10097 -0.474467 -1) (1.13131 -0.437625 -1) (1.15923 -0.398232 -1) (1.18444 -0.356317 -1) (1.20663 -0.311966 -1) (1.22548 -0.265367 -1) (1.24075 -0.216852 -1) (1.25231 -0.166948 -1) (1.26022 -0.116378 -1) (1.26495 -0.0658924 -1) (1.26259 -0.020271 -1) (1.27256 0.0664348 -1) (1.26789 0.117328 -1) (1.26008 0.168381 -1) (1.24867 0.218868 -1) (1.23355 0.268061 -1) (1.21484 0.315419 -1) (1.19276 0.360587 -1) (1.1676 0.40336 -1) (1.13966 0.443631 -1) (1.10923 0.481358 -1) (1.07656 0.516535 -1) (1.04187 0.54917 -1) (1.00537 0.579277 -1) (0.967224 0.60687 -1) (0.927607 0.631957 -1) (0.886666 0.654538 -1) (0.844547 0.674612 -1) (0.801389 0.69217 -1) (0.757332 0.707202 -1) (0.712512 0.719696 -1) (0.667069 0.729642 -1) (0.621142 0.737033 -1) (0.574868 0.741865 -1) (0.528386 0.744137 -1) (0.481829 0.743858 -1) (0.435329 0.741037 -1) (0.389014 0.73569 -1) (0.343004 0.727835 -1) (0.297414 0.717491 -1) (0.252354 0.704677 -1) (0.207928 0.689405 -1) (0.164236 0.671684 -1) (0.121382 0.651512 -1) (0.0794695 0.628873 -1) (0.0386161 0.603741 -1) (-0.00104532 0.576075 -1) (-0.0393569 0.545822 -1) (-0.0761281 0.512923 -1) (-0.111127 0.477316 -1) (-0.144077 0.438955 -1) (-0.174651 0.397826 -1) (-0.202477 0.353971 -1) (-0.227157 0.307524 -1) (-0.248293 0.258748 -1) (-0.265536 0.208066 -1) (-0.278652 0.156081 -1) (-0.287556 0.10356 -1) (-0.292326 0.0513926 -1) (-0.293696 -9.60874e-18 -1) (-0.292326 -0.0513926 -1) (-0.287556 -0.10356 -1) (-0.278652 -0.156081 -1) (-0.265536 -0.208066 -1) (-0.248293 -0.258748 -1) (-0.227157 -0.307524 -1) (-0.202477 -0.353971 -1) (-0.174651 -0.397826 -1) (-0.144077 -0.438955 -1) (-0.111127 -0.477316 -1) (-0.0761281 -0.512923 -1) (-0.0393569 -0.545822 -1) (-0.00104532 -0.576075 -1) (0.0386161 -0.603741 -1) (0.0794695 -0.628873 -1) (0.121382 -0.651512 -1) (0.164236 -0.671684 -1) (0.207928 -0.689405 -1) (0.252354 -0.704677 -1) (0.297414 -0.717491 -1) (0.343004 -0.727835 -1) (0.389014 -0.73569 -1) (0.435329 -0.741037 -1) (0.481829 -0.743858 -1) (0.528386 -0.744137 -1) (0.574868 -0.741865 -1) (0.621142 -0.737033 -1) (0.667069 -0.729642 -1) (0.712512 -0.719696 -1) (0.757332 -0.707202 -1) (0.801389 -0.69217 -1) (0.844547 -0.674612 -1) (0.886666 -0.654538 -1) (0.927607 -0.631957 -1) (0.967224 -0.60687 -1) (1.00537 -0.579277 -1) (1.04187 -0.54917 -1) (1.07656 -0.516535 -1) (1.10923 -0.481358 -1) (1.13966 -0.443631 -1) (1.1676 -0.40336 -1) (1.19276 -0.360587 -1) (1.21484 -0.315419 -1) (1.23355 -0.268061 -1) (1.24867 -0.218868 -1) (1.26008 -0.168381 -1) (1.26789 -0.117328 -1) (1.27256 -0.0664348 -1) (1.27019 -0.0204498 -1) (1.28039 0.0669868 -1) (1.27577 0.118289 -1) (1.26806 0.169827 -1) (1.25679 0.220895 -1) (1.24184 0.270766 -1) (1.22327 0.318884 -1) (1.20129 0.364875 -1) (1.17619 0.408512 -1) (1.14823 0.449672 -1) (1.11772 0.488297 -1) (1.08488 0.524367 -1) (1.04995 0.55788 -1) (1.01314 0.588841 -1) (0.974604 0.617252 -1) (0.934525 0.643114 -1) (0.893054 0.66642 -1) (0.850339 0.68716 -1) (0.806525 0.705318 -1) (0.761757 0.720877 -1) (0.71618 0.73382 -1) (0.669941 0.744131 -1) (0.623186 0.751798 -1) (0.576064 0.756812 -1) (0.528722 0.759173 -1) (0.481304 0.758886 -1) (0.433953 0.75596 -1) (0.386807 0.750414 -1) (0.339996 0.742268 -1) (0.293644 0.731544 -1) (0.24787 0.718267 -1) (0.202785 0.702456 -1) (0.158496 0.684126 -1) (0.11511 0.663282 -1) (0.0727359 0.639919 -1) (0.0314913 0.614017 -1) (-0.0084905 0.585546 -1) (-0.047053 0.55446 -1) (-0.0840081 0.52071 -1) (-0.119128 0.484243 -1) (-0.152139 0.445024 -1) (-0.182721 0.403048 -1) (-0.210509 0.358369 -1) (-0.235113 0.311133 -1) (-0.256148 0.261616 -1) (-0.273283 0.21025 -1) (-0.286297 0.157646 -1) (-0.295124 0.104565 -1) (-0.299848 0.051883 -1) (-0.301203 -9.87979e-18 -1) (-0.299848 -0.051883 -1) (-0.295124 -0.104565 -1) (-0.286297 -0.157646 -1) (-0.273283 -0.21025 -1) (-0.256148 -0.261616 -1) (-0.235113 -0.311133 -1) (-0.210509 -0.358369 -1) (-0.182721 -0.403048 -1) (-0.152139 -0.445024 -1) (-0.119128 -0.484243 -1) (-0.0840081 -0.52071 -1) (-0.047053 -0.55446 -1) (-0.0084905 -0.585546 -1) (0.0314913 -0.614017 -1) (0.0727359 -0.639919 -1) (0.11511 -0.663282 -1) (0.158496 -0.684126 -1) (0.202785 -0.702456 -1) (0.24787 -0.718267 -1) (0.293644 -0.731544 -1) (0.339996 -0.742268 -1) (0.386807 -0.750414 -1) (0.433953 -0.75596 -1) (0.481304 -0.758886 -1) (0.528722 -0.759173 -1) (0.576064 -0.756812 -1) (0.623186 -0.751798 -1) (0.669941 -0.744131 -1) (0.71618 -0.73382 -1) (0.761757 -0.720877 -1) (0.806525 -0.705318 -1) (0.850339 -0.68716 -1) (0.893054 -0.66642 -1) (0.934525 -0.643114 -1) (0.974604 -0.617252 -1) (1.01314 -0.588841 -1) (1.04995 -0.55788 -1) (1.08488 -0.524367 -1) (1.11772 -0.488297 -1) (1.14823 -0.449672 -1) (1.17619 -0.408512 -1) (1.20129 -0.364875 -1) (1.22327 -0.318884 -1) (1.24184 -0.270766 -1) (1.25679 -0.220895 -1) (1.26806 -0.169827 -1) (1.27577 -0.118289 -1) (1.28039 -0.0669868 -1) (1.27802 -0.020632 -1) (1.28846 0.0675486 -1) (1.28389 0.119265 -1) (1.27627 0.171286 -1) (1.26514 0.222935 -1) (1.25034 0.273483 -1) (1.23192 0.322363 -1) (1.21005 0.369181 -1) (1.185 0.413691 -1) (1.15703 0.45575 -1) (1.12643 0.495285 -1) (1.09343 0.532263 -1) (1.05826 0.566669 -1) (1.02112 0.598498 -1) (0.982195 0.627744 -1) (0.941644 0.654397 -1) (0.899629 0.678443 -1) (0.856302 0.699863 -1) (0.811814 0.718634 -1) (0.766316 0.734733 -1) (0.719961 0.748134 -1) (0.672901 0.758818 -1) (0.625295 0.766767 -1) (0.577298 0.771969 -1) (0.52907 0.774421 -1) (0.480765 0.774126 -1) (0.432537 0.771095 -1) (0.384532 0.765346 -1) (0.336894 0.756903 -1) (0.289756 0.745794 -1) (0.243244 0.732045 -1) (0.197478 0.715685 -1) (0.152573 0.696733 -1) (0.108639 0.675205 -1) (0.0657884 0.651102 -1) (0.0241417 0.624416 -1) (-0.0161681 0.595124 -1) (-0.0549859 0.563191 -1) (-0.0921262 0.528575 -1) (-0.127365 0.491236 -1) (-0.160434 0.451146 -1) (-0.191019 0.408312 -1) (-0.218762 0.3628 -1) (-0.243285 0.314769 -1) (-0.264216 0.264505 -1) (-0.281239 0.212453 -1) (-0.294152 0.159225 -1) (-0.302901 0.10558 -1) (-0.30758 0.0523789 -1) (-0.30892 -1.04219e-17 -1) (-0.30758 -0.0523789 -1) (-0.302901 -0.10558 -1) (-0.294152 -0.159225 -1) (-0.281239 -0.212453 -1) (-0.264216 -0.264505 -1) (-0.243285 -0.314769 -1) (-0.218762 -0.3628 -1) (-0.191019 -0.408312 -1) (-0.160434 -0.451146 -1) (-0.127365 -0.491236 -1) (-0.0921262 -0.528575 -1) (-0.0549859 -0.563191 -1) (-0.0161681 -0.595124 -1) (0.0241417 -0.624416 -1) (0.0657884 -0.651102 -1) (0.108639 -0.675205 -1) (0.152573 -0.696733 -1) (0.197478 -0.715685 -1) (0.243244 -0.732045 -1) (0.289756 -0.745794 -1) (0.336894 -0.756903 -1) (0.384532 -0.765346 -1) (0.432537 -0.771095 -1) (0.480765 -0.774126 -1) (0.52907 -0.774421 -1) (0.577298 -0.771969 -1) (0.625295 -0.766767 -1) (0.672901 -0.758818 -1) (0.719961 -0.748134 -1) (0.766316 -0.734733 -1) (0.811814 -0.718634 -1) (0.856302 -0.699863 -1) (0.899629 -0.678443 -1) (0.941644 -0.654397 -1) (0.982195 -0.627744 -1) (1.02112 -0.598498 -1) (1.05826 -0.566669 -1) (1.09343 -0.532263 -1) (1.12643 -0.495285 -1) (1.15703 -0.45575 -1) (1.185 -0.413691 -1) (1.21005 -0.369181 -1) (1.23192 -0.322363 -1) (1.25034 -0.273483 -1) (1.26514 -0.222935 -1) (1.27627 -0.171286 -1) (1.28389 -0.119265 -1) (1.28846 -0.0675486 -1) (1.28608 -0.0208177 -1) (1.29677 0.0681202 -1) (1.29224 0.120254 -1) (1.28472 0.172761 -1) (1.27372 0.224988 -1) (1.25907 0.276213 -1) (1.24079 0.325856 -1) (1.21903 0.373506 -1) (1.19403 0.418896 -1) (1.16606 0.461864 -1) (1.13537 0.502322 -1) (1.10221 0.540221 -1) (1.0668 0.575536 -1) (1.02933 0.60825 -1) (0.99 0.638346 -1) (0.948966 0.665806 -1) (0.906393 0.690607 -1) (0.862439 0.712721 -1) (0.817259 0.732119 -1) (0.771011 0.748769 -1) (0.723854 0.76264 -1) (0.675951 0.773705 -1) (0.627468 0.781943 -1) (0.578572 0.787337 -1) (0.529431 0.789883 -1) (0.480212 0.789581 -1) (0.431079 0.786443 -1) (0.38219 0.780489 -1) (0.333699 0.771744 -1) (0.285749 0.760241 -1) (0.238476 0.746012 -1) (0.192008 0.729091 -1) (0.146465 0.709507 -1) (0.101966 0.687281 -1) (0.0586247 0.662425 -1) (0.0165644 0.63494 -1) (-0.0240817 0.604811 -1) (-0.0631596 0.572015 -1) (-0.100487 0.536519 -1) (-0.135844 0.498293 -1) (-0.168967 0.45732 -1) (-0.19955 0.413618 -1) (-0.227244 0.367265 -1) (-0.251681 0.318431 -1) (-0.272503 0.267416 -1) (-0.289412 0.214674 -1) (-0.302222 0.160819 -1) (-0.310895 0.106606 -1) (-0.315528 0.0528806 -1) (-0.316853 -1.06387e-17 -1) (-0.315528 -0.0528806 -1) (-0.310895 -0.106606 -1) (-0.302222 -0.160819 -1) (-0.289412 -0.214674 -1) (-0.272503 -0.267416 -1) (-0.251681 -0.318431 -1) (-0.227244 -0.367265 -1) (-0.19955 -0.413618 -1) (-0.168967 -0.45732 -1) (-0.135844 -0.498293 -1) (-0.100487 -0.536519 -1) (-0.0631596 -0.572015 -1) (-0.0240817 -0.604811 -1) (0.0165644 -0.63494 -1) (0.0586247 -0.662425 -1) (0.101966 -0.687281 -1) (0.146465 -0.709507 -1) (0.192008 -0.729091 -1) (0.238476 -0.746012 -1) (0.285749 -0.760241 -1) (0.333699 -0.771744 -1) (0.38219 -0.780489 -1) (0.431079 -0.786443 -1) (0.480212 -0.789581 -1) (0.529431 -0.789883 -1) (0.578572 -0.787337 -1) (0.627468 -0.781943 -1) (0.675951 -0.773705 -1) (0.723854 -0.76264 -1) (0.771011 -0.748769 -1) (0.817259 -0.732119 -1) (0.862439 -0.712721 -1) (0.906393 -0.690607 -1) (0.948966 -0.665806 -1) (0.99 -0.638346 -1) (1.02933 -0.60825 -1) (1.0668 -0.575536 -1) (1.10221 -0.540221 -1) (1.13537 -0.502322 -1) (1.16606 -0.461864 -1) (1.19403 -0.418896 -1) (1.21903 -0.373506 -1) (1.24079 -0.325856 -1) (1.25907 -0.276213 -1) (1.27372 -0.224988 -1) (1.28472 -0.172761 -1) (1.29224 -0.120254 -1) (1.29677 -0.0681202 -1) (1.29438 -0.0210069 -1) (1.30533 0.0687019 -1) (1.30084 0.121257 -1) (1.2934 0.174251 -1) (1.28253 0.227057 -1) (1.26804 0.278958 -1) (1.2499 0.329366 -1) (1.22825 0.377852 -1) (1.20331 0.424128 -1) (1.17532 0.468016 -1) (1.14455 0.509409 -1) (1.11122 0.548244 -1) (1.07556 0.584483 -1) (1.03777 0.618097 -1) (0.998021 0.649059 -1) (0.956492 0.677343 -1) (0.913349 0.702914 -1) (0.868751 0.725738 -1) (0.82286 0.745775 -1) (0.775841 0.762988 -1) (0.727861 0.777339 -1) (0.679091 0.788794 -1) (0.629706 0.797327 -1) (0.579884 0.802919 -1) (0.529804 0.80556 -1) (0.479644 0.805253 -1) (0.42958 0.802007 -1) (0.37978 0.795843 -1) (0.33041 0.786792 -1) (0.281623 0.774887 -1) (0.233565 0.760169 -1) (0.186372 0.742677 -1) (0.140173 0.722448 -1) (0.0950894 0.699511 -1) (0.0512427 0.673888 -1) (0.00875663 0.645588 -1) (-0.0322345 0.614607 -1) (-0.0715781 0.580933 -1) (-0.109094 0.544542 -1) (-0.144569 0.505416 -1) (-0.177744 0.463547 -1) (-0.20832 0.418967 -1) (-0.23596 0.371763 -1) (-0.260306 0.322121 -1) (-0.281016 0.27035 -1) (-0.297808 0.216913 -1) (-0.310515 0.162428 -1) (-0.319111 0.107643 -1) (-0.323699 0.053388 -1) (-0.32501 -1.05303e-17 -1) (-0.323699 -0.053388 -1) (-0.319111 -0.107643 -1) (-0.310515 -0.162428 -1) (-0.297808 -0.216913 -1) (-0.281016 -0.27035 -1) (-0.260306 -0.322121 -1) (-0.23596 -0.371763 -1) (-0.20832 -0.418967 -1) (-0.177744 -0.463547 -1) (-0.144569 -0.505416 -1) (-0.109094 -0.544542 -1) (-0.0715781 -0.580933 -1) (-0.0322345 -0.614607 -1) (0.00875663 -0.645588 -1) (0.0512427 -0.673888 -1) (0.0950894 -0.699511 -1) (0.140173 -0.722448 -1) (0.186372 -0.742677 -1) (0.233565 -0.760169 -1) (0.281623 -0.774887 -1) (0.33041 -0.786792 -1) (0.37978 -0.795843 -1) (0.42958 -0.802007 -1) (0.479644 -0.805253 -1) (0.529804 -0.80556 -1) (0.579884 -0.802919 -1) (0.629706 -0.797327 -1) (0.679091 -0.788794 -1) (0.727861 -0.777339 -1) (0.775841 -0.762988 -1) (0.82286 -0.745775 -1) (0.868751 -0.725738 -1) (0.913349 -0.702914 -1) (0.956492 -0.677343 -1) (0.998021 -0.649059 -1) (1.03777 -0.618097 -1) (1.07556 -0.584483 -1) (1.11122 -0.548244 -1) (1.14455 -0.509409 -1) (1.17532 -0.468016 -1) (1.20331 -0.424128 -1) (1.22825 -0.377852 -1) (1.2499 -0.329366 -1) (1.26804 -0.278958 -1) (1.28253 -0.227057 -1) (1.2934 -0.174251 -1) (1.30084 -0.121257 -1) (1.30533 -0.0687019 -1) (1.30293 -0.0211996 -1) (1.31414 0.069294 -1) (1.30969 0.122276 -1) (1.30234 0.175758 -1) (1.29159 0.229142 -1) (1.27724 0.281718 -1) (1.25924 0.332892 -1) (1.2377 0.382218 -1) (1.21282 0.429389 -1) (1.18483 0.474206 -1) (1.15397 0.516546 -1) (1.12048 0.556331 -1) (1.08456 0.593509 -1) (1.04643 0.62804 -1) (1.00626 0.659886 -1) (0.964226 0.689008 -1) (0.920497 0.715366 -1) (0.875239 0.738914 -1) (0.82862 0.759605 -1) (0.780809 0.777392 -1) (0.731983 0.792233 -1) (0.682322 0.804087 -1) (0.632011 0.812922 -1) (0.581237 0.818716 -1) (0.530191 0.821457 -1) (0.479063 0.821144 -1) (0.42804 0.817788 -1) (0.377303 0.811412 -1) (0.327027 0.802048 -1) (0.277377 0.789735 -1) (0.22851 0.774519 -1) (0.18057 0.756445 -1) (0.133693 0.735558 -1) (0.0880082 0.711896 -1) (0.0436401 0.685491 -1) (0.000715734 0.656361 -1) (-0.0406299 0.624513 -1) (-0.0802452 0.589945 -1) (-0.117954 0.552645 -1) (-0.153545 0.512604 -1) (-0.18677 0.469827 -1) (-0.217335 0.424357 -1) (-0.244916 0.376295 -1) (-0.269167 0.325838 -1) (-0.289761 0.273306 -1) (-0.306435 0.219171 -1) (-0.319038 0.164053 -1) (-0.327556 0.108691 -1) (-0.3321 0.0539013 -1) (-0.333396 -1.00966e-17 -1) (-0.3321 -0.0539013 -1) (-0.327556 -0.108691 -1) (-0.319038 -0.164053 -1) (-0.306435 -0.219171 -1) (-0.289761 -0.273306 -1) (-0.269167 -0.325838 -1) (-0.244916 -0.376295 -1) (-0.217335 -0.424357 -1) (-0.18677 -0.469827 -1) (-0.153545 -0.512604 -1) (-0.117954 -0.552645 -1) (-0.0802452 -0.589945 -1) (-0.0406299 -0.624513 -1) (0.000715734 -0.656361 -1) (0.0436401 -0.685491 -1) (0.0880082 -0.711896 -1) (0.133693 -0.735558 -1) (0.18057 -0.756445 -1) (0.22851 -0.774519 -1) (0.277377 -0.789735 -1) (0.327027 -0.802048 -1) (0.377303 -0.811412 -1) (0.42804 -0.817788 -1) (0.479063 -0.821144 -1) (0.530191 -0.821457 -1) (0.581237 -0.818716 -1) (0.632011 -0.812922 -1) (0.682322 -0.804087 -1) (0.731983 -0.792233 -1) (0.780809 -0.777392 -1) (0.82862 -0.759605 -1) (0.875239 -0.738914 -1) (0.920497 -0.715366 -1) (0.964226 -0.689008 -1) (1.00626 -0.659886 -1) (1.04643 -0.62804 -1) (1.08456 -0.593509 -1) (1.12048 -0.556331 -1) (1.15397 -0.516546 -1) (1.18483 -0.474206 -1) (1.21282 -0.429389 -1) (1.2377 -0.382218 -1) (1.25924 -0.332892 -1) (1.27724 -0.281718 -1) (1.29159 -0.229142 -1) (1.30234 -0.175758 -1) (1.30969 -0.122276 -1) (1.31414 -0.069294 -1) (1.31173 -0.0213957 -1) (1.32322 0.0698966 -1) (1.3188 0.12331 -1) (1.31153 0.177283 -1) (1.3009 0.231244 -1) (1.28669 0.284496 -1) (1.26883 0.336438 -1) (1.2474 0.386607 -1) (1.22258 0.434679 -1) (1.19458 0.480435 -1) (1.16363 0.523735 -1) (1.12997 0.564484 -1) (1.0938 0.602617 -1) (1.05533 0.638081 -1) (1.01472 0.670826 -1) (0.97217 0.700805 -1) (0.927841 0.727964 -1) (0.881906 0.752251 -1) (0.834539 0.773609 -1) (0.785916 0.791984 -1) (0.736221 0.807325 -1) (0.685645 0.819586 -1) (0.634381 0.828731 -1) (0.582629 0.834732 -1) (0.530591 0.837574 -1) (0.478468 0.837256 -1) (0.426458 0.833789 -1) (0.374757 0.827197 -1) (0.323549 0.817515 -1) (0.273012 0.804787 -1) (0.223311 0.789063 -1) (0.174601 0.770396 -1) (0.127026 0.748838 -1) (0.0807204 0.724438 -1) (0.0358149 0.697236 -1) (-0.00756092 0.66726 -1) (-0.049271 0.63453 -1) (-0.0891649 0.599051 -1) (-0.127069 0.560826 -1) (-0.162778 0.519857 -1) (-0.19605 0.47616 -1) (-0.226602 0.42979 -1) (-0.254119 0.380862 -1) (-0.27827 0.329582 -1) (-0.298746 0.276285 -1) (-0.3153 0.221448 -1) (-0.327798 0.165692 -1) (-0.336239 0.10975 -1) (-0.340737 0.0544204 -1) (-0.34202 -9.98821e-18 -1) (-0.340737 -0.0544204 -1) (-0.336239 -0.10975 -1) (-0.327798 -0.165692 -1) (-0.3153 -0.221448 -1) (-0.298746 -0.276285 -1) (-0.27827 -0.329582 -1) (-0.254119 -0.380862 -1) (-0.226602 -0.42979 -1) (-0.19605 -0.47616 -1) (-0.162778 -0.519857 -1) (-0.127069 -0.560826 -1) (-0.0891649 -0.599051 -1) (-0.049271 -0.63453 -1) (-0.00756092 -0.66726 -1) (0.0358149 -0.697236 -1) (0.0807204 -0.724438 -1) (0.127026 -0.748838 -1) (0.174601 -0.770396 -1) (0.223311 -0.789063 -1) (0.273012 -0.804787 -1) (0.323549 -0.817515 -1) (0.374757 -0.827197 -1) (0.426458 -0.833789 -1) (0.478468 -0.837256 -1) (0.530591 -0.837574 -1) (0.582629 -0.834732 -1) (0.634381 -0.828731 -1) (0.685645 -0.819586 -1) (0.736221 -0.807325 -1) (0.785916 -0.791984 -1) (0.834539 -0.773609 -1) (0.881906 -0.752251 -1) (0.927841 -0.727964 -1) (0.97217 -0.700805 -1) (1.01472 -0.670826 -1) (1.05533 -0.638081 -1) (1.0938 -0.602617 -1) (1.12997 -0.564484 -1) (1.16363 -0.523735 -1) (1.19458 -0.480435 -1) (1.22258 -0.434679 -1) (1.2474 -0.386607 -1) (1.26883 -0.336438 -1) (1.28669 -0.284496 -1) (1.3009 -0.231244 -1) (1.31153 -0.177283 -1) (1.3188 -0.12331 -1) (1.32322 -0.0698966 -1) (1.3208 -0.0215954 -1) (1.33256 0.0705098 -1) (1.32818 0.124361 -1) (1.32098 0.178826 -1) (1.31046 0.233366 -1) (1.29639 0.287293 -1) (1.27867 0.340003 -1) (1.25735 0.39102 -1) (1.23259 0.439999 -1) (1.20458 0.486704 -1) (1.17355 0.530976 -1) (1.13971 0.572704 -1) (1.10328 0.611807 -1) (1.06445 0.64822 -1) (1.02341 0.681882 -1) (0.980326 0.712733 -1) (0.935382 0.740711 -1) (0.888754 0.765751 -1) (0.840618 0.78779 -1) (0.791162 0.806765 -1) (0.740576 0.822618 -1) (0.68906 0.835295 -1) (0.636819 0.844756 -1) (0.584063 0.850968 -1) (0.531005 0.853915 -1) (0.477859 0.853593 -1) (0.424836 0.850013 -1) (0.372143 0.843201 -1) (0.319976 0.833195 -1) (0.268526 0.820044 -1) (0.217967 0.803802 -1) (0.168464 0.784531 -1) (0.120169 0.762291 -1) (0.0732243 0.737138 -1) (0.027765 0.709123 -1) (-0.0160759 0.678287 -1) (-0.058161 0.644657 -1) (-0.0983408 0.608253 -1) (-0.136445 0.569088 -1) (-0.172273 0.527176 -1) (-0.205591 0.482547 -1) (-0.236126 0.435266 -1) (-0.263575 0.385462 -1) (-0.287623 0.333355 -1) (-0.307977 0.279288 -1) (-0.324409 0.223745 -1) (-0.336801 0.167348 -1) (-0.345166 0.11082 -1) (-0.349619 0.0549455 -1) (-0.350888 -9.55453e-18 -1) (-0.349619 -0.0549455 -1) (-0.345166 -0.11082 -1) (-0.336801 -0.167348 -1) (-0.324409 -0.223745 -1) (-0.307977 -0.279288 -1) (-0.287623 -0.333355 -1) (-0.263575 -0.385462 -1) (-0.236126 -0.435266 -1) (-0.205591 -0.482547 -1) (-0.172273 -0.527176 -1) (-0.136445 -0.569088 -1) (-0.0983408 -0.608253 -1) (-0.058161 -0.644657 -1) (-0.0160759 -0.678287 -1) (0.027765 -0.709123 -1) (0.0732243 -0.737138 -1) (0.120169 -0.762291 -1) (0.168464 -0.784531 -1) (0.217967 -0.803802 -1) (0.268526 -0.820044 -1) (0.319976 -0.833195 -1) (0.372143 -0.843201 -1) (0.424836 -0.850013 -1) (0.477859 -0.853593 -1) (0.531005 -0.853915 -1) (0.584063 -0.850968 -1) (0.636819 -0.844756 -1) (0.68906 -0.835295 -1) (0.740576 -0.822618 -1) (0.791162 -0.806765 -1) (0.840618 -0.78779 -1) (0.888754 -0.765751 -1) (0.935382 -0.740711 -1) (0.980326 -0.712733 -1) (1.02341 -0.681882 -1) (1.06445 -0.64822 -1) (1.10328 -0.611807 -1) (1.13971 -0.572704 -1) (1.17355 -0.530976 -1) (1.20458 -0.486704 -1) (1.23259 -0.439999 -1) (1.25735 -0.39102 -1) (1.27867 -0.340003 -1) (1.29639 -0.287293 -1) (1.31046 -0.233366 -1) (1.32098 -0.178826 -1) (1.32818 -0.124361 -1) (1.33256 -0.0705098 -1) (1.33013 -0.0217987 -1) (1.34218 0.0711341 -1) (1.33784 0.125428 -1) (1.3307 0.18039 -1) (1.32029 0.235508 -1) (1.30635 0.29011 -1) (1.28877 0.34359 -1) (1.26755 0.395458 -1) (1.24285 0.445352 -1) (1.21483 0.493015 -1) (1.18371 0.538271 -1) (1.1497 0.580991 -1) (1.11301 0.621081 -1) (1.07382 0.65846 -1) (1.03232 0.693056 -1) (0.988696 0.724796 -1) (0.943123 0.753607 -1) (0.895783 0.779417 -1) (0.846861 0.802151 -1) (0.796549 0.821739 -1) (0.745049 0.838113 -1) (0.692569 0.851216 -1) (0.639324 0.861 -1) (0.585537 0.867428 -1) (0.531432 0.870482 -1) (0.477236 0.870157 -1) (0.423173 0.866463 -1) (0.36946 0.859427 -1) (0.316309 0.849091 -1) (0.263919 0.835508 -1) (0.212477 0.81874 -1) (0.162158 0.798853 -1) (0.113122 0.775917 -1) (0.0655184 0.749998 -1) (0.0194884 0.721155 -1) (-0.0248317 0.689441 -1) (-0.067303 0.654896 -1) (-0.107777 0.617551 -1) (-0.146085 0.57743 -1) (-0.182035 0.534561 -1) (-0.215398 0.488987 -1) (-0.245914 0.440785 -1) (-0.273292 0.390097 -1) (-0.297233 0.337156 -1) (-0.317462 0.282313 -1) (-0.33377 0.226061 -1) (-0.346057 0.169019 -1) (-0.354344 0.111901 -1) (-0.358753 0.0554765 -1) (-0.360007 -9.22927e-18 -1) (-0.358753 -0.0554765 -1) (-0.354344 -0.111901 -1) (-0.346057 -0.169019 -1) (-0.33377 -0.226061 -1) (-0.317462 -0.282313 -1) (-0.297233 -0.337156 -1) (-0.273292 -0.390097 -1) (-0.245914 -0.440785 -1) (-0.215398 -0.488987 -1) (-0.182035 -0.534561 -1) (-0.146085 -0.57743 -1) (-0.107777 -0.617551 -1) (-0.067303 -0.654896 -1) (-0.0248317 -0.689441 -1) (0.0194884 -0.721155 -1) (0.0655184 -0.749998 -1) (0.113122 -0.775917 -1) (0.162158 -0.798853 -1) (0.212477 -0.81874 -1) (0.263919 -0.835508 -1) (0.316309 -0.849091 -1) (0.36946 -0.859427 -1) (0.423173 -0.866463 -1) (0.477236 -0.870157 -1) (0.531432 -0.870482 -1) (0.585537 -0.867428 -1) (0.639324 -0.861 -1) (0.692569 -0.851216 -1) (0.745049 -0.838113 -1) (0.796549 -0.821739 -1) (0.846861 -0.802151 -1) (0.895783 -0.779417 -1) (0.943123 -0.753607 -1) (0.988696 -0.724796 -1) (1.03232 -0.693056 -1) (1.07382 -0.65846 -1) (1.11301 -0.621081 -1) (1.1497 -0.580991 -1) (1.18371 -0.538271 -1) (1.21483 -0.493015 -1) (1.24285 -0.445352 -1) (1.26755 -0.395458 -1) (1.28877 -0.34359 -1) (1.30635 -0.29011 -1) (1.32029 -0.235508 -1) (1.3307 -0.18039 -1) (1.33784 -0.125428 -1) (1.34218 -0.0711341 -1) (1.33975 -0.0220056 -1) (1.35209 0.0717695 -1) (1.34778 0.126513 -1) (1.34071 0.181975 -1) (1.3304 0.237673 -1) (1.31659 0.29295 -1) (1.29913 0.3472 -1) (1.27802 0.399923 -1) (1.25337 0.450738 -1) (1.22534 0.499369 -1) (1.19414 0.545621 -1) (1.15995 0.589348 -1) (1.12298 0.63044 -1) (1.08342 0.668802 -1) (1.04146 0.704348 -1) (0.997283 0.736994 -1) (0.951065 0.766656 -1) (0.902996 0.793251 -1) (0.853267 0.816694 -1) (0.802078 0.836907 -1) (0.74964 0.853814 -1) (0.696171 0.867352 -1) (0.641897 0.877465 -1) (0.587052 0.884116 -1) (0.531874 0.887279 -1) (0.4766 0.886951 -1) (0.421468 0.88314 -1) (0.366709 0.875877 -1) (0.312545 0.865206 -1) (0.25919 0.851184 -1) (0.20684 0.833878 -1) (0.155681 0.813364 -1) (0.105883 0.789719 -1) (0.0576011 0.763018 -1) (0.010983 0.733333 -1) (-0.0338309 0.700726 -1) (-0.0766999 0.665249 -1) (-0.117476 0.626946 -1) (-0.155995 0.585854 -1) (-0.192068 0.542014 -1) (-0.225477 0.495481 -1) (-0.255971 0.446348 -1) (-0.283275 0.394767 -1) (-0.307106 0.340985 -1) (-0.327208 0.285363 -1) (-0.343391 0.228398 -1) (-0.355572 0.170707 -1) (-0.363782 0.112995 -1) (-0.368146 0.0560136 -1) (-0.369386 -8.90401e-18 -1) (-0.368146 -0.0560136 -1) (-0.363782 -0.112995 -1) (-0.355572 -0.170707 -1) (-0.343391 -0.228398 -1) (-0.327208 -0.285363 -1) (-0.307106 -0.340985 -1) (-0.283275 -0.394767 -1) (-0.255971 -0.446348 -1) (-0.225477 -0.495481 -1) (-0.192068 -0.542014 -1) (-0.155995 -0.585854 -1) (-0.117476 -0.626946 -1) (-0.0766999 -0.665249 -1) (-0.0338309 -0.700726 -1) (0.010983 -0.733333 -1) (0.0576011 -0.763018 -1) (0.105883 -0.789719 -1) (0.155681 -0.813364 -1) (0.20684 -0.833878 -1) (0.25919 -0.851184 -1) (0.312545 -0.865206 -1) (0.366709 -0.875877 -1) (0.421468 -0.88314 -1) (0.4766 -0.886951 -1) (0.531874 -0.887279 -1) (0.587052 -0.884116 -1) (0.641897 -0.877465 -1) (0.696171 -0.867352 -1) (0.74964 -0.853814 -1) (0.802078 -0.836907 -1) (0.853267 -0.816694 -1) (0.902996 -0.793251 -1) (0.951065 -0.766656 -1) (0.997283 -0.736994 -1) (1.04146 -0.704348 -1) (1.08342 -0.668802 -1) (1.12298 -0.63044 -1) (1.15995 -0.589348 -1) (1.19414 -0.545621 -1) (1.22534 -0.499369 -1) (1.25337 -0.450738 -1) (1.27802 -0.399923 -1) (1.29913 -0.3472 -1) (1.31659 -0.29295 -1) (1.3304 -0.237673 -1) (1.34071 -0.181975 -1) (1.34778 -0.126513 -1) (1.35209 -0.0717695 -1) (1.34965 -0.0222162 -1) (1.3623 0.0724165 -1) (1.35801 0.127617 -1) (1.351 0.183582 -1) (1.34079 0.239861 -1) (1.3271 0.295814 -1) (1.30976 0.350836 -1) (1.28876 0.404417 -1) (1.26416 0.456159 -1) (1.23612 0.505768 -1) (1.20482 0.553027 -1) (1.17045 0.597776 -1) (1.1332 0.639885 -1) (1.09327 0.679247 -1) (1.05084 0.71576 -1) (1.00609 0.74933 -1) (0.959211 0.77986 -1) (0.910394 0.807255 -1) (0.859838 0.831422 -1) (0.807751 0.852273 -1) (0.754352 0.869724 -1) (0.699869 0.883705 -1) (0.64454 0.894156 -1) (0.58861 0.901033 -1) (0.532329 0.904309 -1) (0.47595 0.903978 -1) (0.419722 0.90005 -1) (0.363888 0.892555 -1) (0.308686 0.881542 -1) (0.254339 0.867072 -1) (0.201056 0.849219 -1) (0.149034 0.828066 -1) (0.0984504 0.803698 -1) (0.0494705 0.776202 -1) (0.00224684 0.745658 -1) (-0.0430759 0.712141 -1) (-0.0863548 0.675715 -1) (-0.127442 0.636438 -1) (-0.166177 0.59436 -1) (-0.202377 0.549534 -1) (-0.235832 0.50203 -1) (-0.266304 0.451954 -1) (-0.293532 0.399473 -1) (-0.31725 0.344843 -1) (-0.337223 0.288437 -1) (-0.35328 0.230755 -1) (-0.365354 0.172411 -1) (-0.373487 0.114099 -1) (-0.377807 0.0565567 -1) (-0.379033 -8.47033e-18 -1) (-0.377807 -0.0565567 -1) (-0.373487 -0.114099 -1) (-0.365354 -0.172411 -1) (-0.35328 -0.230755 -1) (-0.337223 -0.288437 -1) (-0.31725 -0.344843 -1) (-0.293532 -0.399473 -1) (-0.266304 -0.451954 -1) (-0.235832 -0.50203 -1) (-0.202377 -0.549534 -1) (-0.166177 -0.59436 -1) (-0.127442 -0.636438 -1) (-0.0863548 -0.675715 -1) (-0.0430759 -0.712141 -1) (0.00224684 -0.745658 -1) (0.0494705 -0.776202 -1) (0.0984504 -0.803698 -1) (0.149034 -0.828066 -1) (0.201056 -0.849219 -1) (0.254339 -0.867072 -1) (0.308686 -0.881542 -1) (0.363888 -0.892555 -1) (0.419722 -0.90005 -1) (0.47595 -0.903978 -1) (0.532329 -0.904309 -1) (0.58861 -0.901033 -1) (0.64454 -0.894156 -1) (0.699869 -0.883705 -1) (0.754352 -0.869724 -1) (0.807751 -0.852273 -1) (0.859838 -0.831422 -1) (0.910394 -0.807255 -1) (0.959211 -0.77986 -1) (1.00609 -0.74933 -1) (1.05084 -0.71576 -1) (1.09327 -0.679247 -1) (1.1332 -0.639885 -1) (1.17045 -0.597776 -1) (1.20482 -0.553027 -1) (1.23612 -0.505768 -1) (1.26416 -0.456159 -1) (1.28876 -0.404417 -1) (1.30976 -0.350836 -1) (1.3271 -0.295814 -1) (1.34079 -0.239861 -1) (1.351 -0.183582 -1) (1.35801 -0.127617 -1) (1.3623 -0.0724165 -1) (1.35984 -0.0224306 -1) (1.37281 0.0730752 -1) (1.36855 0.128739 -1) (1.36159 0.185213 -1) (1.35147 0.242075 -1) (1.33789 0.298705 -1) (1.32068 0.3545 -1) (1.29977 0.408941 -1) (1.27522 0.461617 -1) (1.24717 0.512212 -1) (1.21577 0.560492 -1) (1.18121 0.606276 -1) (1.14368 0.649419 -1) (1.10337 0.689797 -1) (1.06045 0.727296 -1) (1.01512 0.761806 -1) (0.967562 0.79322 -1) (0.91798 0.821431 -1) (0.866577 0.846337 -1) (0.813569 0.867838 -1) (0.759185 0.885846 -1) (0.703662 0.90028 -1) (0.647251 0.911075 -1) (0.590209 0.918183 -1) (0.5328 0.921575 -1) (0.475287 0.921241 -1) (0.417934 0.917193 -1) (0.360998 0.909464 -1) (0.30473 0.898102 -1) (0.249364 0.883176 -1) (0.195124 0.864766 -1) (0.142214 0.842962 -1) (0.0908235 0.817858 -1) (0.0411251 0.78955 -1) (-0.00672217 0.758132 -1) (-0.0525691 0.723688 -1) (-0.0962707 0.686298 -1) (-0.137679 0.646029 -1) (-0.176637 0.602948 -1) (-0.212968 0.557122 -1) (-0.24647 0.508634 -1) (-0.276919 0.457605 -1) (-0.304069 0.404215 -1) (-0.327673 0.348731 -1) (-0.347516 0.291536 -1) (-0.363445 0.233132 -1) (-0.375412 0.174131 -1) (-0.383468 0.115216 -1) (-0.387744 0.0571059 -1) (-0.388956 -8.68717e-18 -1) (-0.387744 -0.0571059 -1) (-0.383468 -0.115216 -1) (-0.375412 -0.174131 -1) (-0.363445 -0.233132 -1) (-0.347516 -0.291536 -1) (-0.327673 -0.348731 -1) (-0.304069 -0.404215 -1) (-0.276919 -0.457605 -1) (-0.24647 -0.508634 -1) (-0.212968 -0.557122 -1) (-0.176637 -0.602948 -1) (-0.137679 -0.646029 -1) (-0.0962707 -0.686298 -1) (-0.0525691 -0.723688 -1) (-0.00672217 -0.758132 -1) (0.0411251 -0.78955 -1) (0.0908235 -0.817858 -1) (0.142214 -0.842962 -1) (0.195124 -0.864766 -1) (0.249364 -0.883176 -1) (0.30473 -0.898102 -1) (0.360998 -0.909464 -1) (0.417934 -0.917193 -1) (0.475287 -0.921241 -1) (0.5328 -0.921575 -1) (0.590209 -0.918183 -1) (0.647251 -0.911075 -1) (0.703662 -0.90028 -1) (0.759185 -0.885846 -1) (0.813569 -0.867838 -1) (0.866577 -0.846337 -1) (0.91798 -0.821431 -1) (0.967562 -0.79322 -1) (1.01512 -0.761806 -1) (1.06045 -0.727296 -1) (1.10337 -0.689797 -1) (1.14368 -0.649419 -1) (1.18121 -0.606276 -1) (1.21577 -0.560492 -1) (1.24717 -0.512212 -1) (1.27522 -0.461617 -1) (1.29977 -0.408941 -1) (1.32068 -0.3545 -1) (1.33789 -0.298705 -1) (1.35147 -0.242075 -1) (1.36159 -0.185213 -1) (1.36855 -0.128739 -1) (1.37281 -0.0730752 -1) (1.37034 -0.0226488 -1) (1.38363 0.073746 -1) (1.37939 0.12988 -1) (1.37249 0.186868 -1) (1.36245 0.244317 -1) (1.34898 0.301624 -1) (1.33188 0.358193 -1) (1.31106 0.4135 -1) (1.28656 0.467114 -1) (1.25849 0.518705 -1) (1.22699 0.568017 -1) (1.19224 0.61485 -1) (1.15442 0.659043 -1) (1.11371 0.700454 -1) (1.0703 0.738956 -1) (1.02437 0.774424 -1) (0.976121 0.806739 -1) (0.925755 0.835783 -1) (0.873485 0.861441 -1) (0.819533 0.883608 -1) (0.764139 0.902182 -1) (0.707552 0.917079 -1) (0.650033 0.928226 -1) (0.591852 0.93557 -1) (0.533284 0.93908 -1) (0.474609 0.938745 -1) (0.416104 0.934575 -1) (0.358039 0.926606 -1) (0.300676 0.91489 -1) (0.244266 0.899499 -1) (0.189042 0.880521 -1) (0.135221 0.858053 -1) (0.0830006 0.832199 -1) (0.0325631 0.803066 -1) (-0.0159261 0.770756 -1) (-0.0623131 0.73537 -1) (-0.10645 0.696997 -1) (-0.148191 0.655721 -1) (-0.187379 0.611621 -1) (-0.223844 0.56478 -1) (-0.257397 0.515295 -1) (-0.287823 0.463302 -1) (-0.314893 0.408993 -1) (-0.338382 0.352649 -1) (-0.358093 0.294659 -1) (-0.373895 0.23553 -1) (-0.385754 0.175868 -1) (-0.393734 0.116344 -1) (-0.397965 0.0576612 -1) (-0.399163 -8.57875e-18 -1) (-0.397965 -0.0576612 -1) (-0.393734 -0.116344 -1) (-0.385754 -0.175868 -1) (-0.373895 -0.23553 -1) (-0.358093 -0.294659 -1) (-0.338382 -0.352649 -1) (-0.314893 -0.408993 -1) (-0.287823 -0.463302 -1) (-0.257397 -0.515295 -1) (-0.223844 -0.56478 -1) (-0.187379 -0.611621 -1) (-0.148191 -0.655721 -1) (-0.10645 -0.696997 -1) (-0.0623131 -0.73537 -1) (-0.0159261 -0.770756 -1) (0.0325631 -0.803066 -1) (0.0830006 -0.832199 -1) (0.135221 -0.858053 -1) (0.189042 -0.880521 -1) (0.244266 -0.899499 -1) (0.300676 -0.91489 -1) (0.358039 -0.926606 -1) (0.416104 -0.934575 -1) (0.474609 -0.938745 -1) (0.533284 -0.93908 -1) (0.591852 -0.93557 -1) (0.650033 -0.928226 -1) (0.707552 -0.917079 -1) (0.764139 -0.902182 -1) (0.819533 -0.883608 -1) (0.873485 -0.861441 -1) (0.925755 -0.835783 -1) (0.976121 -0.806739 -1) (1.02437 -0.774424 -1) (1.0703 -0.738956 -1) (1.11371 -0.700454 -1) (1.15442 -0.659043 -1) (1.19224 -0.61485 -1) (1.22699 -0.568017 -1) (1.25849 -0.518705 -1) (1.28656 -0.467114 -1) (1.31106 -0.4135 -1) (1.33188 -0.358193 -1) (1.34898 -0.301624 -1) (1.36245 -0.244317 -1) (1.37249 -0.186868 -1) (1.37939 -0.12988 -1) (1.38363 -0.073746 -1) (1.38115 -0.022871 -1) (1.39477 0.0744293 -1) (1.39056 0.131042 -1) (1.3837 0.188549 -1) (1.37374 0.246587 -1) (1.36037 0.304573 -1) (1.34337 0.361919 -1) (1.32264 0.418093 -1) (1.29819 0.472654 -1) (1.27009 0.525249 -1) (1.23849 0.575604 -1) (1.20354 0.623501 -1) (1.16542 0.668759 -1) (1.12431 0.711221 -1) (1.08038 0.750743 -1) (1.03385 0.787186 -1) (0.98489 0.82042 -1) (0.933722 0.850312 -1) (0.880563 0.876739 -1) (0.825645 0.899583 -1) (0.769217 0.918737 -1) (0.71154 0.934105 -1) (0.652885 0.945611 -1) (0.593537 0.953198 -1) (0.533784 0.956829 -1) (0.473919 0.956492 -1) (0.414232 0.952199 -1) (0.355008 0.943985 -1) (0.296525 0.931908 -1) (0.239043 0.916045 -1) (0.182809 0.896488 -1) (0.128052 0.873344 -1) (0.0749801 0.846726 -1) (0.0237828 0.81675 -1) (-0.025367 0.783534 -1) (-0.0723103 0.747187 -1) (-0.116897 0.707814 -1) (-0.15898 0.665514 -1) (-0.198406 0.620379 -1) (-0.235012 0.572507 -1) (-0.268617 0.522013 -1) (-0.299021 0.469044 -1) (-0.326013 0.413809 -1) (-0.349385 0.356598 -1) (-0.368963 0.297809 -1) (-0.384637 0.23795 -1) (-0.39639 0.177622 -1) (-0.404292 0.117484 -1) (-0.408479 0.0582228 -1) (-0.409662 -8.57875e-18 -1) (-0.408479 -0.0582228 -1) (-0.404292 -0.117484 -1) (-0.39639 -0.177622 -1) (-0.384637 -0.23795 -1) (-0.368963 -0.297809 -1) (-0.349385 -0.356598 -1) (-0.326013 -0.413809 -1) (-0.299021 -0.469044 -1) (-0.268617 -0.522013 -1) (-0.235012 -0.572507 -1) (-0.198406 -0.620379 -1) (-0.15898 -0.665514 -1) (-0.116897 -0.707814 -1) (-0.0723103 -0.747187 -1) (-0.025367 -0.783534 -1) (0.0237828 -0.81675 -1) (0.0749801 -0.846726 -1) (0.128052 -0.873344 -1) (0.182809 -0.896488 -1) (0.239043 -0.916045 -1) (0.296525 -0.931908 -1) (0.355008 -0.943985 -1) (0.414232 -0.952199 -1) (0.473919 -0.956492 -1) (0.533784 -0.956829 -1) (0.593537 -0.953198 -1) (0.652885 -0.945611 -1) (0.71154 -0.934105 -1) (0.769217 -0.918737 -1) (0.825645 -0.899583 -1) (0.880563 -0.876739 -1) (0.933722 -0.850312 -1) (0.98489 -0.82042 -1) (1.03385 -0.787186 -1) (1.08038 -0.750743 -1) (1.12431 -0.711221 -1) (1.16542 -0.668759 -1) (1.20354 -0.623501 -1) (1.23849 -0.575604 -1) (1.27009 -0.525249 -1) (1.29819 -0.472654 -1) (1.32264 -0.418093 -1) (1.34337 -0.361919 -1) (1.36037 -0.304573 -1) (1.37374 -0.246587 -1) (1.3837 -0.188549 -1) (1.39056 -0.131042 -1) (1.39477 -0.0744293 -1) (1.39229 -0.0230971 -1) (1.4063 0.0751315 -1) (1.40211 0.13224 -1) (1.3953 0.190281 -1) (1.38541 0.248923 -1) (1.37213 0.307605 -1) (1.35524 0.365745 -1) (1.3346 0.422807 -1) (1.31018 0.478336 -1) (1.28206 0.531961 -1) (1.25035 0.583386 -1) (1.21519 0.632374 -1) (1.17676 0.678726 -1) (1.13523 0.722267 -1) (1.09078 0.762837 -1) (1.04361 0.800283 -1) (0.993926 0.83446 -1) (0.941931 0.865225 -1) (0.887856 0.892442 -1) (0.831943 0.915983 -1) (0.77445 0.935732 -1) (0.715649 0.951585 -1) (0.655825 0.963461 -1) (0.595274 0.971296 -1) (0.5343 0.975052 -1) (0.473208 0.974713 -1) (0.412304 0.970294 -1) (0.351888 0.961829 -1) (0.292248 0.949381 -1) (0.233662 0.933031 -1) (0.176388 0.91288 -1) (0.120666 0.889041 -1) (0.0667141 0.861637 -1) (0.0147324 0.830797 -1) (-0.0350997 0.796648 -1) (-0.0826182 0.759314 -1) (-0.12767 0.718915 -1) (-0.170108 0.675561 -1) (-0.209783 0.629364 -1) (-0.246536 0.580435 -1) (-0.280198 0.528904 -1) (-0.310583 0.474935 -1) (-0.337496 0.418749 -1) (-0.360751 0.360649 -1) (-0.380196 0.301041 -1) (-0.395742 0.240434 -1) (-0.407387 0.179424 -1) (-0.415212 0.118655 -1) (-0.419355 0.0587995 -1) (-0.420524 -8.68717e-18 -1) (-0.419355 -0.0587995 -1) (-0.415212 -0.118655 -1) (-0.407387 -0.179424 -1) (-0.395742 -0.240434 -1) (-0.380196 -0.301041 -1) (-0.360751 -0.360649 -1) (-0.337496 -0.418749 -1) (-0.310583 -0.474935 -1) (-0.280198 -0.528904 -1) (-0.246536 -0.580435 -1) (-0.209783 -0.629364 -1) (-0.170108 -0.675561 -1) (-0.12767 -0.718915 -1) (-0.0826182 -0.759314 -1) (-0.0350997 -0.796648 -1) (0.0147324 -0.830797 -1) (0.0667141 -0.861637 -1) (0.120666 -0.889041 -1) (0.176388 -0.91288 -1) (0.233662 -0.933031 -1) (0.292248 -0.949381 -1) (0.351888 -0.961829 -1) (0.412304 -0.970294 -1) (0.473208 -0.974713 -1) (0.5343 -0.975052 -1) (0.595274 -0.971296 -1) (0.655825 -0.963461 -1) (0.715649 -0.951585 -1) (0.77445 -0.935732 -1) (0.831943 -0.915983 -1) (0.887856 -0.892442 -1) (0.941931 -0.865225 -1) (0.993926 -0.83446 -1) (1.04361 -0.800283 -1) (1.09078 -0.762837 -1) (1.13523 -0.722267 -1) (1.17676 -0.678726 -1) (1.21519 -0.632374 -1) (1.25035 -0.583386 -1) (1.28206 -0.531961 -1) (1.31018 -0.478336 -1) (1.3346 -0.422807 -1) (1.35524 -0.365745 -1) (1.37213 -0.307605 -1) (1.38541 -0.248923 -1) (1.3953 -0.190281 -1) (1.40211 -0.13224 -1) (1.4063 -0.0751315 -1) (1.40381 -0.0233275 -1) (1.41818 0.0758475 -1) (1.414 0.133459 -1) (1.40723 0.192041 -1) (1.39741 0.251291 -1) (1.38422 0.310669 -1) (1.36742 0.369606 -1) (1.34686 0.42756 -1) (1.32248 0.484063 -1) (1.29432 0.538726 -1) (1.26249 0.591234 -1) (1.22712 0.641328 -1) (1.18837 0.68879 -1) (1.14641 0.733428 -1) (1.10143 0.775064 -1) (1.05362 0.813532 -1) (1.00318 0.848671 -1) (0.95034 0.880325 -1) (0.895327 0.908348 -1) (0.838395 0.9326 -1) (0.779811 0.952955 -1) (0.71986 0.969305 -1) (0.658839 0.981558 -1) (0.597057 0.989647 -1) (0.534832 0.99353 -1) (0.472484 0.993191 -1) (0.410333 0.988642 -1) (0.348693 0.979922 -1) (0.28787 0.967096 -1) (0.228151 0.950251 -1) (0.169809 0.929493 -1) (0.113096 0.904946 -1) (0.0582421 0.876742 -1) (0.00545428 0.845021 -1) (-0.0450798 0.809922 -1) (-0.0931906 0.771583 -1) (-0.138722 0.730138 -1) (-0.181527 0.685715 -1) (-0.221459 0.638437 -1) (-0.258366 0.588435 -1) (-0.292089 0.535853 -1) (-0.322456 0.480872 -1) (-0.349291 0.423727 -1) (-0.372429 0.364733 -1) (-0.391741 0.3043 -1) (-0.407158 0.242941 -1) (-0.418696 0.181243 -1) (-0.426445 0.119839 -1) (-0.430544 0.0593825 -1) (-0.431699 -9.28348e-18 -1) (-0.430544 -0.0593825 -1) (-0.426445 -0.119839 -1) (-0.418696 -0.181243 -1) (-0.407158 -0.242941 -1) (-0.391741 -0.3043 -1) (-0.372429 -0.364733 -1) (-0.349291 -0.423727 -1) (-0.322456 -0.480872 -1) (-0.292089 -0.535853 -1) (-0.258366 -0.588435 -1) (-0.221459 -0.638437 -1) (-0.181527 -0.685715 -1) (-0.138722 -0.730138 -1) (-0.0931906 -0.771583 -1) (-0.0450798 -0.809922 -1) (0.00545428 -0.845021 -1) (0.0582421 -0.876742 -1) (0.113096 -0.904946 -1) (0.169809 -0.929493 -1) (0.228151 -0.950251 -1) (0.28787 -0.967096 -1) (0.348693 -0.979922 -1) (0.410333 -0.988642 -1) (0.472484 -0.993191 -1) (0.534832 -0.99353 -1) (0.597057 -0.989647 -1) (0.658839 -0.981558 -1) (0.71986 -0.969305 -1) (0.779811 -0.952955 -1) (0.838395 -0.9326 -1) (0.895327 -0.908348 -1) (0.95034 -0.880325 -1) (1.00318 -0.848671 -1) (1.05362 -0.813532 -1) (1.10143 -0.775064 -1) (1.14641 -0.733428 -1) (1.18837 -0.68879 -1) (1.22712 -0.641328 -1) (1.26249 -0.591234 -1) (1.29432 -0.538726 -1) (1.32248 -0.484063 -1) (1.34686 -0.42756 -1) (1.36742 -0.369606 -1) (1.38422 -0.310669 -1) (1.39741 -0.251291 -1) (1.40723 -0.192041 -1) (1.414 -0.133459 -1) (1.41818 -0.0758475 -1) (1.41568 -0.0235628 -1) (1.4304 0.076578 -1) (1.42624 0.134701 -1) (1.41951 0.19383 -1) (1.40974 0.253692 -1) (1.39664 0.31377 -1) (1.37993 0.373505 -1) (1.35943 0.432354 -1) (1.33508 0.489837 -1) (1.30688 0.545547 -1) (1.27493 0.599149 -1) (1.23934 0.650364 -1) (1.20026 0.698953 -1) (1.15787 0.744705 -1) (1.11233 0.787427 -1) (1.06386 0.826934 -1) (1.01266 0.863053 -1) (0.958951 0.895615 -1) (0.902978 0.924459 -1) (0.845003 0.949436 -1) (0.785303 0.970412 -1) (0.724174 0.987267 -1) (0.661927 0.999905 -1) (0.598885 1.00825 -1) (0.535379 1.01227 -1) (0.471745 1.01193 -1) (0.408317 1.00725 -1) (0.345425 0.998268 -1) (0.283388 0.985056 -1) (0.222509 0.967706 -1) (0.163073 0.946331 -1) (0.105344 0.921062 -1) (0.0495624 0.892043 -1) (-0.00405359 0.859424 -1) (-0.0553094 0.823357 -1) (-0.10403 0.783996 -1) (-0.150056 0.741487 -1) (-0.19324 0.695975 -1) (-0.233438 0.6476 -1) (-0.270507 0.596509 -1) (-0.304295 0.542863 -1) (-0.334646 0.486859 -1) (-0.361405 0.428745 -1) (-0.384428 0.368849 -1) (-0.403607 0.307586 -1) (-0.418896 0.24547 -1) (-0.430328 0.18308 -1) (-0.438001 0.121035 -1) (-0.442056 0.0599721 -1) (-0.443197 -9.82558e-18 -1) (-0.442056 -0.0599721 -1) (-0.438001 -0.121035 -1) (-0.430328 -0.18308 -1) (-0.418896 -0.24547 -1) (-0.403607 -0.307586 -1) (-0.384428 -0.368849 -1) (-0.361405 -0.428745 -1) (-0.334646 -0.486859 -1) (-0.304295 -0.542863 -1) (-0.270507 -0.596509 -1) (-0.233438 -0.6476 -1) (-0.19324 -0.695975 -1) (-0.150056 -0.741487 -1) (-0.10403 -0.783996 -1) (-0.0553094 -0.823357 -1) (-0.00405359 -0.859424 -1) (0.0495624 -0.892043 -1) (0.105344 -0.921062 -1) (0.163073 -0.946331 -1) (0.222509 -0.967706 -1) (0.283388 -0.985056 -1) (0.345425 -0.998268 -1) (0.408317 -1.00725 -1) (0.471745 -1.01193 -1) (0.535379 -1.01227 -1) (0.598885 -1.00825 -1) (0.661927 -0.999905 -1) (0.724174 -0.987267 -1) (0.785303 -0.970412 -1) (0.845003 -0.949436 -1) (0.902978 -0.924459 -1) (0.958951 -0.895615 -1) (1.01266 -0.863053 -1) (1.06386 -0.826934 -1) (1.11233 -0.787427 -1) (1.15787 -0.744705 -1) (1.20026 -0.698953 -1) (1.23934 -0.650364 -1) (1.27493 -0.599149 -1) (1.30688 -0.545547 -1) (1.33508 -0.489837 -1) (1.35943 -0.432354 -1) (1.37993 -0.373505 -1) (1.39664 -0.31377 -1) (1.40974 -0.253692 -1) (1.41951 -0.19383 -1) (1.42624 -0.134701 -1) (1.4304 -0.076578 -1) (1.4279 -0.0238033 -1) (1.44299 0.0773233 -1) (1.43884 0.135967 -1) (1.43214 0.19565 -1) (1.42243 0.25613 -1) (1.40939 0.31691 -1) (1.39276 0.377445 -1) (1.37232 0.437193 -1) (1.34799 0.495661 -1) (1.31975 0.552428 -1) (1.28767 0.607136 -1) (1.25185 0.659485 -1) (1.21244 0.709218 -1) (1.16959 0.756102 -1) (1.1235 0.799927 -1) (1.07435 0.840494 -1) (1.02236 0.877611 -1) (0.967766 0.911097 -1) (0.910811 0.940779 -1) (0.851768 0.966496 -1) (0.790926 0.988104 -1) (0.728592 1.00548 -1) (0.665091 1.01851 -1) (0.600759 1.02712 -1) (0.535942 1.03127 -1) (0.470992 1.03093 -1) (0.406257 1.02611 -1) (0.342083 1.01687 -1) (0.278803 1.00327 -1) (0.216734 0.985402 -1) (0.156176 0.963397 -1) (0.0974054 0.937393 -1) (0.0406732 0.907543 -1) (-0.0137932 0.874009 -1) (-0.0657909 0.836957 -1) (-0.115139 0.796554 -1) (-0.161675 0.752963 -1) (-0.205251 0.706344 -1) (-0.245726 0.656855 -1) (-0.282963 0.604659 -1) (-0.316821 0.549935 -1) (-0.347162 0.492896 -1) (-0.373847 0.433804 -1) (-0.396755 0.372998 -1) (-0.415802 0.310901 -1) (-0.430965 0.248022 -1) (-0.442291 0.184935 -1) (-0.449889 0.122244 -1) (-0.453901 0.0605683 -1) (-0.455027 -1.01508e-17 -1) (-0.453901 -0.0605683 -1) (-0.449889 -0.122244 -1) (-0.442291 -0.184935 -1) (-0.430965 -0.248022 -1) (-0.415802 -0.310901 -1) (-0.396755 -0.372998 -1) (-0.373847 -0.433804 -1) (-0.347162 -0.492896 -1) (-0.316821 -0.549935 -1) (-0.282963 -0.604659 -1) (-0.245726 -0.656855 -1) (-0.205251 -0.706344 -1) (-0.161675 -0.752963 -1) (-0.115139 -0.796554 -1) (-0.0657909 -0.836957 -1) (-0.0137932 -0.874009 -1) (0.0406732 -0.907543 -1) (0.0974054 -0.937393 -1) (0.156176 -0.963397 -1) (0.216734 -0.985402 -1) (0.278803 -1.00327 -1) (0.342083 -1.01687 -1) (0.406257 -1.02611 -1) (0.470992 -1.03093 -1) (0.535942 -1.03127 -1) (0.600759 -1.02712 -1) (0.665091 -1.01851 -1) (0.728592 -1.00548 -1) (0.790926 -0.988104 -1) (0.851768 -0.966496 -1) (0.910811 -0.940779 -1) (0.967766 -0.911097 -1) (1.02236 -0.877611 -1) (1.07435 -0.840494 -1) (1.1235 -0.799927 -1) (1.16959 -0.756102 -1) (1.21244 -0.709218 -1) (1.25185 -0.659485 -1) (1.28767 -0.607136 -1) (1.31975 -0.552428 -1) (1.34799 -0.495661 -1) (1.37232 -0.437193 -1) (1.39276 -0.377445 -1) (1.40939 -0.31691 -1) (1.42243 -0.25613 -1) (1.43214 -0.19565 -1) (1.43884 -0.135967 -1) (1.44299 -0.0773233 -1) (1.44049 -0.0240489 -1) (1.45596 0.0780838 -1) (1.45182 0.137257 -1) (1.44514 0.197504 -1) (1.43547 0.258606 -1) (1.4225 0.320092 -1) (1.40593 0.38143 -1) (1.38554 0.442079 -1) (1.36122 0.50154 -1) (1.33293 0.559371 -1) (1.30071 0.615196 -1) (1.26465 0.668695 -1) (1.22489 0.719587 -1) (1.18159 0.767621 -1) (1.13492 0.812569 -1) (1.08508 0.854213 -1) (1.03229 0.892347 -1) (0.976787 0.926775 -1) (0.918828 0.957312 -1) (0.858693 0.983784 -1) (0.796682 1.00604 -1) (0.733116 1.02394 -1) (0.668331 1.03737 -1) (0.602679 1.04625 -1) (0.536522 1.05054 -1) (0.470224 1.0502 -1) (0.404152 1.04525 -1) (0.338665 1.03573 -1) (0.274113 1.02173 -1) (0.210827 1.00334 -1) (0.149119 0.980695 -1) (0.0892804 0.953941 -1) (0.0315727 0.923245 -1) (-0.0237666 0.888779 -1) (-0.0765266 0.850724 -1) (-0.126521 0.809261 -1) (-0.173583 0.764569 -1) (-0.217564 0.716824 -1) (-0.258326 0.666203 -1) (-0.295739 0.612886 -1) (-0.329675 0.55707 -1) (-0.360009 0.498984 -1) (-0.386623 0.438905 -1) (-0.409419 0.377182 -1) (-0.428337 0.314244 -1) (-0.443375 0.250598 -1) (-0.454597 0.186808 -1) (-0.46212 0.123465 -1) (-0.466088 0.061171 -1) (-0.4672 -1.05303e-17 -1) (-0.466088 -0.061171 -1) (-0.46212 -0.123465 -1) (-0.454597 -0.186808 -1) (-0.443375 -0.250598 -1) (-0.428337 -0.314244 -1) (-0.409419 -0.377182 -1) (-0.386623 -0.438905 -1) (-0.360009 -0.498984 -1) (-0.329675 -0.55707 -1) (-0.295739 -0.612886 -1) (-0.258326 -0.666203 -1) (-0.217564 -0.716824 -1) (-0.173583 -0.764569 -1) (-0.126521 -0.809261 -1) (-0.0765266 -0.850724 -1) (-0.0237666 -0.888779 -1) (0.0315727 -0.923245 -1) (0.0892804 -0.953941 -1) (0.149119 -0.980695 -1) (0.210827 -1.00334 -1) (0.274113 -1.02173 -1) (0.338665 -1.03573 -1) (0.404152 -1.04525 -1) (0.470224 -1.0502 -1) (0.536522 -1.05054 -1) (0.602679 -1.04625 -1) (0.668331 -1.03737 -1) (0.733116 -1.02394 -1) (0.796682 -1.00604 -1) (0.858693 -0.983784 -1) (0.918828 -0.957312 -1) (0.976787 -0.926775 -1) (1.03229 -0.892347 -1) (1.08508 -0.854213 -1) (1.13492 -0.812569 -1) (1.18159 -0.767621 -1) (1.22489 -0.719587 -1) (1.26465 -0.668695 -1) (1.30071 -0.615196 -1) (1.33293 -0.559371 -1) (1.36122 -0.50154 -1) (1.38554 -0.442079 -1) (1.40593 -0.38143 -1) (1.4225 -0.320092 -1) (1.43547 -0.258606 -1) (1.44514 -0.197504 -1) (1.45182 -0.137257 -1) (1.45596 -0.0780838 -1) (1.45345 -0.0242996 -1) (1.4693 0.07886 -1) (1.46517 0.138574 -1) (1.45851 0.199392 -1) (1.44888 0.261123 -1) (1.43596 0.323319 -1) (1.41944 0.385463 -1) (1.3991 0.447018 -1) (1.37478 0.507476 -1) (1.34643 0.56638 -1) (1.31406 0.623334 -1) (1.27776 0.677996 -1) (1.23764 0.730063 -1) (1.19387 0.779266 -1) (1.14661 0.825355 -1) (1.09606 0.868096 -1) (1.04245 0.907265 -1) (0.986017 0.942653 -1) (0.92703 0.974061 -1) (0.865778 1.0013 -1) (0.802573 1.02421 -1) (0.737746 1.04265 -1) (0.671649 1.05649 -1) (0.604647 1.06565 -1) (0.537118 1.07008 -1) (0.469442 1.06974 -1) (0.402002 1.06465 -1) (0.335172 1.05486 -1) (0.269317 1.04045 -1) (0.204784 1.02153 -1) (0.1419 0.998228 -1) (0.0809668 0.970711 -1) (0.022259 0.939152 -1) (-0.033976 0.903737 -1) (-0.087519 0.864661 -1) (-0.138177 0.822119 -1) (-0.185781 0.776307 -1) (-0.230181 0.727418 -1) (-0.271243 0.675647 -1) (-0.308842 0.621193 -1) (-0.342862 0.564271 -1) (-0.373195 0.505125 -1) (-0.399741 0.44405 -1) (-0.422429 0.381402 -1) (-0.44122 0.317616 -1) (-0.456135 0.253198 -1) (-0.467254 0.188701 -1) (-0.474703 0.1247 -1) (-0.478628 0.0617805 -1) (-0.479727 -1.11808e-17 -1) (-0.478628 -0.0617805 -1) (-0.474703 -0.1247 -1) (-0.467254 -0.188701 -1) (-0.456135 -0.253198 -1) (-0.44122 -0.317616 -1) (-0.422429 -0.381402 -1) (-0.399741 -0.44405 -1) (-0.373195 -0.505125 -1) (-0.342862 -0.564271 -1) (-0.308842 -0.621193 -1) (-0.271243 -0.675647 -1) (-0.230181 -0.727418 -1) (-0.185781 -0.776307 -1) (-0.138177 -0.822119 -1) (-0.087519 -0.864661 -1) (-0.033976 -0.903737 -1) (0.022259 -0.939152 -1) (0.0809668 -0.970711 -1) (0.1419 -0.998228 -1) (0.204784 -1.02153 -1) (0.269317 -1.04045 -1) (0.335172 -1.05486 -1) (0.402002 -1.06465 -1) (0.469442 -1.06974 -1) (0.537118 -1.07008 -1) (0.604647 -1.06565 -1) (0.671649 -1.05649 -1) (0.737746 -1.04265 -1) (0.802573 -1.02421 -1) (0.865778 -1.0013 -1) (0.92703 -0.974061 -1) (0.986017 -0.942653 -1) (1.04245 -0.907265 -1) (1.09606 -0.868096 -1) (1.14661 -0.825355 -1) (1.19387 -0.779266 -1) (1.23764 -0.730063 -1) (1.27776 -0.677996 -1) (1.31406 -0.623334 -1) (1.34643 -0.56638 -1) (1.37478 -0.507476 -1) (1.3991 -0.447018 -1) (1.41944 -0.385463 -1) (1.43596 -0.323319 -1) (1.44888 -0.261123 -1) (1.45851 -0.199392 -1) (1.46517 -0.138574 -1) (1.4693 -0.07886 -1) (1.46679 -0.0245556 -1) (1.48304 0.0796525 -1) (1.47891 0.139917 -1) (1.47227 0.201316 -1) (1.46266 0.263684 -1) (1.44979 0.326594 -1) (1.43332 0.389548 -1) (1.413 0.452013 -1) (1.38867 0.513473 -1) (1.36025 0.573458 -1) (1.32773 0.631552 -1) (1.29117 0.687391 -1) (1.25069 0.740651 -1) (1.20643 0.791039 -1) (1.15856 0.838288 -1) (1.10729 0.882144 -1) (1.05284 0.922369 -1) (0.995458 0.958735 -1) (0.935421 0.99103 -1) (0.873027 1.01906 -1) (0.808599 1.04264 -1) (0.742483 1.06162 -1) (0.675044 1.07588 -1) (0.606663 1.08533 -1) (0.537731 1.08989 -1) (0.468646 1.08956 -1) (0.399806 1.08433 -1) (0.331602 1.07426 -1) (0.264415 1.05943 -1) (0.198606 1.03997 -1) (0.134517 1.016 -1) (0.0724628 0.987705 -1) (0.0127301 0.955267 -1) (-0.0444235 0.918886 -1) (-0.0987706 0.87877 -1) (-0.150112 0.83513 -1) (-0.198275 0.788179 -1) (-0.243108 0.738127 -1) (-0.284481 0.685189 -1) (-0.322276 0.629582 -1) (-0.356388 0.571539 -1) (-0.386725 0.511322 -1) (-0.413211 0.44924 -1) (-0.435793 0.38566 -1) (-0.454461 0.321021 -1) (-0.469256 0.255824 -1) (-0.480274 0.190613 -1) (-0.48765 0.125948 -1) (-0.491532 0.0623967 -1) (-0.492617 -1.11808e-17 -1) (-0.491532 -0.0623967 -1) (-0.48765 -0.125948 -1) (-0.480274 -0.190613 -1) (-0.469256 -0.255824 -1) (-0.454461 -0.321021 -1) (-0.435793 -0.38566 -1) (-0.413211 -0.44924 -1) (-0.386725 -0.511322 -1) (-0.356388 -0.571539 -1) (-0.322276 -0.629582 -1) (-0.284481 -0.685189 -1) (-0.243108 -0.738127 -1) (-0.198275 -0.788179 -1) (-0.150112 -0.83513 -1) (-0.0987706 -0.87877 -1) (-0.0444235 -0.918886 -1) (0.0127301 -0.955267 -1) (0.0724628 -0.987705 -1) (0.134517 -1.016 -1) (0.198606 -1.03997 -1) (0.264415 -1.05943 -1) (0.331602 -1.07426 -1) (0.399806 -1.08433 -1) (0.468646 -1.08956 -1) (0.537731 -1.08989 -1) (0.606663 -1.08533 -1) (0.675044 -1.07588 -1) (0.742483 -1.06162 -1) (0.808599 -1.04264 -1) (0.873027 -1.01906 -1) (0.935421 -0.99103 -1) (0.995458 -0.958735 -1) (1.05284 -0.922369 -1) (1.10729 -0.882144 -1) (1.15856 -0.838288 -1) (1.20643 -0.791039 -1) (1.25069 -0.740651 -1) (1.29117 -0.687391 -1) (1.32773 -0.631552 -1) (1.36025 -0.573458 -1) (1.38867 -0.513473 -1) (1.413 -0.452013 -1) (1.43332 -0.389548 -1) (1.44979 -0.326594 -1) (1.46266 -0.263684 -1) (1.47227 -0.201316 -1) (1.47891 -0.139917 -1) (1.48304 -0.0796525 -1) (1.48052 -0.0248169 -1) (1.49719 0.0804619 -1) (1.49306 0.141289 -1) (1.48643 0.203279 -1) (1.47684 0.266291 -1) (1.46399 0.329922 -1) (1.44755 0.393689 -1) (1.42726 0.457067 -1) (1.40291 0.519536 -1) (1.3744 0.58061 -1) (1.34171 0.639856 -1) (1.30489 0.696885 -1) (1.26403 0.751352 -1) (1.21927 0.802945 -1) (1.17079 0.851372 -1) (1.11878 0.896363 -1) (1.06347 0.937661 -1) (1.00511 0.975024 -1) (0.944002 1.00822 -1) (0.88044 1.03705 -1) (0.814763 1.06132 -1) (0.74733 1.08086 -1) (0.678519 1.09555 -1) (0.608727 1.10528 -1) (0.538361 1.10999 -1) (0.467835 1.10966 -1) (0.397564 1.10428 -1) (0.327955 1.09393 -1) (0.259405 1.07868 -1) (0.192291 1.05866 -1) (0.126969 1.03402 -1) (0.0637667 1.00493 -1) (0.00298399 0.971596 -1) (-0.0551117 0.93423 -1) (-0.110284 0.893055 -1) (-0.162328 0.848298 -1) (-0.211066 0.800188 -1) (-0.256348 0.748955 -1) (-0.298044 0.694832 -1) (-0.336046 0.638054 -1) (-0.370259 0.578876 -1) (-0.400609 0.517576 -1) (-0.427038 0.454477 -1) (-0.449521 0.389957 -1) (-0.46807 0.324457 -1) (-0.482748 0.258476 -1) (-0.493667 0.192546 -1) (-0.500972 0.12721 -1) (-0.504811 0.0630199 -1) (-0.505883 -9.77137e-18 -1) (-0.504811 -0.0630199 -1) (-0.500972 -0.12721 -1) (-0.493667 -0.192546 -1) (-0.482748 -0.258476 -1) (-0.46807 -0.324457 -1) (-0.449521 -0.389957 -1) (-0.427038 -0.454477 -1) (-0.400609 -0.517576 -1) (-0.370259 -0.578876 -1) (-0.336046 -0.638054 -1) (-0.298044 -0.694832 -1) (-0.256348 -0.748955 -1) (-0.211066 -0.800188 -1) (-0.162328 -0.848298 -1) (-0.110284 -0.893055 -1) (-0.0551117 -0.93423 -1) (0.00298399 -0.971596 -1) (0.0637667 -1.00493 -1) (0.126969 -1.03402 -1) (0.192291 -1.05866 -1) (0.259405 -1.07868 -1) (0.327955 -1.09393 -1) (0.397564 -1.10428 -1) (0.467835 -1.10966 -1) (0.538361 -1.10999 -1) (0.608727 -1.10528 -1) (0.678519 -1.09555 -1) (0.74733 -1.08086 -1) (0.814763 -1.06132 -1) (0.88044 -1.03705 -1) (0.944002 -1.00822 -1) (1.00511 -0.975024 -1) (1.06347 -0.937661 -1) (1.11878 -0.896363 -1) (1.17079 -0.851372 -1) (1.21927 -0.802945 -1) (1.26403 -0.751352 -1) (1.30489 -0.696885 -1) (1.34171 -0.639856 -1) (1.3744 -0.58061 -1) (1.40291 -0.519536 -1) (1.42726 -0.457067 -1) (1.44755 -0.393689 -1) (1.46399 -0.329922 -1) (1.47684 -0.266291 -1) (1.48643 -0.203279 -1) (1.49306 -0.141289 -1) (1.49719 -0.0804619 -1) (1.49466 -0.0250838 -1) (1.51175 0.0812888 -1) (1.50762 0.14269 -1) (1.50099 0.205282 -1) (1.49141 0.268947 -1) (1.47858 0.333305 -1) (1.46217 0.39789 -1) (1.44188 0.462186 -1) (1.41749 0.525669 -1) (1.38889 0.587841 -1) (1.35603 0.648248 -1) (1.31893 0.706481 -1) (1.27768 0.762172 -1) (1.23241 0.814986 -1) (1.18329 0.864611 -1) (1.13052 0.910756 -1) (1.07433 0.953146 -1) (1.01498 0.991523 -1) (0.952775 1.02564 -1) (0.88802 1.05529 -1) (0.821066 1.08025 -1) (0.752286 1.10037 -1) (0.682073 1.11549 -1) (0.610839 1.12552 -1) (0.539008 1.13038 -1) (0.46701 1.13004 -1) (0.395276 1.12453 -1) (0.324231 1.11388 -1) (0.254287 1.0982 -1) (0.185837 1.07761 -1) (0.119253 1.05228 -1) (0.0548766 1.02238 -1) (-0.00698161 0.98814 -1) (-0.0660427 0.949772 -1) (-0.122062 0.90752 -1) (-0.174827 0.861626 -1) (-0.224159 0.812338 -1) (-0.269904 0.759905 -1) (-0.311937 0.704578 -1) (-0.350157 0.646614 -1) (-0.384482 0.586286 -1) (-0.414852 0.52389 -1) (-0.441233 0.459764 -1) (-0.463622 0.394295 -1) (-0.482057 0.327927 -1) (-0.496621 0.261155 -1) (-0.507444 0.194499 -1) (-0.514678 0.128486 -1) (-0.518477 0.0636502 -1) (-0.519534 -7.81981e-18 -1) (-0.518477 -0.0636502 -1) (-0.514678 -0.128486 -1) (-0.507444 -0.194499 -1) (-0.496621 -0.261155 -1) (-0.482057 -0.327927 -1) (-0.463622 -0.394295 -1) (-0.441233 -0.459764 -1) (-0.414852 -0.52389 -1) (-0.384482 -0.586286 -1) (-0.350157 -0.646614 -1) (-0.311937 -0.704578 -1) (-0.269904 -0.759905 -1) (-0.224159 -0.812338 -1) (-0.174827 -0.861626 -1) (-0.122062 -0.90752 -1) (-0.0660427 -0.949772 -1) (-0.00698161 -0.98814 -1) (0.0548766 -1.02238 -1) (0.119253 -1.05228 -1) (0.185837 -1.07761 -1) (0.254287 -1.0982 -1) (0.324231 -1.11388 -1) (0.395276 -1.12453 -1) (0.46701 -1.13004 -1) (0.539008 -1.13038 -1) (0.610839 -1.12552 -1) (0.682073 -1.11549 -1) (0.752286 -1.10037 -1) (0.821066 -1.08025 -1) (0.88802 -1.05529 -1) (0.952775 -1.02564 -1) (1.01498 -0.991523 -1) (1.07433 -0.953146 -1) (1.13052 -0.910756 -1) (1.18329 -0.864611 -1) (1.23241 -0.814986 -1) (1.27768 -0.762172 -1) (1.31893 -0.706481 -1) (1.35603 -0.648248 -1) (1.38889 -0.587841 -1) (1.41749 -0.525669 -1) (1.44188 -0.462186 -1) (1.46217 -0.39789 -1) (1.47858 -0.333305 -1) (1.49141 -0.268947 -1) (1.50099 -0.205282 -1) (1.50762 -0.14269 -1) (1.51175 -0.0812888 -1) (1.50922 -0.0253563 -1) (1.52673 0.0821341 -1) (1.5226 0.144122 -1) (1.51597 0.207328 -1) (1.50639 0.271655 -1) (1.49357 0.336747 -1) (1.47716 0.402156 -1) (1.45686 0.467374 -1) (1.43243 0.531877 -1) (1.40373 0.595154 -1) (1.37067 0.656733 -1) (1.33328 0.716183 -1) (1.29163 0.773114 -1) (1.24584 0.827167 -1) (1.19607 0.878008 -1) (1.14252 0.925326 -1) (1.08543 0.968828 -1) (1.02507 1.00824 -1) (0.961743 1.0433 -1) (0.895768 1.07377 -1) (0.827511 1.09945 -1) (0.757354 1.12015 -1) (0.685709 1.13571 -1) (0.613002 1.14604 -1) (0.539672 1.15105 -1) (0.466169 1.15072 -1) (0.39294 1.14505 -1) (0.320427 1.13411 -1) (0.249058 1.118 -1) (0.179244 1.09683 -1) (0.111369 1.07079 -1) (0.0457903 1.04008 -1) (-0.0171689 1.0049 -1) (-0.0772193 0.965516 -1) (-0.134107 0.922167 -1) (-0.187614 0.875117 -1) (-0.237556 0.824631 -1) (-0.28378 0.770979 -1) (-0.326165 0.71443 -1) (-0.364615 0.655264 -1) (-0.399061 0.593771 -1) (-0.429461 0.530267 -1) (-0.455802 0.465103 -1) (-0.478104 0.398676 -1) (-0.496431 0.331433 -1) (-0.510887 0.263863 -1) (-0.521616 0.196474 -1) (-0.528782 0.129776 -1) (-0.53254 0.0642877 -1) (-0.533584 -6.95245e-18 -1) (-0.53254 -0.0642877 -1) (-0.528782 -0.129776 -1) (-0.521616 -0.196474 -1) (-0.510887 -0.263863 -1) (-0.496431 -0.331433 -1) (-0.478104 -0.398676 -1) (-0.455802 -0.465103 -1) (-0.429461 -0.530267 -1) (-0.399061 -0.593771 -1) (-0.364615 -0.655264 -1) (-0.326165 -0.71443 -1) (-0.28378 -0.770979 -1) (-0.237556 -0.824631 -1) (-0.187614 -0.875117 -1) (-0.134107 -0.922167 -1) (-0.0772193 -0.965516 -1) (-0.0171689 -1.0049 -1) (0.0457903 -1.04008 -1) (0.111369 -1.07079 -1) (0.179244 -1.09683 -1) (0.249058 -1.118 -1) (0.320427 -1.13411 -1) (0.39294 -1.14505 -1) (0.466169 -1.15072 -1) (0.539672 -1.15105 -1) (0.613002 -1.14604 -1) (0.685709 -1.13571 -1) (0.757354 -1.12015 -1) (0.827511 -1.09945 -1) (0.895768 -1.07377 -1) (0.961743 -1.0433 -1) (1.02507 -1.00824 -1) (1.08543 -0.968828 -1) (1.14252 -0.925326 -1) (1.19607 -0.878008 -1) (1.24584 -0.827167 -1) (1.29163 -0.773114 -1) (1.33328 -0.716183 -1) (1.37067 -0.656733 -1) (1.40373 -0.595154 -1) (1.43243 -0.531877 -1) (1.45686 -0.467374 -1) (1.47716 -0.402156 -1) (1.49357 -0.336747 -1) (1.50639 -0.271655 -1) (1.51597 -0.207328 -1) (1.5226 -0.144122 -1) (1.52673 -0.0821341 -1) (1.5242 -0.0256348 -1) (1.54215 0.0829984 -1) (1.53801 0.145586 -1) (1.53137 0.209419 -1) (1.52179 0.274419 -1) (1.50896 0.340252 -1) (1.49255 0.40649 -1) (1.47223 0.472637 -1) (1.44774 0.538165 -1) (1.41891 0.602554 -1) (1.38566 0.665316 -1) (1.34797 0.725997 -1) (1.3059 0.784183 -1) (1.25956 0.839491 -1) (1.20913 0.891567 -1) (1.15479 0.940078 -1) (1.09678 0.984711 -1) (1.03539 1.02517 -1) (0.970908 1.06119 -1) (0.903688 1.09251 -1) (0.834097 1.11891 -1) (0.762536 1.1402 -1) (0.689427 1.15622 -1) (0.615214 1.16686 -1) (0.540355 1.17202 -1) (0.465314 1.17169 -1) (0.390557 1.16588 -1) (0.316544 1.15464 -1) (0.243719 1.13807 -1) (0.172509 1.11632 -1) (0.103314 1.08956 -1) (0.0365059 1.05801 -1) (-0.0275803 1.02189 -1) (-0.088644 0.981466 -1) (-0.146423 0.937001 -1) (-0.200691 0.888775 -1) (-0.251262 0.837072 -1) (-0.297982 0.78218 -1) (-0.340732 0.724392 -1) (-0.379425 0.664006 -1) (-0.414004 0.601334 -1) (-0.444444 0.536708 -1) (-0.470753 0.470496 -1) (-0.492977 0.403102 -1) (-0.511202 0.334976 -1) (-0.525555 0.2666 -1) (-0.536195 0.198471 -1) (-0.543295 0.131082 -1) (-0.547012 0.0649327 -1) (-0.548043 -4.5672e-18 -1) (-0.547012 -0.0649327 -1) (-0.543295 -0.131082 -1) (-0.536195 -0.198471 -1) (-0.525555 -0.2666 -1) (-0.511202 -0.334976 -1) (-0.492977 -0.403102 -1) (-0.470753 -0.470496 -1) (-0.444444 -0.536708 -1) (-0.414004 -0.601334 -1) (-0.379425 -0.664006 -1) (-0.340732 -0.724392 -1) (-0.297982 -0.78218 -1) (-0.251262 -0.837072 -1) (-0.200691 -0.888775 -1) (-0.146423 -0.937001 -1) (-0.088644 -0.981466 -1) (-0.0275803 -1.02189 -1) (0.0365059 -1.05801 -1) (0.103314 -1.08956 -1) (0.172509 -1.11632 -1) (0.243719 -1.13807 -1) (0.316544 -1.15464 -1) (0.390557 -1.16588 -1) (0.465314 -1.17169 -1) (0.540355 -1.17202 -1) (0.615214 -1.16686 -1) (0.689427 -1.15622 -1) (0.762536 -1.1402 -1) (0.834097 -1.11891 -1) (0.903688 -1.09251 -1) (0.970908 -1.06119 -1) (1.03539 -1.02517 -1) (1.09678 -0.984711 -1) (1.15479 -0.940078 -1) (1.20913 -0.891567 -1) (1.25956 -0.839491 -1) (1.3059 -0.784183 -1) (1.34797 -0.725997 -1) (1.38566 -0.665316 -1) (1.41891 -0.602554 -1) (1.44774 -0.538165 -1) (1.47223 -0.472637 -1) (1.49255 -0.40649 -1) (1.50896 -0.340252 -1) (1.52179 -0.274419 -1) (1.53137 -0.209419 -1) (1.53801 -0.145586 -1) (1.54215 -0.0829984 -1) (1.53962 -0.0259195 -1) (1.55802 0.0838826 -1) (1.55387 0.147084 -1) (1.54722 0.211556 -1) (1.53762 0.277241 -1) (1.52478 0.343824 -1) (1.50834 0.410899 -1) (1.48798 0.477979 -1) (1.46341 0.544538 -1) (1.43445 0.610048 -1) (1.40098 0.674002 -1) (1.36298 0.735926 -1) (1.32048 0.795382 -1) (1.27359 0.851964 -1) (1.22247 0.905293 -1) (1.16732 0.955016 -1) (1.10838 1.0008 -1) (1.04592 1.04233 -1) (0.980272 1.07932 -1) (0.91178 1.11151 -1) (0.840828 1.13865 -1) (0.767831 1.16054 -1) (0.693227 1.17702 -1) (0.617477 1.18797 -1) (0.541055 1.1933 -1) (0.464444 1.19297 -1) (0.388126 1.187 -1) (0.31258 1.17545 -1) (0.238267 1.15843 -1) (0.165631 1.13608 -1) (0.0950871 1.10859 -1) (0.0270211 1.07619 -1) (-0.0382182 1.03911 -1) (-0.100319 0.997626 -1) (-0.159011 0.952025 -1) (-0.214062 0.902603 -1) (-0.26528 0.849663 -1) (-0.312512 0.793514 -1) (-0.355643 0.734468 -1) (-0.394593 0.672845 -1) (-0.429317 0.608978 -1) (-0.459809 0.543219 -1) (-0.486097 0.475946 -1) (-0.508251 0.407576 -1) (-0.526382 0.338558 -1) (-0.540637 0.269369 -1) (-0.551191 0.200492 -1) (-0.558227 0.132403 -1) (-0.561907 0.0655855 -1) (-0.562925 -2.50722e-18 -1) (-0.561907 -0.0655855 -1) (-0.558227 -0.132403 -1) (-0.551191 -0.200492 -1) (-0.540637 -0.269369 -1) (-0.526382 -0.338558 -1) (-0.508251 -0.407576 -1) (-0.486097 -0.475946 -1) (-0.459809 -0.543219 -1) (-0.429317 -0.608978 -1) (-0.394593 -0.672845 -1) (-0.355643 -0.734468 -1) (-0.312512 -0.793514 -1) (-0.26528 -0.849663 -1) (-0.214062 -0.902603 -1) (-0.159011 -0.952025 -1) (-0.100319 -0.997626 -1) (-0.0382182 -1.03911 -1) (0.0270211 -1.07619 -1) (0.0950871 -1.10859 -1) (0.165631 -1.13608 -1) (0.238267 -1.15843 -1) (0.31258 -1.17545 -1) (0.388126 -1.187 -1) (0.464444 -1.19297 -1) (0.541055 -1.1933 -1) (0.617477 -1.18797 -1) (0.693227 -1.17702 -1) (0.767831 -1.16054 -1) (0.840828 -1.13865 -1) (0.91178 -1.11151 -1) (0.980272 -1.07932 -1) (1.04592 -1.04233 -1) (1.10838 -1.0008 -1) (1.16732 -0.955016 -1) (1.22247 -0.905293 -1) (1.27359 -0.851964 -1) (1.32048 -0.795382 -1) (1.36298 -0.735926 -1) (1.40098 -0.674002 -1) (1.43445 -0.610048 -1) (1.46341 -0.544538 -1) (1.48798 -0.477979 -1) (1.50834 -0.410899 -1) (1.52478 -0.343824 -1) (1.53762 -0.277241 -1) (1.54722 -0.211556 -1) (1.55387 -0.147084 -1) (1.55802 -0.0838826 -1) (1.55549 -0.0262106 -1) (1.57435 0.0847878 -1) (1.57019 0.148618 -1) (1.56351 0.213743 -1) (1.55389 0.280124 -1) (1.54101 0.347468 -1) (1.52454 0.415386 -1) (1.50412 0.483405 -1) (1.47947 0.551002 -1) (1.45036 0.617641 -1) (1.41666 0.682797 -1) (1.37833 0.745977 -1) (1.33538 0.806718 -1) (1.28793 0.864589 -1) (1.23611 0.91919 -1) (1.18012 0.970144 -1) (1.12022 1.0171 -1) (1.05668 1.05972 -1) (0.989839 1.0977 -1) (0.920047 1.13076 -1) (0.847706 1.15866 -1) (0.773242 1.18117 -1) (0.697112 1.19812 -1) (0.619792 1.20939 -1) (0.541774 1.21487 -1) (0.463558 1.21455 -1) (0.385647 1.20843 -1) (0.308534 1.19657 -1) (0.232701 1.17908 -1) (0.158608 1.15612 -1) (0.0866854 1.12789 -1) (0.0173336 1.09462 -1) (-0.0490851 1.05656 -1) (-0.112248 1.014 -1) (-0.171876 0.967244 -1) (-0.227729 0.916606 -1) (-0.279614 0.862409 -1) (-0.327375 0.804982 -1) (-0.370902 0.74466 -1) (-0.410123 0.681785 -1) (-0.445006 0.616708 -1) (-0.475562 0.549801 -1) (-0.50184 0.481457 -1) (-0.523934 0.412101 -1) (-0.541979 0.342182 -1) (-0.556143 0.272171 -1) (-0.566618 0.202537 -1) (-0.573593 0.13374 -1) (-0.577235 0.0662464 -1) (-0.578241 -1.09775e-18 -1) (-0.577235 -0.0662464 -1) (-0.573593 -0.13374 -1) (-0.566618 -0.202537 -1) (-0.556143 -0.272171 -1) (-0.541979 -0.342182 -1) (-0.523934 -0.412101 -1) (-0.50184 -0.481457 -1) (-0.475562 -0.549801 -1) (-0.445006 -0.616708 -1) (-0.410123 -0.681785 -1) (-0.370902 -0.74466 -1) (-0.327375 -0.804982 -1) (-0.279614 -0.862409 -1) (-0.227729 -0.916606 -1) (-0.171876 -0.967244 -1) (-0.112248 -1.014 -1) (-0.0490851 -1.05656 -1) (0.0173336 -1.09462 -1) (0.0866854 -1.12789 -1) (0.158608 -1.15612 -1) (0.232701 -1.17908 -1) (0.308534 -1.19657 -1) (0.385647 -1.20843 -1) (0.463558 -1.21455 -1) (0.541774 -1.21487 -1) (0.619792 -1.20939 -1) (0.697112 -1.19812 -1) (0.773242 -1.18117 -1) (0.847706 -1.15866 -1) (0.920047 -1.13076 -1) (0.989839 -1.0977 -1) (1.05668 -1.05972 -1) (1.12022 -1.0171 -1) (1.18012 -0.970144 -1) (1.23611 -0.91919 -1) (1.28793 -0.864589 -1) (1.33538 -0.806718 -1) (1.37833 -0.745977 -1) (1.41666 -0.682797 -1) (1.45036 -0.617641 -1) (1.47947 -0.551002 -1) (1.50412 -0.483405 -1) (1.52454 -0.415386 -1) (1.54101 -0.347468 -1) (1.55389 -0.280124 -1) (1.56351 -0.213743 -1) (1.57019 -0.148618 -1) (1.57435 -0.0847878 -1) (1.57181 -0.0265085 -1) (1.59115 0.0857148 -1) (1.58697 0.150189 -1) (1.58026 0.215982 -1) (1.57061 0.283073 -1) (1.55769 0.351188 -1) (1.54116 0.419958 -1) (1.52068 0.488923 -1) (1.49592 0.557564 -1) (1.46664 0.625338 -1) (1.4327 0.691706 -1) (1.39402 0.756153 -1) (1.35062 0.818194 -1) (1.30257 0.877373 -1) (1.25004 0.933264 -1) (1.1932 0.985468 -1) (1.13232 1.03361 -1) (1.06768 1.07734 -1) (0.999611 1.11633 -1) (0.928492 1.15029 -1) (0.854731 1.17895 -1) (0.778771 1.20209 -1) (0.701082 1.21953 -1) (0.622159 1.23111 -1) (0.542511 1.23677 -1) (0.462657 1.23645 -1) (0.383118 1.23016 -1) (0.304406 1.21798 -1) (0.227021 1.20003 -1) (0.151438 1.17645 -1) (0.0781071 1.14746 -1) (0.00744122 1.1133 -1) (-0.0601838 1.07424 -1) (-0.124434 1.03059 -1) (-0.18502 0.982661 -1) (-0.241698 0.930787 -1) (-0.294267 0.875313 -1) (-0.342576 0.81659 -1) (-0.386516 0.754974 -1) (-0.426023 0.690828 -1) (-0.461078 0.624527 -1) (-0.49171 0.556459 -1) (-0.517991 0.487032 -1) (-0.540037 0.416679 -1) (-0.558006 0.34585 -1) (-0.572086 0.275008 -1) (-0.582485 0.204608 -1) (-0.589403 0.135094 -1) (-0.59301 0.0669157 -1) (-0.594004 1.72117e-18 -1) (-0.59301 -0.0669157 -1) (-0.589403 -0.135094 -1) (-0.582485 -0.204608 -1) (-0.572086 -0.275008 -1) (-0.558006 -0.34585 -1) (-0.540037 -0.416679 -1) (-0.517991 -0.487032 -1) (-0.49171 -0.556459 -1) (-0.461078 -0.624527 -1) (-0.426023 -0.690828 -1) (-0.386516 -0.754974 -1) (-0.342576 -0.81659 -1) (-0.294267 -0.875313 -1) (-0.241698 -0.930787 -1) (-0.18502 -0.982661 -1) (-0.124434 -1.03059 -1) (-0.0601838 -1.07424 -1) (0.00744122 -1.1133 -1) (0.0781071 -1.14746 -1) (0.151438 -1.17645 -1) (0.227021 -1.20003 -1) (0.304406 -1.21798 -1) (0.383118 -1.23016 -1) (0.462657 -1.23645 -1) (0.542511 -1.23677 -1) (0.622159 -1.23111 -1) (0.701082 -1.21953 -1) (0.778771 -1.20209 -1) (0.854731 -1.17895 -1) (0.928492 -1.15029 -1) (0.999611 -1.11633 -1) (1.06768 -1.07734 -1) (1.13232 -1.03361 -1) (1.1932 -0.985468 -1) (1.25004 -0.933264 -1) (1.30257 -0.877373 -1) (1.35062 -0.818194 -1) (1.39402 -0.756153 -1) (1.4327 -0.691706 -1) (1.46664 -0.625338 -1) (1.49592 -0.557564 -1) (1.52068 -0.488923 -1) (1.54116 -0.419958 -1) (1.55769 -0.351188 -1) (1.57061 -0.283073 -1) (1.58026 -0.215982 -1) (1.58697 -0.150189 -1) (1.59115 -0.0857148 -1) (1.58861 -0.0268134 -1) (1.60843 0.0866649 -1) (1.60422 0.151799 -1) (1.59749 0.218276 -1) (1.58778 0.28609 -1) (1.57481 0.354988 -1) (1.55822 0.424619 -1) (1.53765 0.494537 -1) (1.51276 0.564229 -1) (1.4833 0.633146 -1) (1.4491 0.700735 -1) (1.41006 0.766462 -1) (1.36618 0.829817 -1) (1.31754 0.890319 -1) (1.26426 0.947518 -1) (1.20656 1.00099 -1) (1.14467 1.05034 -1) (1.0789 1.0952 -1) (1.00959 1.13522 -1) (0.937116 1.17009 -1) (0.861906 1.19953 -1) (0.784418 1.22331 -1) (0.705138 1.24124 -1) (0.624579 1.25316 -1) (0.543267 1.25898 -1) (0.461741 1.25866 -1) (0.38054 1.25221 -1) (0.300195 1.23971 -1) (0.221224 1.22127 -1) (0.144121 1.19706 -1) (0.0693503 1.1673 -1) (-0.00265864 1.13224 -1) (-0.0715169 1.09217 -1) (-0.136879 1.04741 -1) (-0.198447 0.998282 -1) (-0.25597 0.945152 -1) (-0.309245 0.888381 -1) (-0.358119 0.828342 -1) (-0.402488 0.765413 -1) (-0.442296 0.69998 -1) (-0.47754 0.632439 -1) (-0.508263 0.563197 -1) (-0.534559 0.492675 -1) (-0.556568 0.421314 -1) (-0.574471 0.349564 -1) (-0.588477 0.277881 -1) (-0.598807 0.206707 -1) (-0.605671 0.136466 -1) (-0.609245 0.0675939 -1) (-0.610228 4.5401e-18 -1) (-0.609245 -0.0675939 -1) (-0.605671 -0.136466 -1) (-0.598807 -0.206707 -1) (-0.588477 -0.277881 -1) (-0.574471 -0.349564 -1) (-0.556568 -0.421314 -1) (-0.534559 -0.492675 -1) (-0.508263 -0.563197 -1) (-0.47754 -0.632439 -1) (-0.442296 -0.69998 -1) (-0.402488 -0.765413 -1) (-0.358119 -0.828342 -1) (-0.309245 -0.888381 -1) (-0.25597 -0.945152 -1) (-0.198447 -0.998282 -1) (-0.136879 -1.04741 -1) (-0.0715169 -1.09217 -1) (-0.00265864 -1.13224 -1) (0.0693503 -1.1673 -1) (0.144121 -1.19706 -1) (0.221224 -1.22127 -1) (0.300195 -1.23971 -1) (0.38054 -1.25221 -1) (0.461741 -1.25866 -1) (0.543267 -1.25898 -1) (0.624579 -1.25316 -1) (0.705138 -1.24124 -1) (0.784418 -1.22331 -1) (0.861906 -1.19953 -1) (0.937116 -1.17009 -1) (1.00959 -1.13522 -1) (1.0789 -1.0952 -1) (1.14467 -1.05034 -1) (1.20656 -1.00099 -1) (1.26426 -0.947518 -1) (1.31754 -0.890319 -1) (1.36618 -0.829817 -1) (1.41006 -0.766462 -1) (1.4491 -0.700735 -1) (1.4833 -0.633146 -1) (1.51276 -0.564229 -1) (1.53765 -0.494537 -1) (1.55822 -0.424619 -1) (1.57481 -0.354988 -1) (1.58778 -0.28609 -1) (1.59749 -0.218276 -1) (1.60422 -0.151799 -1) (1.60843 -0.0866649 -1) (1.60589 -0.0271257 -1) (1.6262 0.0876392 -1) (1.62197 0.153449 -1) (1.61519 0.220627 -1) (1.60543 0.28918 -1) (1.5924 0.358873 -1) (1.57572 0.429374 -1) (1.55504 0.500254 -1) (1.53001 0.571003 -1) (1.50035 0.641071 -1) (1.46587 0.709891 -1) (1.42645 0.776909 -1) (1.38208 0.841592 -1) (1.33282 0.903434 -1) (1.27879 0.961959 -1) (1.2202 1.01672 -1) (1.15729 1.0673 -1) (1.09037 1.1133 -1) (1.01978 1.15436 -1) (0.945922 1.19016 -1) (0.869234 1.2204 -1) (0.790186 1.24484 -1) (0.709282 1.26326 -1) (0.627052 1.27552 -1) (0.544042 1.28151 -1) (0.460809 1.2812 -1) (0.377911 1.27459 -1) (0.295899 1.26176 -1) (0.215309 1.24283 -1) (0.136653 1.21797 -1) (0.0604125 1.18743 -1) (-0.0129685 1.15145 -1) (-0.0830873 1.11035 -1) (-0.149587 1.06445 -1) (-0.212161 1.01411 -1) (-0.27055 0.959704 -1) (-0.32455 0.901616 -1) (-0.374008 0.840241 -1) (-0.418824 0.775982 -1) (-0.458951 0.709245 -1) (-0.494398 0.640449 -1) (-0.525227 0.570018 -1) (-0.551552 0.49839 -1) (-0.573538 0.426009 -1) (-0.591387 0.353328 -1) (-0.605327 0.280794 -1) (-0.615594 0.208834 -1) (-0.622409 0.137858 -1) (-0.625952 0.0682816 -1) (-0.626925 6.81692e-18 -1) (-0.625952 -0.0682816 -1) (-0.622409 -0.137858 -1) (-0.615594 -0.208834 -1) (-0.605327 -0.280794 -1) (-0.591387 -0.353328 -1) (-0.573538 -0.426009 -1) (-0.551552 -0.49839 -1) (-0.525227 -0.570018 -1) (-0.494398 -0.640449 -1) (-0.458951 -0.709245 -1) (-0.418824 -0.775982 -1) (-0.374008 -0.840241 -1) (-0.32455 -0.901616 -1) (-0.27055 -0.959704 -1) (-0.212161 -1.01411 -1) (-0.149587 -1.06445 -1) (-0.0830873 -1.11035 -1) (-0.0129685 -1.15145 -1) (0.0604125 -1.18743 -1) (0.136653 -1.21797 -1) (0.215309 -1.24283 -1) (0.295899 -1.26176 -1) (0.377911 -1.27459 -1) (0.460809 -1.2812 -1) (0.544042 -1.28151 -1) (0.627052 -1.27552 -1) (0.709282 -1.26326 -1) (0.790186 -1.24484 -1) (0.869234 -1.2204 -1) (0.945922 -1.19016 -1) (1.01978 -1.15436 -1) (1.09037 -1.1133 -1) (1.15729 -1.0673 -1) (1.2202 -1.01672 -1) (1.27879 -0.961959 -1) (1.33282 -0.903434 -1) (1.38208 -0.841592 -1) (1.42645 -0.776909 -1) (1.46587 -0.709891 -1) (1.50035 -0.641071 -1) (1.53001 -0.571003 -1) (1.55504 -0.500254 -1) (1.57572 -0.429374 -1) (1.5924 -0.358873 -1) (1.60543 -0.28918 -1) (1.61519 -0.220627 -1) (1.62197 -0.153449 -1) (1.6262 -0.0876392 -1) (1.62367 -0.0274459 -1) (1.64448 0.0886388 -1) (1.64022 0.155143 -1) (1.63339 0.223038 -1) (1.62357 0.292345 -1) (1.61045 0.362847 -1) (1.59367 0.434231 -1) (1.57286 0.50608 -1) (1.54767 0.577895 -1) (1.5178 0.64912 -1) (1.48302 0.71918 -1) (1.4432 0.787501 -1) (1.39832 0.853525 -1) (1.34842 0.916723 -1) (1.29363 0.976592 -1) (1.23412 1.03266 -1) (1.17017 1.08448 -1) (1.10207 1.13165 -1) (1.03018 1.17378 -1) (0.954913 1.21052 -1) (0.876715 1.24157 -1) (0.796076 1.26667 -1) (0.713515 1.2856 -1) (0.62958 1.29821 -1) (0.544836 1.30438 -1) (0.459861 1.30407 -1) (0.375231 1.29729 -1) (0.291517 1.28412 -1) (0.209275 1.26469 -1) (0.129034 1.23919 -1) (0.0512917 1.20784 -1) (-0.0234909 1.17093 -1) (-0.0948979 1.12878 -1) (-0.162561 1.08172 -1) (-0.226164 1.03015 -1) (-0.285443 0.974449 -1) (-0.340188 0.915024 -1) (-0.390249 0.852294 -1) (-0.435529 0.786685 -1) (-0.475992 0.718629 -1) (-0.511659 0.648562 -1) (-0.54261 0.576929 -1) (-0.56898 0.50418 -1) (-0.590957 0.430769 -1) (-0.608763 0.357145 -1) (-0.622647 0.283748 -1) (-0.63286 0.210992 -1) (-0.639631 0.139269 -1) (-0.643145 0.0689792 -1) (-0.644108 6.27482e-18 -1) (-0.643145 -0.0689792 -1) (-0.639631 -0.139269 -1) (-0.63286 -0.210992 -1) (-0.622647 -0.283748 -1) (-0.608763 -0.357145 -1) (-0.590957 -0.430769 -1) (-0.56898 -0.50418 -1) (-0.54261 -0.576929 -1) (-0.511659 -0.648562 -1) (-0.475992 -0.718629 -1) (-0.435529 -0.786685 -1) (-0.390249 -0.852294 -1) (-0.340188 -0.915024 -1) (-0.285443 -0.974449 -1) (-0.226164 -1.03015 -1) (-0.162561 -1.08172 -1) (-0.0948979 -1.12878 -1) (-0.0234909 -1.17093 -1) (0.0512917 -1.20784 -1) (0.129034 -1.23919 -1) (0.209275 -1.26469 -1) (0.291517 -1.28412 -1) (0.375231 -1.29729 -1) (0.459861 -1.30407 -1) (0.544836 -1.30438 -1) (0.62958 -1.29821 -1) (0.713515 -1.2856 -1) (0.796076 -1.26667 -1) (0.876715 -1.24157 -1) (0.954913 -1.21052 -1) (1.03018 -1.17378 -1) (1.10207 -1.13165 -1) (1.17017 -1.08448 -1) (1.23412 -1.03266 -1) (1.29363 -0.976592 -1) (1.34842 -0.916723 -1) (1.39832 -0.853525 -1) (1.4432 -0.787501 -1) (1.48302 -0.71918 -1) (1.5178 -0.64912 -1) (1.54767 -0.577895 -1) (1.57286 -0.50608 -1) (1.59367 -0.434231 -1) (1.61045 -0.362847 -1) (1.62357 -0.292345 -1) (1.63339 -0.223038 -1) (1.64022 -0.155143 -1) (1.64448 -0.0886388 -1) (1.64195 -0.0277742 -1) (1.66333 0.0896673 -1) (1.65903 0.156889 -1) (1.65215 0.225521 -1) (1.64225 0.295604 -1) (1.62904 0.366934 -1) (1.61215 0.439218 -1) (1.5912 0.512054 -1) (1.56583 0.584951 -1) (1.53572 0.657353 -1) (1.50062 0.728672 -1) (1.4604 0.798317 -1) (1.41499 0.865707 -1) (1.36443 0.930285 -1) (1.30884 0.991525 -1) (1.2484 1.04893 -1) (1.18337 1.10202 -1) (1.11407 1.15038 -1) (1.04085 1.1936 -1) (0.964132 1.2313 -1) (0.884387 1.26319 -1) (0.802116 1.28897 -1) (0.717856 1.30842 -1) (0.632173 1.32137 -1) (0.545653 1.32772 -1) (0.458891 1.32742 -1) (0.372486 1.32047 -1) (0.287028 1.30696 -1) (0.203091 1.28702 -1) (0.121224 1.26084 -1) (0.0419425 1.22868 -1) (-0.0342779 1.19081 -1) (-0.107007 1.14758 -1) (-0.175865 1.09936 -1) (-0.240526 1.04652 -1) (-0.300719 0.989495 -1) (-0.356234 0.928705 -1) (-0.406918 0.864592 -1) (-0.452682 0.797607 -1) (-0.493498 0.728204 -1) (-0.5294 0.656842 -1) (-0.560487 0.583984 -1) (-0.586916 0.510093 -1) (-0.608895 0.435631 -1) (-0.626669 0.361046 -1) (-0.640505 0.286768 -1) (-0.650669 0.213199 -1) (-0.6574 0.140712 -1) (-0.66089 0.0696922 -1) (-0.661844 4.75694e-18 -1) (-0.66089 -0.0696922 -1) (-0.6574 -0.140712 -1) (-0.650669 -0.213199 -1) (-0.640505 -0.286768 -1) (-0.626669 -0.361046 -1) (-0.608895 -0.435631 -1) (-0.586916 -0.510093 -1) (-0.560487 -0.583984 -1) (-0.5294 -0.656842 -1) (-0.493498 -0.728204 -1) (-0.452682 -0.797607 -1) (-0.406918 -0.864592 -1) (-0.356234 -0.928705 -1) (-0.300719 -0.989495 -1) (-0.240526 -1.04652 -1) (-0.175865 -1.09936 -1) (-0.107007 -1.14758 -1) (-0.0342779 -1.19081 -1) (0.0419425 -1.22868 -1) (0.121224 -1.26084 -1) (0.203091 -1.28702 -1) (0.287028 -1.30696 -1) (0.372486 -1.32047 -1) (0.458891 -1.32742 -1) (0.545653 -1.32772 -1) (0.632173 -1.32137 -1) (0.717856 -1.30842 -1) (0.802116 -1.28897 -1) (0.884387 -1.26319 -1) (0.964132 -1.2313 -1) (1.04085 -1.1936 -1) (1.11407 -1.15038 -1) (1.18337 -1.10202 -1) (1.2484 -1.04893 -1) (1.30884 -0.991525 -1) (1.36443 -0.930285 -1) (1.41499 -0.865707 -1) (1.4604 -0.798317 -1) (1.50062 -0.728672 -1) (1.53572 -0.657353 -1) (1.56583 -0.584951 -1) (1.5912 -0.512054 -1) (1.61215 -0.439218 -1) (1.62904 -0.366934 -1) (1.64225 -0.295604 -1) (1.65215 -0.225521 -1) (1.65903 -0.156889 -1) (1.66333 -0.0896673 -1) (1.66081 -0.0281107 -1) (1.68271 0.0907244 -1) (1.67837 0.158681 -1) (1.67143 0.228071 -1) (1.66145 0.298946 -1) (1.64812 0.37112 -1) (1.6311 0.444316 -1) (1.60999 0.518149 -1) (1.58442 0.592136 -1) (1.55406 0.665722 -1) (1.51863 0.73831 -1) (1.47797 0.80929 -1) (1.43202 0.878059 -1) (1.38078 0.944034 -1) (1.32437 1.00666 -1) (1.26298 1.06542 -1) (1.19685 1.11981 -1) (1.12631 1.16937 -1) (1.05173 1.21369 -1) (0.973541 1.25239 -1) (0.892218 1.28511 -1) (0.808282 1.31158 -1) (0.722289 1.33157 -1) (0.634823 1.34488 -1) (0.546489 1.35141 -1) (0.457905 1.35111 -1) (0.369688 1.34399 -1) (0.28245 1.33013 -1) (0.196784 1.30967 -1) (0.113257 1.28281 -1) (0.0324037 1.24981 -1) (-0.045285 1.21098 -1) (-0.119365 1.16666 -1) (-0.189444 1.11723 -1) (-0.255187 1.06312 -1) (-0.316319 1.00474 -1) (-0.372624 0.942568 -1) (-0.423952 0.877054 -1) (-0.470219 0.808673 -1) (-0.511406 0.737906 -1) (-0.547562 0.665233 -1) (-0.578804 0.591136 -1) (-0.605308 0.516091 -1) (-0.627304 0.440564 -1) (-0.645061 0.365005 -1) (-0.658861 0.289834 -1) (-0.668985 0.215439 -1) (-0.675682 0.142178 -1) (-0.67915 0.0704166 -1) (-0.680096 3.23905e-18 -1) (-0.67915 -0.0704166 -1) (-0.675682 -0.142178 -1) (-0.668985 -0.215439 -1) (-0.658861 -0.289834 -1) (-0.645061 -0.365005 -1) (-0.627304 -0.440564 -1) (-0.605308 -0.516091 -1) (-0.578804 -0.591136 -1) (-0.547562 -0.665233 -1) (-0.511406 -0.737906 -1) (-0.470219 -0.808673 -1) (-0.423952 -0.877054 -1) (-0.372624 -0.942568 -1) (-0.316319 -1.00474 -1) (-0.255187 -1.06312 -1) (-0.189444 -1.11723 -1) (-0.119365 -1.16666 -1) (-0.045285 -1.21098 -1) (0.0324037 -1.24981 -1) (0.113257 -1.28281 -1) (0.196784 -1.30967 -1) (0.28245 -1.33013 -1) (0.369688 -1.34399 -1) (0.457905 -1.35111 -1) (0.546489 -1.35141 -1) (0.634823 -1.34488 -1) (0.722289 -1.33157 -1) (0.808282 -1.31158 -1) (0.892218 -1.28511 -1) (0.973541 -1.25239 -1) (1.05173 -1.21369 -1) (1.12631 -1.16937 -1) (1.19685 -1.11981 -1) (1.26298 -1.06542 -1) (1.32437 -1.00666 -1) (1.38078 -0.944034 -1) (1.43202 -0.878059 -1) (1.47797 -0.80929 -1) (1.51863 -0.73831 -1) (1.55406 -0.665722 -1) (1.58442 -0.592136 -1) (1.60999 -0.518149 -1) (1.6311 -0.444316 -1) (1.64812 -0.37112 -1) (1.66145 -0.298946 -1) (1.67143 -0.228071 -1) (1.67837 -0.158681 -1) (1.68271 -0.0907244 -1) (1.6802 -0.0284568 -1) (1.70264 0.0918115 -1) (1.69825 0.160524 -1) (1.69124 0.23069 -1) (1.68116 0.302376 -1) (1.66771 0.37541 -1) (1.65054 0.449531 -1) (1.62925 0.524371 -1) (1.60346 0.599458 -1) (1.57282 0.674236 -1) (1.53703 0.748101 -1) (1.49593 0.820427 -1) (1.4494 0.890588 -1) (1.39747 0.957975 -1) (1.34023 1.02201 -1) (1.27786 1.08213 -1) (1.21061 1.13784 -1) (1.13881 1.18863 -1) (1.06284 1.23408 -1) (0.983145 1.27377 -1) (0.900211 1.30736 -1) (0.814577 1.33453 -1) (0.726815 1.35506 -1) (0.63753 1.36874 -1) (0.547346 1.37546 -1) (0.456902 1.37516 -1) (0.366837 1.36786 -1) (0.277782 1.35364 -1) (0.190351 1.33265 -1) (0.105131 1.3051 -1) (0.0226728 1.27126 -1) (-0.056515 1.23143 -1) (-0.131974 1.186 -1) (-0.203302 1.13536 -1) (-0.270153 1.07994 -1) (-0.332246 1.0202 -1) (-0.389363 0.95662 -1) (-0.441356 0.889683 -1) (-0.488146 0.819889 -1) (-0.529723 0.747741 -1) (-0.566152 0.673742 -1) (-0.597566 0.59839 -1) (-0.624164 0.522177 -1) (-0.646196 0.445573 -1) (-0.663949 0.369027 -1) (-0.677726 0.292951 -1) (-0.68782 0.217717 -1) (-0.69449 0.143668 -1) (-0.697939 0.0711529 -1) (-0.698879 2.80537e-18 -1) (-0.697939 -0.0711529 -1) (-0.69449 -0.143668 -1) (-0.68782 -0.217717 -1) (-0.677726 -0.292951 -1) (-0.663949 -0.369027 -1) (-0.646196 -0.445573 -1) (-0.624164 -0.522177 -1) (-0.597566 -0.59839 -1) (-0.566152 -0.673742 -1) (-0.529723 -0.747741 -1) (-0.488146 -0.819889 -1) (-0.441356 -0.889683 -1) (-0.389363 -0.95662 -1) (-0.332246 -1.0202 -1) (-0.270153 -1.07994 -1) (-0.203302 -1.13536 -1) (-0.131974 -1.186 -1) (-0.056515 -1.23143 -1) (0.0226728 -1.27126 -1) (0.105131 -1.3051 -1) (0.190351 -1.33265 -1) (0.277782 -1.35364 -1) (0.366837 -1.36786 -1) (0.456902 -1.37516 -1) (0.547346 -1.37546 -1) (0.63753 -1.36874 -1) (0.726815 -1.35506 -1) (0.814577 -1.33453 -1) (0.900211 -1.30736 -1) (0.983145 -1.27377 -1) (1.06284 -1.23408 -1) (1.13881 -1.18863 -1) (1.21061 -1.13784 -1) (1.27786 -1.08213 -1) (1.34023 -1.02201 -1) (1.39747 -0.957975 -1) (1.4494 -0.890588 -1) (1.49593 -0.820427 -1) (1.53703 -0.748101 -1) (1.57282 -0.674236 -1) (1.60346 -0.599458 -1) (1.62925 -0.524371 -1) (1.65054 -0.449531 -1) (1.66771 -0.37541 -1) (1.68116 -0.302376 -1) (1.69124 -0.23069 -1) (1.69825 -0.160524 -1) (1.70264 -0.0918115 -1) (1.70014 -0.028813 -1) (1.72312 0.0929298 -1) (1.71868 0.162419 -1) (1.71159 0.233383 -1) (1.7014 0.305899 -1) (1.68781 0.37981 -1) (1.67048 0.454871 -1) (1.64899 0.530729 -1) (1.62295 0.606924 -1) (1.59201 0.682903 -1) (1.55585 0.758054 -1) (1.51427 0.831736 -1) (1.46716 0.903301 -1) (1.41451 0.972116 -1) (1.35641 1.03757 -1) (1.29304 1.09909 -1) (1.22465 1.15612 -1) (1.15156 1.20816 -1) (1.07418 1.25475 -1) (0.992945 1.29546 -1) (0.908368 1.32992 -1) (0.821001 1.35782 -1) (0.731435 1.37889 -1) (0.640294 1.39295 -1) (0.548224 1.39986 -1) (0.455883 1.39957 -1) (0.363931 1.39209 -1) (0.273023 1.37751 -1) (0.183791 1.35598 -1) (0.0968428 1.32772 -1) (0.0127473 1.29301 -1) (-0.067971 1.25218 -1) (-0.144839 1.20562 -1) (-0.217443 1.15374 -1) (-0.285427 1.097 -1) (-0.348505 1.03587 -1) (-0.406457 0.970865 -1) (-0.459136 0.902487 -1) (-0.506468 0.831261 -1) (-0.548456 0.757715 -1) (-0.585178 0.682374 -1) (-0.616785 0.605754 -1) (-0.643494 0.528357 -1) (-0.665579 0.450663 -1) (-0.683346 0.373116 -1) (-0.697112 0.29612 -1) (-0.707186 0.220035 -1) (-0.713837 0.145184 -1) (-0.717272 0.0719023 -1) (-0.718207 2.58853e-18 -1) (-0.717272 -0.0719023 -1) (-0.713837 -0.145184 -1) (-0.707186 -0.220035 -1) (-0.697112 -0.29612 -1) (-0.683346 -0.373116 -1) (-0.665579 -0.450663 -1) (-0.643494 -0.528357 -1) (-0.616785 -0.605754 -1) (-0.585178 -0.682374 -1) (-0.548456 -0.757715 -1) (-0.506468 -0.831261 -1) (-0.459136 -0.902487 -1) (-0.406457 -0.970865 -1) (-0.348505 -1.03587 -1) (-0.285427 -1.097 -1) (-0.217443 -1.15374 -1) (-0.144839 -1.20562 -1) (-0.067971 -1.25218 -1) (0.0127473 -1.29301 -1) (0.0968428 -1.32772 -1) (0.183791 -1.35598 -1) (0.273023 -1.37751 -1) (0.363931 -1.39209 -1) (0.455883 -1.39957 -1) (0.548224 -1.39986 -1) (0.640294 -1.39295 -1) (0.731435 -1.37889 -1) (0.821001 -1.35782 -1) (0.908368 -1.32992 -1) (0.992945 -1.29546 -1) (1.07418 -1.25475 -1) (1.15156 -1.20816 -1) (1.22465 -1.15612 -1) (1.29304 -1.09909 -1) (1.35641 -1.03757 -1) (1.41451 -0.972116 -1) (1.46716 -0.903301 -1) (1.51427 -0.831736 -1) (1.55585 -0.758054 -1) (1.59201 -0.682903 -1) (1.62295 -0.606924 -1) (1.64899 -0.530729 -1) (1.67048 -0.454871 -1) (1.68781 -0.37981 -1) (1.7014 -0.305899 -1) (1.71159 -0.233383 -1) (1.71868 -0.162419 -1) (1.72312 -0.0929298 -1) (1.72063 -0.0291795 -1) (1.74417 0.0940807 -1) (1.73967 0.164368 -1) (1.73249 0.236151 -1) (1.72218 0.309519 -1) (1.70844 0.384325 -1) (1.69092 0.460341 -1) (1.66921 0.53723 -1) (1.64291 0.614542 -1) (1.61164 0.69173 -1) (1.57508 0.768176 -1) (1.53301 0.843225 -1) (1.48529 0.916207 -1) (1.4319 0.986463 -1) (1.37293 1.05336 -1) (1.30853 1.11628 -1) (1.23897 1.17466 -1) (1.16458 1.22797 -1) (1.08575 1.27572 -1) (1.00294 1.31747 -1) (0.916692 1.35282 -1) (0.827558 1.38145 -1) (0.736152 1.40308 -1) (0.643118 1.41752 -1) (0.549123 1.42462 -1) (0.454846 1.42434 -1) (0.360971 1.41667 -1) (0.268171 1.40172 -1) (0.177102 1.37965 -1) (0.088391 1.35067 -1) (0.00262456 1.31508 -1) (-0.0796559 1.27323 -1) (-0.157963 1.22552 -1) (-0.23187 1.17239 -1) (-0.301013 1.1143 -1) (-0.3651 1.05177 -1) (-0.42391 0.98531 -1) (-0.477296 0.915471 -1) (-0.525193 0.842795 -1) (-0.567612 0.767834 -1) (-0.604647 0.691135 -1) (-0.636467 0.613232 -1) (-0.663309 0.534639 -1) (-0.685465 0.45584 -1) (-0.703262 0.377277 -1) (-0.717033 0.299347 -1) (-0.727099 0.222395 -1) (-0.733737 0.146729 -1) (-0.737163 0.0726657 -1) (-0.738094 2.37169e-18 -1) (-0.737163 -0.0726657 -1) (-0.733737 -0.146729 -1) (-0.727099 -0.222395 -1) (-0.717033 -0.299347 -1) (-0.703262 -0.377277 -1) (-0.685465 -0.45584 -1) (-0.663309 -0.534639 -1) (-0.636467 -0.613232 -1) (-0.604647 -0.691135 -1) (-0.567612 -0.767834 -1) (-0.525193 -0.842795 -1) (-0.477296 -0.915471 -1) (-0.42391 -0.98531 -1) (-0.3651 -1.05177 -1) (-0.301013 -1.1143 -1) (-0.23187 -1.17239 -1) (-0.157963 -1.22552 -1) (-0.0796559 -1.27323 -1) (0.00262456 -1.31508 -1) (0.088391 -1.35067 -1) (0.177102 -1.37965 -1) (0.268171 -1.40172 -1) (0.360971 -1.41667 -1) (0.454846 -1.42434 -1) (0.549123 -1.42462 -1) (0.643118 -1.41752 -1) (0.736152 -1.40308 -1) (0.827558 -1.38145 -1) (0.916692 -1.35282 -1) (1.00294 -1.31747 -1) (1.08575 -1.27572 -1) (1.16458 -1.22797 -1) (1.23897 -1.17466 -1) (1.30853 -1.11628 -1) (1.37293 -1.05336 -1) (1.4319 -0.986463 -1) (1.48529 -0.916207 -1) (1.53301 -0.843225 -1) (1.57508 -0.768176 -1) (1.61164 -0.69173 -1) (1.64291 -0.614542 -1) (1.66921 -0.53723 -1) (1.69092 -0.460341 -1) (1.70844 -0.384325 -1) (1.72218 -0.309519 -1) (1.73249 -0.236151 -1) (1.73967 -0.164368 -1) (1.74417 -0.0940807 -1) (1.74169 -0.0295567 -1) (1.76579 0.0952657 -1) (1.76123 0.166376 -1) (1.75396 0.239001 -1) (1.74351 0.313241 -1) (1.72961 0.388961 -1) (1.71188 0.465949 -1) (1.68992 0.543882 -1) (1.66334 0.622322 -1) (1.63172 0.700728 -1) (1.59474 0.778477 -1) (1.55215 0.854902 -1) (1.5038 0.929312 -1) (1.44966 1.00102 -1) (1.38978 1.06937 -1) (1.32434 1.13372 -1) (1.25358 1.19348 -1) (1.17785 1.24807 -1) (1.09754 1.297 -1) (1.01314 1.3398 -1) (0.925184 1.37606 -1) (0.834248 1.40543 -1) (0.740966 1.42763 -1) (0.646001 1.44246 -1) (0.550042 1.44976 -1) (0.453792 1.44948 -1) (0.357954 1.44163 -1) (0.263226 1.4263 -1) (0.170283 1.40367 -1) (0.0797732 1.37396 -1) (-0.00769818 1.33748 -1) (-0.0915729 1.29459 -1) (-0.171349 1.24571 -1) (-0.246587 1.1913 -1) (-0.316916 1.13185 -1) (-0.382037 1.06788 -1) (-0.441727 0.999962 -1) (-0.495843 0.928642 -1) (-0.544325 0.854498 -1) (-0.587198 0.778106 -1) (-0.624567 0.700032 -1) (-0.656621 0.620831 -1) (-0.683617 0.541026 -1) (-0.705865 0.461108 -1) (-0.72371 0.381515 -1) (-0.7375 0.302636 -1) (-0.747569 0.224801 -1) (-0.754204 0.148304 -1) (-0.757625 0.0734441 -1) (-0.758555 2.37169e-18 -1) (-0.757625 -0.0734441 -1) (-0.754204 -0.148304 -1) (-0.747569 -0.224801 -1) (-0.7375 -0.302636 -1) (-0.72371 -0.381515 -1) (-0.705865 -0.461108 -1) (-0.683617 -0.541026 -1) (-0.656621 -0.620831 -1) (-0.624567 -0.700032 -1) (-0.587198 -0.778106 -1) (-0.544325 -0.854498 -1) (-0.495843 -0.928642 -1) (-0.441727 -0.999962 -1) (-0.382037 -1.06788 -1) (-0.316916 -1.13185 -1) (-0.246587 -1.1913 -1) (-0.171349 -1.24571 -1) (-0.0915729 -1.29459 -1) (-0.00769818 -1.33748 -1) (0.0797732 -1.37396 -1) (0.170283 -1.40367 -1) (0.263226 -1.4263 -1) (0.357954 -1.44163 -1) (0.453792 -1.44948 -1) (0.550042 -1.44976 -1) (0.646001 -1.44246 -1) (0.740966 -1.42763 -1) (0.834248 -1.40543 -1) (0.925184 -1.37606 -1) (1.01314 -1.3398 -1) (1.09754 -1.297 -1) (1.17785 -1.24807 -1) (1.25358 -1.19348 -1) (1.32434 -1.13372 -1) (1.38978 -1.06937 -1) (1.44966 -1.00102 -1) (1.5038 -0.929312 -1) (1.55215 -0.854902 -1) (1.59474 -0.778477 -1) (1.63172 -0.700728 -1) (1.66334 -0.622322 -1) (1.68992 -0.543882 -1) (1.71188 -0.465949 -1) (1.72961 -0.388961 -1) (1.74351 -0.313241 -1) (1.75396 -0.239001 -1) (1.76123 -0.166376 -1) (1.76579 -0.0952657 -1) (1.76332 -0.0299451 -1) (1.788 0.0964863 -1) (1.78337 0.168443 -1) (1.77599 0.241934 -1) (1.76541 0.317069 -1) (1.75132 0.393724 -1) (1.73336 0.471701 -1) (1.71115 0.550692 -1) (1.68425 0.630271 -1) (1.65226 0.709904 -1) (1.61484 0.788966 -1) (1.5717 0.866776 -1) (1.5227 0.942627 -1) (1.46778 1.01581 -1) (1.40698 1.08563 -1) (1.34046 1.15142 -1) (1.26849 1.21256 -1) (1.19139 1.26846 -1) (1.10958 1.31859 -1) (1.02355 1.36246 -1) (0.933847 1.39964 -1) (0.841074 1.42977 -1) (0.745878 1.45255 -1) (0.648945 1.46777 -1) (0.550984 1.47527 -1) (0.45272 1.475 -1) (0.354882 1.46696 -1) (0.258186 1.45125 -1) (0.163332 1.42805 -1) (0.0709871 1.39759 -1) (-0.0182237 1.36021 -1) (-0.103725 1.31626 -1) (-0.185001 1.26619 -1) (-0.261599 1.21048 -1) (-0.33314 1.14965 -1) (-0.39932 1.08424 -1) (-0.459914 1.01483 -1) (-0.514783 0.942007 -1) (-0.563873 0.866377 -1) (-0.60722 0.788536 -1) (-0.644947 0.709073 -1) (-0.677257 0.628558 -1) (-0.704428 0.547528 -1) (-0.726789 0.466474 -1) (-0.7447 0.385836 -1) (-0.758527 0.30599 -1) (-0.768612 0.227256 -1) (-0.775252 0.149911 -1) (-0.778674 0.0742388 -1) (-0.779603 2.37169e-18 -1) (-0.778674 -0.0742388 -1) (-0.775252 -0.149911 -1) (-0.768612 -0.227256 -1) (-0.758527 -0.30599 -1) (-0.7447 -0.385836 -1) (-0.726789 -0.466474 -1) (-0.704428 -0.547528 -1) (-0.677257 -0.628558 -1) (-0.644947 -0.709073 -1) (-0.60722 -0.788536 -1) (-0.563873 -0.866377 -1) (-0.514783 -0.942007 -1) (-0.459914 -1.01483 -1) (-0.39932 -1.08424 -1) (-0.33314 -1.14965 -1) (-0.261599 -1.21048 -1) (-0.185001 -1.26619 -1) (-0.103725 -1.31626 -1) (-0.0182237 -1.36021 -1) (0.0709871 -1.39759 -1) (0.163332 -1.42805 -1) (0.258186 -1.45125 -1) (0.354882 -1.46696 -1) (0.45272 -1.475 -1) (0.550984 -1.47527 -1) (0.648945 -1.46777 -1) (0.745878 -1.45255 -1) (0.841074 -1.42977 -1) (0.933847 -1.39964 -1) (1.02355 -1.36246 -1) (1.10958 -1.31859 -1) (1.19139 -1.26846 -1) (1.26849 -1.21256 -1) (1.34046 -1.15142 -1) (1.40698 -1.08563 -1) (1.46778 -1.01581 -1) (1.5227 -0.942627 -1) (1.5717 -0.866776 -1) (1.61484 -0.788966 -1) (1.65226 -0.709904 -1) (1.68425 -0.630271 -1) (1.71115 -0.550692 -1) (1.73336 -0.471701 -1) (1.75132 -0.393724 -1) (1.76541 -0.317069 -1) (1.77599 -0.241934 -1) (1.78337 -0.168443 -1) (1.788 -0.0964863 -1) (1.78555 -0.030345 -1) (1.81081 0.0977441 -1) (1.80611 0.170573 -1) (1.79862 0.244955 -1) (1.78787 0.321009 -1) (1.77358 0.398621 -1) (1.75539 0.477605 -1) (1.73289 0.557669 -1) (1.70565 0.638399 -1) (1.67327 0.719268 -1) (1.63537 0.799651 -1) (1.59168 0.878857 -1) (1.542 0.956159 -1) (1.48627 1.03082 -1) (1.42452 1.10213 -1) (1.35691 1.16938 -1) (1.28369 1.23193 -1) (1.2052 1.28916 -1) (1.12186 1.3405 -1) (1.03416 1.38545 -1) (0.942684 1.42357 -1) (0.848037 1.45447 -1) (0.75089 1.47785 -1) (0.651949 1.49347 -1) (0.551947 1.50118 -1) (0.451631 1.50091 -1) (0.351751 1.49267 -1) (0.25305 1.47658 -1) (0.156247 1.45279 -1) (0.0620302 1.42158 -1) (-0.0289548 1.38327 -1) (-0.116116 1.33825 -1) (-0.198922 1.28698 -1) (-0.27691 1.22995 -1) (-0.34969 1.16771 -1) (-0.416954 1.10083 -1) (-0.478476 1.02991 -1) (-0.534121 0.955572 -1) (-0.583843 0.878438 -1) (-0.627688 0.799132 -1) (-0.665794 0.718264 -1) (-0.698385 0.636421 -1) (-0.725753 0.554149 -1) (-0.748248 0.471945 -1) (-0.766245 0.390244 -1) (-0.780124 0.309415 -1) (-0.790239 0.229764 -1) (-0.796895 0.151554 -1) (-0.800323 0.0750511 -1) (-0.801254 2.37169e-18 -1) (-0.800323 -0.0750511 -1) (-0.796895 -0.151554 -1) (-0.790239 -0.229764 -1) (-0.780124 -0.309415 -1) (-0.766245 -0.390244 -1) (-0.748248 -0.471945 -1) (-0.725753 -0.554149 -1) (-0.698385 -0.636421 -1) (-0.665794 -0.718264 -1) (-0.627688 -0.799132 -1) (-0.583843 -0.878438 -1) (-0.534121 -0.955572 -1) (-0.478476 -1.02991 -1) (-0.416954 -1.10083 -1) (-0.34969 -1.16771 -1) (-0.27691 -1.22995 -1) (-0.198922 -1.28698 -1) (-0.116116 -1.33825 -1) (-0.0289548 -1.38327 -1) (0.0620302 -1.42158 -1) (0.156247 -1.45279 -1) (0.25305 -1.47658 -1) (0.351751 -1.49267 -1) (0.451631 -1.50091 -1) (0.551947 -1.50118 -1) (0.651949 -1.49347 -1) (0.75089 -1.47785 -1) (0.848037 -1.45447 -1) (0.942684 -1.42357 -1) (1.03416 -1.38545 -1) (1.12186 -1.3405 -1) (1.2052 -1.28916 -1) (1.28369 -1.23193 -1) (1.35691 -1.16938 -1) (1.42452 -1.10213 -1) (1.48627 -1.03082 -1) (1.542 -0.956159 -1) (1.59168 -0.878857 -1) (1.63537 -0.799651 -1) (1.67327 -0.719268 -1) (1.70565 -0.638399 -1) (1.73289 -0.557669 -1) (1.75539 -0.477605 -1) (1.77358 -0.398621 -1) (1.78787 -0.321009 -1) (1.79862 -0.244955 -1) (1.80611 -0.170573 -1) (1.81081 -0.0977441 -1) (1.80838 -0.0307571 -1) (1.83423 0.0990406 -1) (1.82945 0.172768 -1) (1.82184 0.248068 -1) (1.81092 0.325065 -1) (1.79642 0.403656 -1) (1.77796 0.483668 -1) (1.75515 0.56482 -1) (1.72756 0.646715 -1) (1.69475 0.72883 -1) (1.65636 0.810543 -1) (1.61208 0.891154 -1) (1.5617 0.969918 -1) (1.50514 1.04608 -1) (1.44242 1.11889 -1) (1.37369 1.18762 -1) (1.2992 1.25159 -1) (1.21928 1.31016 -1) (1.13438 1.36273 -1) (1.04499 1.40879 -1) (0.951697 1.44786 -1) (0.85514 1.47954 -1) (0.756004 1.50352 -1) (0.655017 1.51955 -1) (0.552933 1.52747 -1) (0.450524 1.52721 -1) (0.348563 1.51878 -1) (0.247816 1.50229 -1) (0.149025 1.47791 -1) (0.0529002 1.44593 -1) (-0.0398944 1.40668 -1) (-0.128749 1.36057 -1) (-0.213117 1.30807 -1) (-0.292523 1.2497 -1) (-0.36657 1.18604 -1) (-0.434944 1.11767 -1) (-0.49742 1.04522 -1) (-0.553865 0.969346 -1) (-0.604241 0.89069 -1) (-0.648608 0.809903 -1) (-0.687118 0.727614 -1) (-0.720012 0.644426 -1) (-0.747602 0.560897 -1) (-0.770253 0.477527 -1) (-0.788357 0.394746 -1) (-0.802307 0.312916 -1) (-0.812465 0.23233 -1) (-0.819146 0.153235 -1) (-0.822587 0.0758823 -1) (-0.823521 1.72117e-18 -1) (-0.822587 -0.0758823 -1) (-0.819146 -0.153235 -1) (-0.812465 -0.23233 -1) (-0.802307 -0.312916 -1) (-0.788357 -0.394746 -1) (-0.770253 -0.477527 -1) (-0.747602 -0.560897 -1) (-0.720012 -0.644426 -1) (-0.687118 -0.727614 -1) (-0.648608 -0.809903 -1) (-0.604241 -0.89069 -1) (-0.553865 -0.969346 -1) (-0.49742 -1.04522 -1) (-0.434944 -1.11767 -1) (-0.36657 -1.18604 -1) (-0.292523 -1.2497 -1) (-0.213117 -1.30807 -1) (-0.128749 -1.36057 -1) (-0.0398944 -1.40668 -1) (0.0529002 -1.44593 -1) (0.149025 -1.47791 -1) (0.247816 -1.50229 -1) (0.348563 -1.51878 -1) (0.450524 -1.52721 -1) (0.552933 -1.52747 -1) (0.655017 -1.51955 -1) (0.756004 -1.50352 -1) (0.85514 -1.47954 -1) (0.951697 -1.44786 -1) (1.04499 -1.40879 -1) (1.13438 -1.36273 -1) (1.21928 -1.31016 -1) (1.2992 -1.25159 -1) (1.37369 -1.18762 -1) (1.44242 -1.11889 -1) (1.50514 -1.04608 -1) (1.5617 -0.969918 -1) (1.61208 -0.891154 -1) (1.65636 -0.810543 -1) (1.69475 -0.72883 -1) (1.72756 -0.646715 -1) (1.75515 -0.56482 -1) (1.77796 -0.483668 -1) (1.79642 -0.403656 -1) (1.81092 -0.325065 -1) (1.82184 -0.248068 -1) (1.82945 -0.172768 -1) (1.83423 -0.0990406 -1) (1.83182 -0.0311816 -1) (1.85828 0.100378 -1) (1.85341 0.175032 -1) (1.84566 0.251276 -1) (1.83457 0.329243 -1) (1.81983 0.408837 -1) (1.8011 0.489896 -1) (1.77795 0.572155 -1) (1.74997 0.655226 -1) (1.71672 0.7386 -1) (1.67781 0.821652 -1) (1.63291 0.903677 -1) (1.58181 0.983914 -1) (1.52439 1.06158 -1) (1.46068 1.13591 -1) (1.3908 1.20613 -1) (1.31501 1.27154 -1) (1.23364 1.33147 -1) (1.14714 1.3853 -1) (1.05603 1.43248 -1) (0.960889 1.47252 -1) (0.862384 1.505 -1) (0.761221 1.52959 -1) (0.658147 1.54603 -1) (0.553941 1.55417 -1) (0.449398 1.55391 -1) (0.345316 1.54528 -1) (0.242483 1.52839 -1) (0.141665 1.50342 -1) (0.0435945 1.47065 -1) (-0.0510456 1.43045 -1) (-0.141627 1.38322 -1) (-0.227589 1.32948 -1) (-0.308443 1.26975 -1) (-0.383785 1.20464 -1) (-0.453296 1.13476 -1) (-0.516751 1.06077 -1) (-0.57402 0.983336 -1) (-0.625075 0.903141 -1) (-0.669988 0.820855 -1) (-0.708927 0.73713 -1) (-0.742149 0.652583 -1) (-0.769984 0.567781 -1) (-0.792815 0.483227 -1) (-0.811048 0.399348 -1) (-0.825085 0.316498 -1) (-0.835303 0.234957 -1) (-0.84202 0.154956 -1) (-0.84548 0.076734 -1) (-0.84642 1.61275e-18 -1) (-0.84548 -0.076734 -1) (-0.84202 -0.154956 -1) (-0.835303 -0.234957 -1) (-0.825085 -0.316498 -1) (-0.811048 -0.399348 -1) (-0.792815 -0.483227 -1) (-0.769984 -0.567781 -1) (-0.742149 -0.652583 -1) (-0.708927 -0.73713 -1) (-0.669988 -0.820855 -1) (-0.625075 -0.903141 -1) (-0.57402 -0.983336 -1) (-0.516751 -1.06077 -1) (-0.453296 -1.13476 -1) (-0.383785 -1.20464 -1) (-0.308443 -1.26975 -1) (-0.227589 -1.32948 -1) (-0.141627 -1.38322 -1) (-0.0510456 -1.43045 -1) (0.0435945 -1.47065 -1) (0.141665 -1.50342 -1) (0.242483 -1.52839 -1) (0.345316 -1.54528 -1) (0.449398 -1.55391 -1) (0.553941 -1.55417 -1) (0.658147 -1.54603 -1) (0.761221 -1.52959 -1) (0.862384 -1.505 -1) (0.960889 -1.47252 -1) (1.05603 -1.43248 -1) (1.14714 -1.3853 -1) (1.23364 -1.33147 -1) (1.31501 -1.27154 -1) (1.3908 -1.20613 -1) (1.46068 -1.13591 -1) (1.52439 -1.06158 -1) (1.58181 -0.983914 -1) (1.63291 -0.903677 -1) (1.67781 -0.821652 -1) (1.71672 -0.7386 -1) (1.74997 -0.655226 -1) (1.77795 -0.572155 -1) (1.8011 -0.489896 -1) (1.81983 -0.408837 -1) (1.83457 -0.329243 -1) (1.84566 -0.251276 -1) (1.85341 -0.175032 -1) (1.85828 -0.100378 -1) (1.85588 -0.0316193 -1) (1.88296 0.101757 -1) (1.878 0.177367 -1) (1.87011 0.254584 -1) (1.85882 0.333547 -1) (1.84384 0.414169 -1) (1.8248 0.496298 -1) (1.8013 0.579681 -1) (1.77291 0.663945 -1) (1.73919 0.748587 -1) (1.69973 0.832988 -1) (1.65419 0.916436 -1) (1.60233 0.998155 -1) (1.54403 1.07734 -1) (1.4793 1.1532 -1) (1.40825 1.22493 -1) (1.33113 1.2918 -1) (1.24829 1.35311 -1) (1.16016 1.40821 -1) (1.06728 1.45653 -1) (0.970262 1.49755 -1) (0.869772 1.53084 -1) (0.766542 1.55605 -1) (0.661341 1.57292 -1) (0.554972 1.58127 -1) (0.448254 1.58102 -1) (0.342008 1.57219 -1) (0.237049 1.55489 -1) (0.134166 1.52931 -1) (0.0341106 1.49575 -1) (-0.0624113 1.45457 -1) (-0.154754 1.40622 -1) (-0.242342 1.35121 -1) (-0.324676 1.29011 -1) (-0.401341 1.22352 -1) (-0.472016 1.15211 -1) (-0.536475 1.07656 -1) (-0.594594 0.997549 -1) (-0.646353 0.915799 -1) (-0.691837 0.831998 -1) (-0.731229 0.746821 -1) (-0.764805 0.660899 -1) (-0.792911 0.574807 -1) (-0.815945 0.489052 -1) (-0.834328 0.404058 -1) (-0.848474 0.320167 -1) (-0.858765 0.237649 -1) (-0.86553 0.156722 -1) (-0.869015 0.0776077 -1) (-0.869963 5.28549e-19 -1) (-0.869015 -0.0776077 -1) (-0.86553 -0.156722 -1) (-0.858765 -0.237649 -1) (-0.848474 -0.320167 -1) (-0.834328 -0.404058 -1) (-0.815945 -0.489052 -1) (-0.792911 -0.574807 -1) (-0.764805 -0.660899 -1) (-0.731229 -0.746821 -1) (-0.691837 -0.831998 -1) (-0.646353 -0.915799 -1) (-0.594594 -0.997549 -1) (-0.536475 -1.07656 -1) (-0.472016 -1.15211 -1) (-0.401341 -1.22352 -1) (-0.324676 -1.29011 -1) (-0.242342 -1.35121 -1) (-0.154754 -1.40622 -1) (-0.0624113 -1.45457 -1) (0.0341106 -1.49575 -1) (0.134166 -1.52931 -1) (0.237049 -1.55489 -1) (0.342008 -1.57219 -1) (0.448254 -1.58102 -1) (0.554972 -1.58127 -1) (0.661341 -1.57292 -1) (0.766542 -1.55605 -1) (0.869772 -1.53084 -1) (0.970262 -1.49755 -1) (1.06728 -1.45653 -1) (1.16016 -1.40821 -1) (1.24829 -1.35311 -1) (1.33113 -1.2918 -1) (1.40825 -1.22493 -1) (1.4793 -1.1532 -1) (1.54403 -1.07734 -1) (1.60233 -0.998155 -1) (1.65419 -0.916436 -1) (1.69973 -0.832988 -1) (1.73919 -0.748587 -1) (1.77291 -0.663945 -1) (1.8013 -0.579681 -1) (1.8248 -0.496298 -1) (1.84384 -0.414169 -1) (1.85882 -0.333547 -1) (1.87011 -0.254584 -1) (1.878 -0.177367 -1) (1.88296 -0.101757 -1) (1.88058 -0.0320707 -1) (1.90828 0.103179 -1) (1.90322 0.179777 -1) (1.89518 0.257996 -1) (1.88369 0.337983 -1) (1.86844 0.419659 -1) (1.84908 0.502881 -1) (1.82521 0.587408 -1) (1.79639 0.672878 -1) (1.76216 0.758801 -1) (1.72212 0.844561 -1) (1.67591 0.929442 -1) (1.62328 1.01265 -1) (1.56407 1.09337 -1) (1.49829 1.17077 -1) (1.42605 1.24403 -1) (1.34757 1.31238 -1) (1.26321 1.37508 -1) (1.17343 1.43147 -1) (1.07876 1.48094 -1) (0.979818 1.52296 -1) (0.877306 1.55708 -1) (0.771969 1.58292 -1) (0.664601 1.60022 -1) (0.556026 1.60879 -1) (0.447091 1.60855 -1) (0.338641 1.59951 -1) (0.231514 1.58179 -1) (0.126524 1.5556 -1) (0.0244459 1.52122 -1) (-0.0739948 1.47906 -1) (-0.168134 1.42957 -1) (-0.257381 1.37327 -1) (-0.341225 1.31077 -1) (-0.419242 1.2427 -1) (-0.491109 1.16974 -1) (-0.556598 1.09259 -1) (-0.615593 1.012 -1) (-0.668081 0.928671 -1) (-0.714162 0.843341 -1) (-0.754035 0.756695 -1) (-0.78799 0.669382 -1) (-0.816393 0.581985 -1) (-0.839656 0.495011 -1) (-0.858211 0.40888 -1) (-0.872484 0.323928 -1) (-0.882866 0.240412 -1) (-0.88969 0.158535 -1) (-0.893207 0.078505 -1) (-0.894165 -2.61564e-18 -1) (-0.893207 -0.078505 -1) (-0.88969 -0.158535 -1) (-0.882866 -0.240412 -1) (-0.872484 -0.323928 -1) (-0.858211 -0.40888 -1) (-0.839656 -0.495011 -1) (-0.816393 -0.581985 -1) (-0.78799 -0.669382 -1) (-0.754035 -0.756695 -1) (-0.714162 -0.843341 -1) (-0.668081 -0.928671 -1) (-0.615593 -1.012 -1) (-0.556598 -1.09259 -1) (-0.491109 -1.16974 -1) (-0.419242 -1.2427 -1) (-0.341225 -1.31077 -1) (-0.257381 -1.37327 -1) (-0.168134 -1.42957 -1) (-0.0739948 -1.47906 -1) (0.0244459 -1.52122 -1) (0.126524 -1.5556 -1) (0.231514 -1.58179 -1) (0.338641 -1.59951 -1) (0.447091 -1.60855 -1) (0.556026 -1.60879 -1) (0.664601 -1.60022 -1) (0.771969 -1.58292 -1) (0.877306 -1.55708 -1) (0.979818 -1.52296 -1) (1.07876 -1.48094 -1) (1.17343 -1.43147 -1) (1.26321 -1.37508 -1) (1.34757 -1.31238 -1) (1.42605 -1.24403 -1) (1.49829 -1.17077 -1) (1.56407 -1.09337 -1) (1.62328 -1.01265 -1) (1.67591 -0.929442 -1) (1.72212 -0.844561 -1) (1.76216 -0.758801 -1) (1.79639 -0.672878 -1) (1.82521 -0.587408 -1) (1.84908 -0.502881 -1) (1.86844 -0.419659 -1) (1.88369 -0.337983 -1) (1.89518 -0.257996 -1) (1.90322 -0.179777 -1) (1.90828 -0.103179 -1) (1.90592 -0.0325362 -1) (1.93425 0.104648 -1) (1.9291 0.182263 -1) (1.92089 0.261515 -1) (1.90918 0.342556 -1) (1.89366 0.425314 -1) (1.87396 0.509652 -1) (1.84969 0.595343 -1) (1.8204 0.682037 -1) (1.78565 0.769254 -1) (1.74501 0.856383 -1) (1.6981 0.942705 -1) (1.64466 1.02742 -1) (1.58452 1.10968 -1) (1.51766 1.18864 -1) (1.44419 1.26344 -1) (1.36433 1.33328 -1) (1.27843 1.3974 -1) (1.18696 1.45509 -1) (1.09045 1.50574 -1) (0.989561 1.54877 -1) (0.884988 1.58372 -1) (0.777504 1.61021 -1) (0.667926 1.62795 -1) (0.557104 1.63674 -1) (0.445908 1.63651 -1) (0.335211 1.62726 -1) (0.225875 1.60911 -1) (0.118738 1.58229 -1) (0.0145977 1.54709 -1) (-0.0857992 1.50393 -1) (-0.181771 1.45327 -1) (-0.27271 1.39568 -1) (-0.358095 1.33175 -1) (-0.437495 1.26217 -1) (-0.51058 1.18764 -1) (-0.577128 1.10889 -1) (-0.637024 1.02668 -1) (-0.690269 0.941769 -1) (-0.736973 0.854891 -1) (-0.777353 0.766763 -1) (-0.811715 0.678042 -1) (-0.840441 0.589322 -1) (-0.863957 0.501111 -1) (-0.882708 0.413824 -1) (-0.897129 0.327789 -1) (-0.907617 0.24325 -1) (-0.914512 0.160399 -1) (-0.91807 0.0794277 -1) (-0.91904 -4.67562e-18 -1) (-0.91807 -0.0794277 -1) (-0.914512 -0.160399 -1) (-0.907617 -0.24325 -1) (-0.897129 -0.327789 -1) (-0.882708 -0.413824 -1) (-0.863957 -0.501111 -1) (-0.840441 -0.589322 -1) (-0.811715 -0.678042 -1) (-0.777353 -0.766763 -1) (-0.736973 -0.854891 -1) (-0.690269 -0.941769 -1) (-0.637024 -1.02668 -1) (-0.577128 -1.10889 -1) (-0.51058 -1.18764 -1) (-0.437495 -1.26217 -1) (-0.358095 -1.33175 -1) (-0.27271 -1.39568 -1) (-0.181771 -1.45327 -1) (-0.0857992 -1.50393 -1) (0.0145977 -1.54709 -1) (0.118738 -1.58229 -1) (0.225875 -1.60911 -1) (0.335211 -1.62726 -1) (0.445908 -1.63651 -1) (0.557104 -1.63674 -1) (0.667926 -1.62795 -1) (0.777504 -1.61021 -1) (0.884988 -1.58372 -1) (0.989561 -1.54877 -1) (1.09045 -1.50574 -1) (1.18696 -1.45509 -1) (1.27843 -1.3974 -1) (1.36433 -1.33328 -1) (1.44419 -1.26344 -1) (1.51766 -1.18864 -1) (1.58452 -1.10968 -1) (1.64466 -1.02742 -1) (1.6981 -0.942705 -1) (1.74501 -0.856383 -1) (1.78565 -0.769254 -1) (1.8204 -0.682037 -1) (1.84969 -0.595343 -1) (1.87396 -0.509652 -1) (1.89366 -0.425314 -1) (1.90918 -0.342556 -1) (1.92089 -0.261515 -1) (1.9291 -0.182263 -1) (1.93425 -0.104648 -1) (1.93193 -0.0330165 -1) (1.96096 0.106164 -1) (1.95569 0.184831 -1) (1.94732 0.26515 -1) (1.93538 0.347278 -1) (1.91956 0.431147 -1) (1.8995 0.51663 -1) (1.87481 0.603511 -1) (1.84504 0.691451 -1) (1.80973 0.779982 -1) (1.76845 0.868498 -1) (1.72082 0.956279 -1) (1.66654 1.04251 -1) (1.60544 1.12634 -1) (1.53748 1.20687 -1) (1.46275 1.28323 -1) (1.38147 1.35459 -1) (1.294 1.42014 -1) (1.20079 1.47917 -1) (1.10242 1.53101 -1) (0.999523 1.57507 -1) (0.892842 1.61088 -1) (0.783164 1.63802 -1) (0.671328 1.65621 -1) (0.558209 1.66523 -1) (0.444702 1.665 -1) (0.331708 1.65554 -1) (0.220113 1.63696 -1) (0.11078 1.6095 -1) (0.00453196 1.57346 -1) (-0.0978653 1.52927 -1) (-0.195711 1.47743 -1) (-0.288382 1.41851 -1) (-0.375344 1.35314 -1) (-0.45616 1.28203 -1) (-0.530497 1.2059 -1) (-0.598133 1.12552 -1) (-0.658961 1.04168 -1) (-0.71299 0.955146 -1) (-0.760345 0.866699 -1) (-0.801258 0.777064 -1) (-0.836054 0.686914 -1) (-0.865128 0.596849 -1) (-0.888922 0.507375 -1) (-0.90789 0.418907 -1) (-0.922477 0.331762 -1) (-0.933088 0.246174 -1) (-0.940066 0.16232 -1) (-0.94367 0.080379 -1) (-0.944655 -4.78404e-18 -1) (-0.94367 -0.080379 -1) (-0.940066 -0.16232 -1) (-0.933088 -0.246174 -1) (-0.922477 -0.331762 -1) (-0.90789 -0.418907 -1) (-0.888922 -0.507375 -1) (-0.865128 -0.596849 -1) (-0.836054 -0.686914 -1) (-0.801258 -0.777064 -1) (-0.760345 -0.866699 -1) (-0.71299 -0.955146 -1) (-0.658961 -1.04168 -1) (-0.598133 -1.12552 -1) (-0.530497 -1.2059 -1) (-0.45616 -1.28203 -1) (-0.375344 -1.35314 -1) (-0.288382 -1.41851 -1) (-0.195711 -1.47743 -1) (-0.0978653 -1.52927 -1) (0.00453196 -1.57346 -1) (0.11078 -1.6095 -1) (0.220113 -1.63696 -1) (0.331708 -1.65554 -1) (0.444702 -1.665 -1) (0.558209 -1.66523 -1) (0.671328 -1.65621 -1) (0.783164 -1.63802 -1) (0.892842 -1.61088 -1) (0.999523 -1.57507 -1) (1.10242 -1.53101 -1) (1.20079 -1.47917 -1) (1.294 -1.42014 -1) (1.38147 -1.35459 -1) (1.46275 -1.28323 -1) (1.53748 -1.20687 -1) (1.60544 -1.12634 -1) (1.66654 -1.04251 -1) (1.72082 -0.956279 -1) (1.76845 -0.868498 -1) (1.80973 -0.779982 -1) (1.84504 -0.691451 -1) (1.87481 -0.603511 -1) (1.8995 -0.51663 -1) (1.91956 -0.431147 -1) (1.93538 -0.347278 -1) (1.94732 -0.26515 -1) (1.95569 -0.184831 -1) (1.96096 -0.106164 -1) (1.95866 -0.0335112 -1) (1.98835 0.107729 -1) (1.98296 0.187483 -1) (1.97441 0.268901 -1) (1.96222 0.352147 -1) (1.94609 0.437156 -1) (1.92566 0.523812 -1) (1.90052 0.611905 -1) (1.87024 0.70111 -1) (1.83435 0.790968 -1) (1.79241 0.880883 -1) (1.74402 0.970133 -1) (1.68888 1.0579 -1) (1.62678 1.14329 -1) (1.55769 1.22541 -1) (1.48166 1.30335 -1) (1.39894 1.37624 -1) (1.30986 1.44325 -1) (1.21489 1.50362 -1) (1.11461 1.55667 -1) (1.00968 1.60178 -1) (0.90085 1.63846 -1) (0.788935 1.66627 -1) (0.674797 1.6849 -1) (0.559337 1.69416 -1) (0.443476 1.69394 -1) (0.32814 1.68426 -1) (0.214244 1.66525 -1) (0.102674 1.63713 -1) (-0.00572358 1.60024 -1) (-0.11016 1.55502 -1) (-0.209916 1.50197 -1) (-0.304353 1.4417 -1) (-0.392926 1.37487 -1) (-0.47519 1.3022 -1) (-0.550808 1.22445 -1) (-0.61956 1.14243 -1) (-0.681346 1.05693 -1) (-0.736188 0.968767 -1) (-0.784222 0.878734 -1) (-0.825698 0.787577 -1) (-0.860955 0.695981 -1) (-0.890406 0.604551 -1) (-0.914503 0.513797 -1) (-0.933714 0.424126 -1) (-0.948489 0.335846 -1) (-0.959239 0.249182 -1) (-0.966312 0.164298 -1) (-0.969971 0.0813591 -1) (-0.970973 -2.50722e-18 -1) (-0.969971 -0.0813591 -1) (-0.966312 -0.164298 -1) (-0.959239 -0.249182 -1) (-0.948489 -0.335846 -1) (-0.933714 -0.424126 -1) (-0.914503 -0.513797 -1) (-0.890406 -0.604551 -1) (-0.860955 -0.695981 -1) (-0.825698 -0.787577 -1) (-0.784222 -0.878734 -1) (-0.736188 -0.968767 -1) (-0.681346 -1.05693 -1) (-0.61956 -1.14243 -1) (-0.550808 -1.22445 -1) (-0.47519 -1.3022 -1) (-0.392926 -1.37487 -1) (-0.304353 -1.4417 -1) (-0.209916 -1.50197 -1) (-0.11016 -1.55502 -1) (-0.00572358 -1.60024 -1) (0.102674 -1.63713 -1) (0.214244 -1.66525 -1) (0.32814 -1.68426 -1) (0.443476 -1.69394 -1) (0.559337 -1.69416 -1) (0.674797 -1.6849 -1) (0.788935 -1.66627 -1) (0.90085 -1.63846 -1) (1.00968 -1.60178 -1) (1.11461 -1.55667 -1) (1.21489 -1.50362 -1) (1.30986 -1.44325 -1) (1.39894 -1.37624 -1) (1.48166 -1.30335 -1) (1.55769 -1.22541 -1) (1.62678 -1.14329 -1) (1.68888 -1.0579 -1) (1.74402 -0.970133 -1) (1.79241 -0.880883 -1) (1.83435 -0.790968 -1) (1.87024 -0.70111 -1) (1.90052 -0.611905 -1) (1.92566 -0.523812 -1) (1.94609 -0.437156 -1) (1.96222 -0.352147 -1) (1.97441 -0.268901 -1) (1.98296 -0.187483 -1) (1.98835 -0.107729 -1) (1.98608 -0.0340226 -1) (2.01643 0.109346 -1) (2.01092 0.190221 -1) (2.00218 0.272773 -1) (1.98973 0.357168 -1) (1.97327 0.44335 -1) (1.95244 0.531205 -1) (1.92684 0.620533 -1) (1.89602 0.711023 -1) (1.85952 0.802225 -1) (1.81688 0.89355 -1) (1.76771 0.984278 -1) (1.71167 1.07358 -1) (1.64855 1.16056 -1) (1.57829 1.24428 -1) (1.50095 1.32381 -1) (1.41675 1.39825 -1) (1.32602 1.46673 -1) (1.22926 1.52846 -1) (1.12703 1.58273 -1) (1.02003 1.62891 -1) (0.909013 1.66646 -1) (0.794819 1.69495 -1) (0.678336 1.71405 -1) (0.560491 1.72355 -1) (0.44223 1.72334 -1) (0.324508 1.71343 -1) (0.208266 1.69397 -1) (0.0944159 1.66519 -1) (-0.0161718 1.62744 -1) (-0.122687 1.58116 -1) (-0.22439 1.52689 -1) (-0.32063 1.46526 -1) (-0.410846 1.39694 -1) (-0.494588 1.3227 -1) (-0.571517 1.24331 -1) (-0.641415 1.15962 -1) (-0.704189 1.07245 -1) (-0.759871 0.982639 -1) (-0.808614 0.891005 -1) (-0.850681 0.79831 -1) (-0.886429 0.705251 -1) (-0.916285 0.61244 -1) (-0.940714 0.520384 -1) (-0.960192 0.429487 -1) (-0.975176 0.340048 -1) (-0.986083 0.25228 -1) (-0.993265 0.166336 -1) (-0.996986 0.0823698 -1) (-0.998008 2.03288e-19 -1) (-0.996986 -0.0823698 -1) (-0.993265 -0.166336 -1) (-0.986083 -0.25228 -1) (-0.975176 -0.340048 -1) (-0.960192 -0.429487 -1) (-0.940714 -0.520384 -1) (-0.916285 -0.61244 -1) (-0.886429 -0.705251 -1) (-0.850681 -0.79831 -1) (-0.808614 -0.891005 -1) (-0.759871 -0.982639 -1) (-0.704189 -1.07245 -1) (-0.641415 -1.15962 -1) (-0.571517 -1.24331 -1) (-0.494588 -1.3227 -1) (-0.410846 -1.39694 -1) (-0.32063 -1.46526 -1) (-0.22439 -1.52689 -1) (-0.122687 -1.58116 -1) (-0.0161718 -1.62744 -1) (0.0944159 -1.66519 -1) (0.208266 -1.69397 -1) (0.324508 -1.71343 -1) (0.44223 -1.72334 -1) (0.560491 -1.72355 -1) (0.678336 -1.71405 -1) (0.794819 -1.69495 -1) (0.909013 -1.66646 -1) (1.02003 -1.62891 -1) (1.12703 -1.58273 -1) (1.22926 -1.52846 -1) (1.32602 -1.46673 -1) (1.41675 -1.39825 -1) (1.50095 -1.32381 -1) (1.57829 -1.24428 -1) (1.64855 -1.16056 -1) (1.71167 -1.07358 -1) (1.76771 -0.984278 -1) (1.81688 -0.89355 -1) (1.85952 -0.802225 -1) (1.89602 -0.711023 -1) (1.92684 -0.620533 -1) (1.95244 -0.531205 -1) (1.97327 -0.44335 -1) (1.98973 -0.357168 -1) (2.00218 -0.272773 -1) (2.01092 -0.190221 -1) (2.01643 -0.109346 -1) (2.01419 -0.0345509 -1) (2.04521 0.111016 -1) (2.03957 0.193048 -1) (2.03064 0.276768 -1) (2.01792 0.362348 -1) (2.00111 0.449733 -1) (1.97987 0.538816 -1) (1.95377 0.629406 -1) (1.92239 0.7212 -1) (1.88524 0.813762 -1) (1.84189 0.90651 -1) (1.79189 0.998727 -1) (1.73493 1.08958 -1) (1.67076 1.17815 -1) (1.5993 1.26348 -1) (1.52061 1.34462 -1) (1.4349 1.42061 -1) (1.3425 1.49058 -1) (1.2439 1.5537 -1) (1.1397 1.60921 -1) (1.03058 1.65647 -1) (0.917333 1.69491 -1) (0.800818 1.72409 -1) (0.681946 1.74366 -1) (0.561669 1.75339 -1) (0.440964 1.75319 -1) (0.320811 1.74307 -1) (0.202178 1.72315 -1) (0.0860042 1.6937 -1) (-0.0268155 1.65506 -1) (-0.135449 1.60771 -1) (-0.239138 1.55221 -1) (-0.337215 1.48919 -1) (-0.429109 1.41937 -1) (-0.514362 1.34353 -1) (-0.592632 1.26249 -1) (-0.663706 1.17711 -1) (-0.727497 1.08825 -1) (-0.78405 0.996776 -1) (-0.83353 0.903524 -1) (-0.876219 0.809275 -1) (-0.912488 0.714737 -1) (-0.942778 0.620524 -1) (-0.967566 0.527146 -1) (-0.987336 0.434998 -1) (-1.00255 0.344374 -1) (-1.01363 0.255474 -1) (-1.02094 0.16844 -1) (-1.02473 0.0834131 -1) (-1.02577 2.09115e-17 -1) (-1.02473 -0.0834131 -1) (-1.02094 -0.16844 -1) (-1.01363 -0.255474 -1) (-1.00255 -0.344374 -1) (-0.987336 -0.434998 -1) (-0.967566 -0.527146 -1) (-0.942778 -0.620524 -1) (-0.912488 -0.714737 -1) (-0.876219 -0.809275 -1) (-0.83353 -0.903524 -1) (-0.78405 -0.996776 -1) (-0.727497 -1.08825 -1) (-0.663706 -1.17711 -1) (-0.592632 -1.26249 -1) (-0.514362 -1.34353 -1) (-0.429109 -1.41937 -1) (-0.337215 -1.48919 -1) (-0.239138 -1.55221 -1) (-0.135449 -1.60771 -1) (-0.0268155 -1.65506 -1) (0.0860042 -1.6937 -1) (0.202178 -1.72315 -1) (0.320811 -1.74307 -1) (0.440964 -1.75319 -1) (0.561669 -1.75339 -1) (0.681946 -1.74366 -1) (0.800818 -1.72409 -1) (0.917333 -1.69491 -1) (1.03058 -1.65647 -1) (1.1397 -1.60921 -1) (1.2439 -1.5537 -1) (1.3425 -1.49058 -1) (1.4349 -1.42061 -1) (1.52061 -1.34462 -1) (1.5993 -1.26348 -1) (1.67076 -1.17815 -1) (1.73493 -1.08958 -1) (1.79189 -0.998727 -1) (1.84189 -0.90651 -1) (1.88524 -0.813762 -1) (1.92239 -0.7212 -1) (1.95377 -0.629406 -1) (1.97987 -0.538816 -1) (2.00111 -0.449733 -1) (2.01792 -0.362348 -1) (2.03064 -0.276768 -1) (2.03957 -0.193048 -1) (2.04521 -0.111016 -1) (2.04301 -0.0350966 -1) (2.0747 0.112741 -1) (2.06893 0.195966 -1) (2.05979 0.280892 -1) (2.04678 0.367692 -1) (2.02962 0.456313 -1) (2.00793 0.546654 -1) (1.98133 0.638531 -1) (1.94935 0.731652 -1) (1.91154 0.825591 -1) (1.86743 0.919776 -1) (1.81658 1.01349 -1) (1.75866 1.1059 -1) (1.69341 1.19607 -1) (1.62072 1.28303 -1) (1.54065 1.36578 -1) (1.45339 1.44336 -1) (1.35929 1.51483 -1) (1.25882 1.57934 -1) (1.1526 1.63611 -1) (1.04133 1.68447 -1) (0.925812 1.72382 -1) (0.806932 1.75369 -1) (0.685626 1.77373 -1) (0.562873 1.78371 -1) (0.439677 1.78352 -1) (0.317046 1.77317 -1) (0.195977 1.75279 -1) (0.0774365 1.72265 -1) (-0.0376578 1.68312 -1) (-0.14845 1.63469 -1) (-0.254164 1.57792 -1) (-0.354114 1.5135 -1) (-0.44772 1.44216 -1) (-0.534516 1.3647 -1) (-0.61416 1.28199 -1) (-0.68644 1.1949 -1) (-0.751279 1.10434 -1) (-0.808731 1.01119 -1) (-0.85898 0.916301 -1) (-0.902321 0.820482 -1) (-0.939142 0.724447 -1) (-0.969896 0.628815 -1) (-0.995071 0.534092 -1) (-1.01516 0.44067 -1) (-1.03063 0.348831 -1) (-1.0419 0.258769 -1) (-1.04934 0.170612 -1) (-1.05321 0.0844908 -1) (-1.05428 4.95345e-17 -1) (-1.05321 -0.0844908 -1) (-1.04934 -0.170612 -1) (-1.0419 -0.258769 -1) (-1.03063 -0.348831 -1) (-1.01516 -0.44067 -1) (-0.995071 -0.534092 -1) (-0.969896 -0.628815 -1) (-0.939142 -0.724447 -1) (-0.902321 -0.820482 -1) (-0.85898 -0.916301 -1) (-0.808731 -1.01119 -1) (-0.751279 -1.10434 -1) (-0.68644 -1.1949 -1) (-0.61416 -1.28199 -1) (-0.534516 -1.3647 -1) (-0.44772 -1.44216 -1) (-0.354114 -1.5135 -1) (-0.254164 -1.57792 -1) (-0.14845 -1.63469 -1) (-0.0376578 -1.68312 -1) (0.0774365 -1.72265 -1) (0.195977 -1.75279 -1) (0.317046 -1.77317 -1) (0.439677 -1.78352 -1) (0.562873 -1.78371 -1) (0.685626 -1.77373 -1) (0.806932 -1.75369 -1) (0.925812 -1.72382 -1) (1.04133 -1.68447 -1) (1.1526 -1.63611 -1) (1.25882 -1.57934 -1) (1.35929 -1.51483 -1) (1.45339 -1.44336 -1) (1.54065 -1.36578 -1) (1.62072 -1.28303 -1) (1.69341 -1.19607 -1) (1.75866 -1.1059 -1) (1.81658 -1.01349 -1) (1.86743 -0.919776 -1) (1.91154 -0.825591 -1) (1.94935 -0.731652 -1) (1.98133 -0.638531 -1) (2.00793 -0.546654 -1) (2.02962 -0.456313 -1) (2.04678 -0.367692 -1) (2.05979 -0.280892 -1) (2.06893 -0.195966 -1) (2.0747 -0.112741 -1) (2.07253 -0.0356601 -1) (2.10492 0.114521 -1) (2.09901 0.198979 -1) (2.08965 0.285148 -1) (2.07635 0.373203 -1) (2.05881 0.463095 -1) (2.03666 0.554726 -1) (2.00952 0.647918 -1) (1.97692 0.742389 -1) (1.93841 0.837724 -1) (1.89352 0.93336 -1) (1.84179 1.02859 -1) (1.78287 1.12256 -1) (1.7165 1.21435 -1) (1.64256 1.30294 -1) (1.56108 1.38732 -1) (1.47224 1.46648 -1) (1.3764 1.53947 -1) (1.27403 1.6054 -1) (1.16575 1.66345 -1) (1.05228 1.71291 -1) (0.934453 1.75318 -1) (0.813164 1.78376 -1) (0.689378 1.80429 -1) (0.564103 1.81452 -1) (0.438369 1.81433 -1) (0.313214 1.80374 -1) (0.189664 1.7829 -1) (0.0687104 1.75207 -1) (-0.0487015 1.71163 -1) (-0.161694 1.66209 -1) (-0.269471 1.60405 -1) (-0.371332 1.53821 -1) (-0.466685 1.46532 -1) (-0.555058 1.38623 -1) (-0.636107 1.30182 -1) (-0.709624 1.21301 -1) (-0.775541 1.12073 -1) (-0.833926 1.02588 -1) (-0.884975 0.929348 -1) (-0.928999 0.831943 -1) (-0.966403 0.734394 -1) (-0.997651 0.637322 -1) (-1.02324 0.541231 -1) (-1.04367 0.446508 -1) (-1.05942 0.353427 -1) (-1.0709 0.26217 -1) (-1.07849 0.172855 -1) (-1.08244 0.0856047 -1) (-1.08354 6.44965e-17 -1) (-1.08244 -0.0856047 -1) (-1.07849 -0.172855 -1) (-1.0709 -0.26217 -1) (-1.05942 -0.353427 -1) (-1.04367 -0.446508 -1) (-1.02324 -0.541231 -1) (-0.997651 -0.637322 -1) (-0.966403 -0.734394 -1) (-0.928999 -0.831943 -1) (-0.884975 -0.929348 -1) (-0.833926 -1.02588 -1) (-0.775541 -1.12073 -1) (-0.709624 -1.21301 -1) (-0.636107 -1.30182 -1) (-0.555058 -1.38623 -1) (-0.466685 -1.46532 -1) (-0.371332 -1.53821 -1) (-0.269471 -1.60405 -1) (-0.161694 -1.66209 -1) (-0.0487015 -1.71163 -1) (0.0687104 -1.75207 -1) (0.189664 -1.7829 -1) (0.313214 -1.80374 -1) (0.438369 -1.81433 -1) (0.564103 -1.81452 -1) (0.689378 -1.80429 -1) (0.813164 -1.78376 -1) (0.934453 -1.75318 -1) (1.05228 -1.71291 -1) (1.16575 -1.66345 -1) (1.27403 -1.6054 -1) (1.3764 -1.53947 -1) (1.47224 -1.46648 -1) (1.56108 -1.38732 -1) (1.64256 -1.30294 -1) (1.7165 -1.21435 -1) (1.78287 -1.12256 -1) (1.84179 -1.02859 -1) (1.89352 -0.93336 -1) (1.93841 -0.837724 -1) (1.97692 -0.742389 -1) (2.00952 -0.647918 -1) (2.03666 -0.554726 -1) (2.05881 -0.463095 -1) (2.07635 -0.373203 -1) (2.08965 -0.285148 -1) (2.09901 -0.198979 -1) (2.10492 -0.114521 -1) (2.10279 -0.0362418 -1) (2.13587 0.116359 -1) (2.12981 0.20209 -1) (2.12022 0.28954 -1) (2.10661 0.378889 -1) (2.08868 0.470086 -1) (2.06606 0.563039 -1) (2.03835 0.657576 -1) (2.00512 0.753422 -1) (1.96588 0.850172 -1) (1.92016 0.947274 -1) (1.86752 1.04402 -1) (1.80758 1.13958 -1) (1.74006 1.23298 -1) (1.66483 1.32322 -1) (1.5819 1.40924 -1) (1.49145 1.49001 -1) (1.39383 1.56453 -1) (1.28952 1.63188 -1) (1.17914 1.69122 -1) (1.06344 1.74181 -1) (0.943258 1.78301 -1) (0.819515 1.81431 -1) (0.693204 1.83533 -1) (0.565358 1.84581 -1) (0.437039 1.84563 -1) (0.309313 1.83481 -1) (0.183234 1.81349 -1) (0.0598236 1.78195 -1) (-0.0599497 1.7406 -1) (-0.175185 1.68994 -1) (-0.285065 1.63061 -1) (-0.388874 1.56332 -1) (-0.48601 1.48887 -1) (-0.575993 1.40812 -1) (-0.65848 1.322 -1) (-0.733267 1.23146 -1) (-0.800294 1.13743 -1) (-0.859642 1.04087 -1) (-0.911523 0.942676 -1) (-0.956264 0.843669 -1) (-0.994282 0.744587 -1) (-1.02605 0.646055 -1) (-1.05209 0.548574 -1) (-1.07289 0.452523 -1) (-1.08893 0.358168 -1) (-1.10065 0.265682 -1) (-1.10839 0.175175 -1) (-1.11244 0.0867567 -1) (-1.11356 6.5147e-17 -1) (-1.11244 -0.0867567 -1) (-1.10839 -0.175175 -1) (-1.10065 -0.265682 -1) (-1.08893 -0.358168 -1) (-1.07289 -0.452523 -1) (-1.05209 -0.548574 -1) (-1.02605 -0.646055 -1) (-0.994282 -0.744587 -1) (-0.956264 -0.843669 -1) (-0.911523 -0.942676 -1) (-0.859642 -1.04087 -1) (-0.800294 -1.13743 -1) (-0.733267 -1.23146 -1) (-0.65848 -1.322 -1) (-0.575993 -1.40812 -1) (-0.48601 -1.48887 -1) (-0.388874 -1.56332 -1) (-0.285065 -1.63061 -1) (-0.175185 -1.68994 -1) (-0.0599497 -1.7406 -1) (0.0598236 -1.78195 -1) (0.183234 -1.81349 -1) (0.309313 -1.83481 -1) (0.437039 -1.84563 -1) (0.565358 -1.84581 -1) (0.693204 -1.83533 -1) (0.819515 -1.81431 -1) (0.943258 -1.78301 -1) (1.06344 -1.74181 -1) (1.17914 -1.69122 -1) (1.28952 -1.63188 -1) (1.39383 -1.56453 -1) (1.49145 -1.49001 -1) (1.5819 -1.40924 -1) (1.66483 -1.32322 -1) (1.74006 -1.23298 -1) (1.80758 -1.13958 -1) (1.86752 -1.04402 -1) (1.92016 -0.947274 -1) (1.96588 -0.850172 -1) (2.00512 -0.753422 -1) (2.03835 -0.657576 -1) (2.06606 -0.563039 -1) (2.08868 -0.470086 -1) (2.10661 -0.378889 -1) (2.12022 -0.28954 -1) (2.12981 -0.20209 -1) (2.13587 -0.116359 -1) (2.13377 -0.0368423 -1) (2.16757 0.118256 -1) (2.16135 0.2053 -1) (2.15153 0.294072 -1) (2.1376 0.384753 -1) (2.11925 0.477293 -1) (2.09614 0.571602 -1) (2.06785 0.667513 -1) (2.03394 0.764759 -1) (1.99394 0.862946 -1) (1.94738 0.961531 -1) (1.89379 1.05982 -1) (1.83279 1.15695 -1) (1.76409 1.25199 -1) (1.68753 1.34388 -1) (1.60312 1.43155 -1) (1.51103 1.51394 -1) (1.41159 1.59001 -1) (1.3053 1.6588 -1) (1.19279 1.71945 -1) (1.07481 1.77117 -1) (0.95223 1.81332 -1) (0.825988 1.84535 -1) (0.697103 1.86687 -1) (0.56664 1.8776 -1) (0.435687 1.87743 -1) (0.305342 1.86637 -1) (0.176688 1.84457 -1) (0.0507736 1.81232 -1) (-0.0714056 1.77003 -1) (-0.188925 1.71824 -1) (-0.300949 1.65759 -1) (-0.406745 1.58884 -1) (-0.505699 1.51281 -1) (-0.597328 1.43039 -1) (-0.681287 1.34254 -1) (-0.757376 1.25024 -1) (-0.825546 1.15446 -1) (-0.88589 1.05618 -1) (-0.938636 0.956298 -1) (-0.984126 0.855672 -1) (-1.02279 0.75504 -1) (-1.05512 0.655026 -1) (-1.08163 0.556129 -1) (-1.10282 0.458721 -1) (-1.11918 0.363061 -1) (-1.13114 0.269312 -1) (-1.13906 0.177573 -1) (-1.14321 0.0879487 -1) (-1.14437 8.35784e-17 -1) (-1.14321 -0.0879487 -1) (-1.13906 -0.177573 -1) (-1.13114 -0.269312 -1) (-1.11918 -0.363061 -1) (-1.10282 -0.458721 -1) (-1.08163 -0.556129 -1) (-1.05512 -0.655026 -1) (-1.02279 -0.75504 -1) (-0.984126 -0.855672 -1) (-0.938636 -0.956298 -1) (-0.88589 -1.05618 -1) (-0.825546 -1.15446 -1) (-0.757376 -1.25024 -1) (-0.681287 -1.34254 -1) (-0.597328 -1.43039 -1) (-0.505699 -1.51281 -1) (-0.406745 -1.58884 -1) (-0.300949 -1.65759 -1) (-0.188925 -1.71824 -1) (-0.0714056 -1.77003 -1) (0.0507736 -1.81232 -1) (0.176688 -1.84457 -1) (0.305342 -1.86637 -1) (0.435687 -1.87743 -1) (0.56664 -1.8776 -1) (0.697103 -1.86687 -1) (0.825988 -1.84535 -1) (0.95223 -1.81332 -1) (1.07481 -1.77117 -1) (1.19279 -1.71945 -1) (1.3053 -1.6588 -1) (1.41159 -1.59001 -1) (1.51103 -1.51394 -1) (1.60312 -1.43155 -1) (1.68753 -1.34388 -1) (1.76409 -1.25199 -1) (1.83279 -1.15695 -1) (1.89379 -1.05982 -1) (1.94738 -0.961531 -1) (1.99394 -0.862946 -1) (2.03394 -0.764759 -1) (2.06785 -0.667513 -1) (2.09614 -0.571602 -1) (2.11925 -0.477293 -1) (2.1376 -0.384753 -1) (2.15153 -0.294072 -1) (2.16135 -0.2053 -1) (2.16757 -0.118256 -1) (2.16551 -0.037462 -1) (2.20002 0.120214 -1) (2.19364 0.208612 -1) (2.18358 0.298748 -1) (2.16931 0.390801 -1) (2.15054 0.484722 -1) (2.12691 0.580422 -1) (2.09801 0.677739 -1) (2.0634 0.776413 -1) (2.02262 0.876059 -1) (1.97517 0.976144 -1) (1.9206 1.07598 -1) (1.85851 1.17471 -1) (1.78858 1.27139 -1) (1.71066 1.36494 -1) (1.62474 1.45428 -1) (1.53097 1.53829 -1) (1.42969 1.61592 -1) (1.32138 1.68618 -1) (1.2067 1.74814 -1) (1.0864 1.80102 -1) (0.96137 1.84412 -1) (0.832583 1.87689 -1) (0.701078 1.89891 -1) (0.567948 1.90991 -1) (0.434313 1.90975 -1) (0.301301 1.89845 -1) (0.170023 1.87616 -1) (0.0415579 1.84317 -1) (-0.0830722 1.79994 -1) (-0.202919 1.74699 -1) (-0.317128 1.68502 -1) (-0.424949 1.61479 -1) (-0.52576 1.53715 -1) (-0.61907 1.45305 -1) (-0.704534 1.36345 -1) (-0.78196 1.26938 -1) (-0.851306 1.17183 -1) (-0.91268 1.0718 -1) (-0.966324 0.970226 -1) (-1.0126 0.867964 -1) (-1.05194 0.765762 -1) (-1.08486 0.664245 -1) (-1.11187 0.563906 -1) (-1.13348 0.465113 -1) (-1.15019 0.368114 -1) (-1.16241 0.273064 -1) (-1.17052 0.180055 -1) (-1.17477 0.0891824 -1) (-1.17596 1.04287e-16 -1) (-1.17477 -0.0891824 -1) (-1.17052 -0.180055 -1) (-1.16241 -0.273064 -1) (-1.15019 -0.368114 -1) (-1.13348 -0.465113 -1) (-1.11187 -0.563906 -1) (-1.08486 -0.664245 -1) (-1.05194 -0.765762 -1) (-1.0126 -0.867964 -1) (-0.966324 -0.970226 -1) (-0.91268 -1.0718 -1) (-0.851306 -1.17183 -1) (-0.78196 -1.26938 -1) (-0.704534 -1.36345 -1) (-0.61907 -1.45305 -1) (-0.52576 -1.53715 -1) (-0.424949 -1.61479 -1) (-0.317128 -1.68502 -1) (-0.202919 -1.74699 -1) (-0.0830722 -1.79994 -1) (0.0415579 -1.84317 -1) (0.170023 -1.87616 -1) (0.301301 -1.89845 -1) (0.434313 -1.90975 -1) (0.567948 -1.90991 -1) (0.701078 -1.89891 -1) (0.832583 -1.87689 -1) (0.96137 -1.84412 -1) (1.0864 -1.80102 -1) (1.2067 -1.74814 -1) (1.32138 -1.68618 -1) (1.42969 -1.61592 -1) (1.53097 -1.53829 -1) (1.62474 -1.45428 -1) (1.71066 -1.36494 -1) (1.78858 -1.27139 -1) (1.85851 -1.17471 -1) (1.9206 -1.07598 -1) (1.97517 -0.976144 -1) (2.02262 -0.876059 -1) (2.0634 -0.776413 -1) (2.09801 -0.677739 -1) (2.12691 -0.580422 -1) (2.15054 -0.484722 -1) (2.16931 -0.390801 -1) (2.18358 -0.298748 -1) (2.19364 -0.208612 -1) (2.20002 -0.120214 -1) (2.19799 -0.0381015 -1) (2.23323 0.122233 -1) (2.22669 0.21203 -1) (2.21637 0.303572 -1) (2.20176 0.397037 -1) (2.18255 0.492378 -1) (2.15838 0.589506 -1) (2.12885 0.688262 -1) (2.09352 0.788393 -1) (2.05192 0.889521 -1) (2.00355 0.991125 -1) (1.94797 1.09252 -1) (1.88474 1.19287 -1) (1.81357 1.29119 -1) (1.73425 1.38641 -1) (1.64678 1.47742 -1) (1.55129 1.56308 -1) (1.44812 1.64229 -1) (1.33776 1.71401 -1) (1.22086 1.77731 -1) (1.0982 1.83135 -1) (0.970682 1.87542 -1) (0.839302 1.90894 -1) (0.705129 1.93148 -1) (0.569284 1.94274 -1) (0.432917 1.94259 -1) (0.297187 1.93104 -1) (0.163237 1.90825 -1) (0.0321741 1.87453 -1) (-0.0949527 1.83033 -1) (-0.217171 1.77622 -1) (-0.333606 1.7129 -1) (-0.443493 1.64117 -1) (-0.546198 1.56192 -1) (-0.641225 1.47611 -1) (-0.72823 1.38474 -1) (-0.807026 1.28888 -1) (-0.877583 1.18954 -1) (-0.940021 1.08776 -1) (-0.994598 0.984473 -1) (-1.04169 0.880558 -1) (-1.08174 0.776766 -1) (-1.11528 0.673722 -1) (-1.14282 0.571916 -1) (-1.16488 0.471706 -1) (-1.18195 0.373333 -1) (-1.19446 0.276943 -1) (-1.20276 0.182623 -1) (-1.20713 0.0904595 -1) (-1.20836 9.66973e-17 -1) (-1.20713 -0.0904595 -1) (-1.20276 -0.182623 -1) (-1.19446 -0.276943 -1) (-1.18195 -0.373333 -1) (-1.16488 -0.471706 -1) (-1.14282 -0.571916 -1) (-1.11528 -0.673722 -1) (-1.08174 -0.776766 -1) (-1.04169 -0.880558 -1) (-0.994598 -0.984473 -1) (-0.940021 -1.08776 -1) (-0.877583 -1.18954 -1) (-0.807026 -1.28888 -1) (-0.72823 -1.38474 -1) (-0.641225 -1.47611 -1) (-0.546198 -1.56192 -1) (-0.443493 -1.64117 -1) (-0.333606 -1.7129 -1) (-0.217171 -1.77622 -1) (-0.0949527 -1.83033 -1) (0.0321741 -1.87453 -1) (0.163237 -1.90825 -1) (0.297187 -1.93104 -1) (0.432917 -1.94259 -1) (0.569284 -1.94274 -1) (0.705129 -1.93148 -1) (0.839302 -1.90894 -1) (0.970682 -1.87542 -1) (1.0982 -1.83135 -1) (1.22086 -1.77731 -1) (1.33776 -1.71401 -1) (1.44812 -1.64229 -1) (1.55129 -1.56308 -1) (1.64678 -1.47742 -1) (1.73425 -1.38641 -1) (1.81357 -1.29119 -1) (1.88474 -1.19287 -1) (1.94797 -1.09252 -1) (2.00355 -0.991125 -1) (2.05192 -0.889521 -1) (2.09352 -0.788393 -1) (2.12885 -0.688262 -1) (2.15838 -0.589506 -1) (2.18255 -0.492378 -1) (2.20176 -0.397037 -1) (2.21637 -0.303572 -1) (2.22669 -0.21203 -1) (2.23323 -0.122233 -1) (2.23125 -0.0387612 -1) (2.26729 0.124318 -1) (2.26058 0.215559 -1) (2.24999 0.308551 -1) (2.23502 0.403473 -1) (2.21535 0.500276 -1) (2.19062 0.598871 -1) (2.16044 0.699103 -1) (2.12436 0.800723 -1) (2.0819 0.903363 -1) (2.03259 1.00651 -1) (1.97596 1.10949 -1) (1.91157 1.21146 -1) (1.8391 1.31145 -1) (1.75834 1.40836 -1) (1.66928 1.50106 -1) (1.57203 1.58837 -1) (1.46694 1.66917 -1) (1.35448 1.74239 -1) (1.23531 1.80704 -1) (1.11024 1.86226 -1) (0.980187 1.90732 -1) (0.846162 1.9416 -1) (0.709265 1.96466 -1) (0.570649 1.97618 -1) (0.431494 1.97604 -1) (0.292991 1.96424 -1) (0.156313 1.94095 -1) (0.0225986 1.90648 -1) (-0.107077 1.8613 -1) (-0.231717 1.80601 -1) (-0.350426 1.74132 -1) (-0.462423 1.66807 -1) (-0.567064 1.58717 -1) (-0.663848 1.49963 -1) (-0.752434 1.40648 -1) (-0.832638 1.3088 -1) (-0.904443 1.20766 -1) (-0.967981 1.10409 -1) (-1.02353 0.999077 -1) (-1.07147 0.893486 -1) (-1.11227 0.78808 -1) (-1.14645 0.683482 -1) (-1.17456 0.580175 -1) (-1.19709 0.478513 -1) (-1.21455 0.378728 -1) (-1.22735 0.280958 -1) (-1.23586 0.185281 -1) (-1.24036 0.0917823 -1) (-1.24163 8.76984e-17 -1) (-1.24036 -0.0917823 -1) (-1.23586 -0.185281 -1) (-1.22735 -0.280958 -1) (-1.21455 -0.378728 -1) (-1.19709 -0.478513 -1) (-1.17456 -0.580175 -1) (-1.14645 -0.683482 -1) (-1.11227 -0.78808 -1) (-1.07147 -0.893486 -1) (-1.02353 -0.999077 -1) (-0.967981 -1.10409 -1) (-0.904443 -1.20766 -1) (-0.832638 -1.3088 -1) (-0.752434 -1.40648 -1) (-0.663848 -1.49963 -1) (-0.567064 -1.58717 -1) (-0.462423 -1.66807 -1) (-0.350426 -1.74132 -1) (-0.231717 -1.80601 -1) (-0.107077 -1.8613 -1) (0.0225986 -1.90648 -1) (0.156313 -1.94095 -1) (0.292991 -1.96424 -1) (0.431494 -1.97604 -1) (0.570649 -1.97618 -1) (0.709265 -1.96466 -1) (0.846162 -1.9416 -1) (0.980187 -1.90732 -1) (1.11024 -1.86226 -1) (1.23531 -1.80704 -1) (1.35448 -1.74239 -1) (1.46694 -1.66917 -1) (1.57203 -1.58837 -1) (1.66928 -1.50106 -1) (1.75834 -1.40836 -1) (1.8391 -1.31145 -1) (1.91157 -1.21146 -1) (1.97596 -1.10949 -1) (2.03259 -1.00651 -1) (2.0819 -0.903363 -1) (2.12436 -0.800723 -1) (2.16044 -0.699103 -1) (2.19062 -0.598871 -1) (2.21535 -0.500276 -1) (2.23502 -0.403473 -1) (2.24999 -0.308551 -1) (2.26058 -0.215559 -1) (2.26729 -0.124318 -1) (2.26535 -0.039441 -1) (2.30213 0.126468 -1) (2.29525 0.219199 -1) (2.28439 0.313685 -1) (2.26904 0.410107 -1) (2.24889 0.508414 -1) (2.22359 0.608516 -1) (2.19273 0.710259 -1) (2.15587 0.8134 -1) (2.11254 0.917578 -1) (2.06225 1.02229 -1) (2.00452 1.12687 -1) (1.93893 1.23048 -1) (1.86513 1.33214 -1) (1.7829 1.43075 -1) (1.69221 1.52514 -1) (1.59317 1.61412 -1) (1.4861 1.69653 -1) (1.3715 1.77125 -1) (1.25004 1.83727 -1) (1.12251 1.89369 -1) (0.989868 1.93974 -1) (0.85315 1.97479 -1) (0.713481 1.99838 -1) (0.572042 2.01018 -1) (0.430048 2.01004 -1) (0.28872 1.99799 -1) (0.149265 1.97418 -1) (0.0128493 1.93895 -1) (-0.119422 1.89278 -1) (-0.246529 1.83629 -1) (-0.367555 1.77022 -1) (-0.481704 1.69542 -1) (-0.58832 1.61287 -1) (-0.686901 1.52357 -1) (-0.777103 1.42862 -1) (-0.858752 1.32911 -1) (-0.93184 1.22615 -1) (-0.996515 1.12079 -1) (-1.05307 1.01402 -1) (-1.10189 0.906741 -1) (-1.14347 0.799699 -1) (-1.17834 0.693521 -1) (-1.20703 0.588686 -1) (-1.23007 0.485538 -1) (-1.24793 0.384302 -1) (-1.26105 0.28511 -1) (-1.26978 0.188033 -1) (-1.27441 0.0931519 -1) (-1.27572 7.84827e-17 -1) (-1.27441 -0.0931519 -1) (-1.26978 -0.188033 -1) (-1.26105 -0.28511 -1) (-1.24793 -0.384302 -1) (-1.23007 -0.485538 -1) (-1.20703 -0.588686 -1) (-1.17834 -0.693521 -1) (-1.14347 -0.799699 -1) (-1.10189 -0.906741 -1) (-1.05307 -1.01402 -1) (-0.996515 -1.12079 -1) (-0.93184 -1.22615 -1) (-0.858752 -1.32911 -1) (-0.777103 -1.42862 -1) (-0.686901 -1.52357 -1) (-0.58832 -1.61287 -1) (-0.481704 -1.69542 -1) (-0.367555 -1.77022 -1) (-0.246529 -1.83629 -1) (-0.119422 -1.89278 -1) (0.0128493 -1.93895 -1) (0.149265 -1.97418 -1) (0.28872 -1.99799 -1) (0.430048 -2.01004 -1) (0.572042 -2.01018 -1) (0.713481 -1.99838 -1) (0.85315 -1.97479 -1) (0.989868 -1.93974 -1) (1.12251 -1.89369 -1) (1.25004 -1.83727 -1) (1.3715 -1.77125 -1) (1.4861 -1.69653 -1) (1.59317 -1.61412 -1) (1.69221 -1.52514 -1) (1.7829 -1.43075 -1) (1.86513 -1.33214 -1) (1.93893 -1.23048 -1) (2.00452 -1.12687 -1) (2.06225 -1.02229 -1) (2.11254 -0.917578 -1) (2.15587 -0.8134 -1) (2.19273 -0.710259 -1) (2.22359 -0.608516 -1) (2.24889 -0.508414 -1) (2.26904 -0.410107 -1) (2.28439 -0.313685 -1) (2.29525 -0.219199 -1) (2.30213 -0.126468 -1) (2.30024 -0.0401429 -1) (2.33778 0.128687 -1) (2.33071 0.222952 -1) (2.31957 0.318979 -1) (2.30383 0.416946 -1) (2.2832 0.516798 -1) (2.2573 0.618447 -1) (2.22574 0.721739 -1) (2.18807 0.826434 -1) (2.14383 0.932178 -1) (2.09252 1.03848 -1) (2.03367 1.14467 -1) (1.96684 1.24993 -1) (1.89167 1.35327 -1) (1.80793 1.45359 -1) (1.71557 1.54969 -1) (1.6147 1.64035 -1) (1.50563 1.72438 -1) (1.38885 1.80061 -1) (1.26503 1.86801 -1) (1.13501 1.92564 -1) (0.999729 1.9727 -1) (0.860268 2.00853 -1) (0.717775 2.03265 -1) (0.573463 2.04472 -1) (0.428578 2.0446 -1) (0.284374 2.03228 -1) (0.14209 2.00796 -1) (0.00292363 1.97196 -1) (-0.131992 1.92478 -1) (-0.261612 1.86707 -1) (-0.384999 1.7996 -1) (-0.501341 1.72325 -1) (-0.609974 1.63902 -1) (-0.710388 1.54795 -1) (-0.802245 1.45118 -1) (-0.885376 1.34983 -1) (-0.959785 1.24503 -1) (-1.02563 1.13786 -1) (-1.08322 1.02933 -1) (-1.13297 0.920335 -1) (-1.17537 0.811636 -1) (-1.21096 0.703853 -1) (-1.24026 0.597459 -1) (-1.26382 0.492789 -1) (-1.28211 0.390063 -1) (-1.29557 0.289404 -1) (-1.30453 0.190881 -1) (-1.30929 0.0945701 -1) (-1.31065 4.57398e-17 -1) (-1.30929 -0.0945701 -1) (-1.30453 -0.190881 -1) (-1.29557 -0.289404 -1) (-1.28211 -0.390063 -1) (-1.26382 -0.492789 -1) (-1.24026 -0.597459 -1) (-1.21096 -0.703853 -1) (-1.17537 -0.811636 -1) (-1.13297 -0.920335 -1) (-1.08322 -1.02933 -1) (-1.02563 -1.13786 -1) (-0.959785 -1.24503 -1) (-0.885376 -1.34983 -1) (-0.802245 -1.45118 -1) (-0.710388 -1.54795 -1) (-0.609974 -1.63902 -1) (-0.501341 -1.72325 -1) (-0.384999 -1.7996 -1) (-0.261612 -1.86707 -1) (-0.131992 -1.92478 -1) (0.00292363 -1.97196 -1) (0.14209 -2.00796 -1) (0.284374 -2.03228 -1) (0.428578 -2.0446 -1) (0.573463 -2.04472 -1) (0.717775 -2.03265 -1) (0.860268 -2.00853 -1) (0.999729 -1.9727 -1) (1.13501 -1.92564 -1) (1.26503 -1.86801 -1) (1.38885 -1.80061 -1) (1.50563 -1.72438 -1) (1.6147 -1.64035 -1) (1.71557 -1.54969 -1) (1.80793 -1.45359 -1) (1.89167 -1.35327 -1) (1.96684 -1.24993 -1) (2.03367 -1.14467 -1) (2.09252 -1.03848 -1) (2.14383 -0.932178 -1) (2.18807 -0.826434 -1) (2.22574 -0.721739 -1) (2.2573 -0.618447 -1) (2.2832 -0.516798 -1) (2.30383 -0.416946 -1) (2.31957 -0.318979 -1) (2.33071 -0.222952 -1) (2.33778 -0.128687 -1) (2.33594 -0.040867 -1) (2.37424 0.130974 -1) (2.36698 0.226821 -1) (2.35554 0.324435 -1) (2.33941 0.423992 -1) (2.31827 0.525435 -1) (2.29176 0.628673 -1) (2.25947 0.733551 -1) (2.22097 0.839834 -1) (2.17579 0.947174 -1) (2.12343 1.05508 -1) (2.06342 1.16291 -1) (1.9953 1.26984 -1) (1.91873 1.37487 -1) (1.83344 1.47691 -1) (1.73937 1.57472 -1) (1.63663 1.66707 -1) (1.52551 1.75272 -1) (1.40651 1.83049 -1) (1.2803 1.89928 -1) (1.14773 1.95813 -1) (1.00977 2.00621 -1) (0.867517 2.04283 -1) (0.72215 2.06749 -1) (0.574912 2.07984 -1) (0.427083 2.07973 -1) (0.279951 2.06715 -1) (0.134786 2.04229 -1) (-0.00718109 2.00551 -1) (-0.14479 1.95732 -1) (-0.27697 1.89838 -1) (-0.402762 1.82949 -1) (-0.52134 1.75156 -1) (-0.63203 1.66563 -1) (-0.734318 1.57279 -1) (-0.827868 1.47417 -1) (-0.912519 1.37096 -1) (-0.988287 1.26431 -1) (-1.05535 1.15532 -1) (-1.11402 1.04501 -1) (-1.16473 0.934283 -1) (-1.20797 0.823904 -1) (-1.2443 0.714488 -1) (-1.27426 0.606502 -1) (-1.29837 0.500274 -1) (-1.31711 0.396016 -1) (-1.33091 0.293846 -1) (-1.34012 0.193829 -1) (-1.34503 0.0960383 -1) (-1.34643 1.97189e-17 -1) (-1.34503 -0.0960383 -1) (-1.34012 -0.193829 -1) (-1.33091 -0.293846 -1) (-1.31711 -0.396016 -1) (-1.29837 -0.500274 -1) (-1.27426 -0.606502 -1) (-1.2443 -0.714488 -1) (-1.20797 -0.823904 -1) (-1.16473 -0.934283 -1) (-1.11402 -1.04501 -1) (-1.05535 -1.15532 -1) (-0.988287 -1.26431 -1) (-0.912519 -1.37096 -1) (-0.827868 -1.47417 -1) (-0.734318 -1.57279 -1) (-0.63203 -1.66563 -1) (-0.52134 -1.75156 -1) (-0.402762 -1.82949 -1) (-0.27697 -1.89838 -1) (-0.14479 -1.95732 -1) (-0.00718109 -2.00551 -1) (0.134786 -2.04229 -1) (0.279951 -2.06715 -1) (0.427083 -2.07973 -1) (0.574912 -2.07984 -1) (0.72215 -2.06749 -1) (0.867517 -2.04283 -1) (1.00977 -2.00621 -1) (1.14773 -1.95813 -1) (1.2803 -1.89928 -1) (1.40651 -1.83049 -1) (1.52551 -1.75272 -1) (1.63663 -1.66707 -1) (1.73937 -1.57472 -1) (1.83344 -1.47691 -1) (1.91873 -1.37487 -1) (1.9953 -1.26984 -1) (2.06342 -1.16291 -1) (2.12343 -1.05508 -1) (2.17579 -0.947174 -1) (2.22097 -0.839834 -1) (2.25947 -0.733551 -1) (2.29176 -0.628673 -1) (2.31827 -0.525435 -1) (2.33941 -0.423992 -1) (2.35554 -0.324435 -1) (2.36698 -0.226821 -1) (2.37424 -0.130974 -1) (2.37245 -0.0416137 -1) (2.41152 0.133331 -1) (2.40407 0.230809 -1) (2.39233 0.330058 -1) (2.37579 0.431252 -1) (2.35412 0.53433 -1) (2.32697 0.639199 -1) (2.29394 0.745705 -1) (2.25458 0.853612 -1) (2.20842 0.962578 -1) (2.15498 1.07212 -1) (2.09377 1.1816 -1) (2.02434 1.29021 -1) (1.94631 1.39695 -1) (1.85944 1.50071 -1) (1.76363 1.60025 -1) (1.65897 1.6943 -1) (1.54575 1.78159 -1) (1.42449 1.86089 -1) (1.29585 1.93109 -1) (1.16068 1.99117 -1) (1.02 2.04028 -1) (0.8749 2.0777 -1) (0.726606 2.10291 -1) (0.57639 2.11554 -1) (0.425564 2.11544 -1) (0.275449 2.10259 -1) (0.127352 2.0772 -1) (-0.0174675 2.03963 -1) (-0.157819 1.99041 -1) (-0.292606 1.93022 -1) (-0.420849 1.85989 -1) (-0.541708 1.78037 -1) (-0.654496 1.69273 -1) (-0.758699 1.59808 -1) (-0.853981 1.49762 -1) (-0.940191 1.39254 -1) (-1.01736 1.28402 -1) (-1.08567 1.17319 -1) (-1.14545 1.06108 -1) (-1.19716 0.948597 -1) (-1.24129 0.836514 -1) (-1.2784 0.725437 -1) (-1.30904 0.615825 -1) (-1.33372 0.508001 -1) (-1.35293 0.402167 -1) (-1.36709 0.298439 -1) (-1.37657 0.196878 -1) (-1.38162 0.0975579 -1) (-1.38307 1.66832e-17 -1) (-1.38162 -0.0975579 -1) (-1.37657 -0.196878 -1) (-1.36709 -0.298439 -1) (-1.35293 -0.402167 -1) (-1.33372 -0.508001 -1) (-1.30904 -0.615825 -1) (-1.2784 -0.725437 -1) (-1.24129 -0.836514 -1) (-1.19716 -0.948597 -1) (-1.14545 -1.06108 -1) (-1.08567 -1.17319 -1) (-1.01736 -1.28402 -1) (-0.940191 -1.39254 -1) (-0.853981 -1.49762 -1) (-0.758699 -1.59808 -1) (-0.654496 -1.69273 -1) (-0.541708 -1.78037 -1) (-0.420849 -1.85989 -1) (-0.292606 -1.93022 -1) (-0.157819 -1.99041 -1) (-0.0174675 -2.03963 -1) (0.127352 -2.0772 -1) (0.275449 -2.10259 -1) (0.425564 -2.11544 -1) (0.57639 -2.11554 -1) (0.726606 -2.10291 -1) (0.8749 -2.0777 -1) (1.02 -2.04028 -1) (1.16068 -1.99117 -1) (1.29585 -1.93109 -1) (1.42449 -1.86089 -1) (1.54575 -1.78159 -1) (1.65897 -1.6943 -1) (1.76363 -1.60025 -1) (1.85944 -1.50071 -1) (1.94631 -1.39695 -1) (2.02434 -1.29021 -1) (2.09377 -1.1816 -1) (2.15498 -1.07212 -1) (2.20842 -0.962578 -1) (2.25458 -0.853612 -1) (2.29394 -0.745705 -1) (2.32697 -0.639199 -1) (2.35412 -0.53433 -1) (2.37579 -0.431252 -1) (2.39233 -0.330058 -1) (2.40407 -0.230809 -1) (2.41152 -0.133331 -1) (2.40978 -0.0423834 -1) (2.44964 0.135759 -1) (2.44198 0.234918 -1) (2.42993 0.33585 -1) (2.41297 0.438729 -1) (2.39076 0.54349 -1) (2.36296 0.650034 -1) (2.32915 0.758208 -1) (2.2889 0.867777 -1) (2.24175 0.978401 -1) (2.18719 1.08961 -1) (2.12474 1.20077 -1) (2.05396 1.31107 -1) (1.97444 1.41953 -1) (1.88594 1.52502 -1) (1.78833 1.62629 -1) (1.68172 1.72205 -1) (1.56637 1.81098 -1) (1.4428 1.89184 -1) (1.31168 1.96345 -1) (1.17387 2.02478 -1) (1.03041 2.07493 -1) (0.882418 2.11316 -1) (0.731145 2.13892 -1) (0.577897 2.15184 -1) (0.424019 2.15174 -1) (0.270869 2.13863 -1) (0.119786 2.11269 -1) (-0.0279384 2.07432 -1) (-0.171083 2.02405 -1) (-0.308525 1.9626 -1) (-0.439266 1.89082 -1) (-0.562449 1.8097 -1) (-0.677378 1.72032 -1) (-0.783536 1.62386 -1) (-0.880592 1.52152 -1) (-0.968401 1.41455 -1) (-1.047 1.30415 -1) (-1.1166 1.19147 -1) (-1.17755 1.07754 -1) (-1.23028 0.963292 -1) (-1.27534 0.849479 -1) (-1.31326 0.73671 -1) (-1.3446 0.625438 -1) (-1.36989 0.515976 -1) (-1.38959 0.408523 -1) (-1.40413 0.303189 -1) (-1.41387 0.200033 -1) (-1.41908 0.0991302 -1) (-1.42058 2.11284e-17 -1) (-1.41908 -0.0991302 -1) (-1.41387 -0.200033 -1) (-1.40413 -0.303189 -1) (-1.38959 -0.408523 -1) (-1.36989 -0.515976 -1) (-1.3446 -0.625438 -1) (-1.31326 -0.73671 -1) (-1.27534 -0.849479 -1) (-1.23028 -0.963292 -1) (-1.17755 -1.07754 -1) (-1.1166 -1.19147 -1) (-1.047 -1.30415 -1) (-0.968401 -1.41455 -1) (-0.880592 -1.52152 -1) (-0.783536 -1.62386 -1) (-0.677378 -1.72032 -1) (-0.562449 -1.8097 -1) (-0.439266 -1.89082 -1) (-0.308525 -1.9626 -1) (-0.171083 -2.02405 -1) (-0.0279384 -2.07432 -1) (0.119786 -2.11269 -1) (0.270869 -2.13863 -1) (0.424019 -2.15174 -1) (0.577897 -2.15184 -1) (0.731145 -2.13892 -1) (0.882418 -2.11316 -1) (1.03041 -2.07493 -1) (1.17387 -2.02478 -1) (1.31168 -1.96345 -1) (1.4428 -1.89184 -1) (1.56637 -1.81098 -1) (1.68172 -1.72205 -1) (1.78833 -1.62629 -1) (1.88594 -1.52502 -1) (1.97444 -1.41953 -1) (2.05396 -1.31107 -1) (2.12474 -1.20077 -1) (2.18719 -1.08961 -1) (2.24175 -0.978401 -1) (2.2889 -0.867777 -1) (2.32915 -0.758208 -1) (2.36296 -0.650034 -1) (2.39076 -0.54349 -1) (2.41297 -0.438729 -1) (2.42993 -0.33585 -1) (2.44198 -0.234918 -1) (2.44964 -0.135759 -1) (2.44795 -0.0431765 -1) (2.4886 0.138261 -1) (2.48074 0.239149 -1) (2.46837 0.341816 -1) (2.45097 0.446429 -1) (2.42821 0.552918 -1) (2.39973 0.661184 -1) (2.36513 0.771069 -1) (2.32396 0.882338 -1) (2.27577 0.994655 -1) (2.22006 1.10755 -1) (2.15634 1.22041 -1) (2.08416 1.33243 -1) (2.00311 1.44262 -1) (1.91293 1.54985 -1) (1.8135 1.65286 -1) (1.70489 1.75033 -1) (1.58737 1.84092 -1) (1.46144 1.92334 -1) (1.32779 1.99638 -1) (1.1873 2.05897 -1) (1.04101 2.11016 -1) (0.890072 2.14921 -1) (0.735767 2.17553 -1) (0.579433 2.18874 -1) (0.422449 2.18865 -1) (0.266208 2.17526 -1) (0.112085 2.14878 -1) (-0.0385964 2.10959 -1) (-0.184584 2.05827 -1) (-0.324732 1.99554 -1) (-0.458017 1.92229 -1) (-0.583569 1.83954 -1) (-0.700683 1.74842 -1) (-0.808839 1.65013 -1) (-0.907709 1.54591 -1) (-0.997159 1.43704 -1) (-1.07724 1.32474 -1) (-1.14817 1.21019 -1) (-1.21031 1.09443 -1) (-1.26412 0.978381 -1) (-1.31013 0.862812 -1) (-1.3489 0.74832 -1) (-1.38097 0.63535 -1) (-1.40688 0.524209 -1) (-1.42709 0.415089 -1) (-1.44203 0.308099 -1) (-1.45204 0.203296 -1) (-1.45741 0.100757 -1) (-1.45896 2.42726e-17 -1) (-1.45741 -0.100757 -1) (-1.45204 -0.203296 -1) (-1.44203 -0.308099 -1) (-1.42709 -0.415089 -1) (-1.40688 -0.524209 -1) (-1.38097 -0.63535 -1) (-1.3489 -0.74832 -1) (-1.31013 -0.862812 -1) (-1.26412 -0.978381 -1) (-1.21031 -1.09443 -1) (-1.14817 -1.21019 -1) (-1.07724 -1.32474 -1) (-0.997159 -1.43704 -1) (-0.907709 -1.54591 -1) (-0.808839 -1.65013 -1) (-0.700683 -1.74842 -1) (-0.583569 -1.83954 -1) (-0.458017 -1.92229 -1) (-0.324732 -1.99554 -1) (-0.184584 -2.05827 -1) (-0.0385964 -2.10959 -1) (0.112085 -2.14878 -1) (0.266208 -2.17526 -1) (0.422449 -2.18865 -1) (0.579433 -2.18874 -1) (0.735767 -2.17553 -1) (0.890072 -2.14921 -1) (1.04101 -2.11016 -1) (1.1873 -2.05897 -1) (1.32779 -1.99638 -1) (1.46144 -1.92334 -1) (1.58737 -1.84092 -1) (1.70489 -1.75033 -1) (1.8135 -1.65286 -1) (1.91293 -1.54985 -1) (2.00311 -1.44262 -1) (2.08416 -1.33243 -1) (2.15634 -1.22041 -1) (2.22006 -1.10755 -1) (2.27577 -0.994655 -1) (2.32396 -0.882338 -1) (2.36513 -0.771069 -1) (2.39973 -0.661184 -1) (2.42821 -0.552918 -1) (2.45097 -0.446429 -1) (2.46837 -0.341816 -1) (2.48074 -0.239149 -1) (2.4886 -0.138261 -1) (2.48696 -0.0439934 -1) ) // ************************************************************************* //
[ "hhstoldt@ucalgary.ca" ]
hhstoldt@ucalgary.ca
ae4fa9cdf9b0eb4649dbc35783c65ed1bcd77a87
371790345e6d6f2df2d3d8900263c3e1e2403216
/Restaurant/Rest/Order.cpp
cf01c3eb9f35a32a7f6e458340b3950d1c0b965d
[]
no_license
abdullahalshawafi/Cookit
8afc28ee3e3fe3af2016f05a576ec935a7dcb9de
6936ded4ffc0bceeea438bf825215b9bc1f3d191
refs/heads/master
2022-10-01T06:23:56.768219
2020-06-01T22:11:52
2020-06-01T22:11:52
245,486,143
0
1
null
null
null
null
UTF-8
C++
false
false
2,481
cpp
#include"Order.h" int Order::VIP_Wait = 0; int Order::AutoPro = 0; Order::Order() { Urgent = false; } Order::Order(int arrTime, int id, ORD_TYPE O_Type, int O_Size, double O_Money) { ArrTime = arrTime; ID = (id > 0 && id < 1000) ? id : 0; //1<ID<999 type = O_Type; status = WAIT; OrderSize = O_Size; //If the type of the order is already VIP then we will set its promotion TS the same as Arrival TS, //but if the order was vegan or normal then we set the promotion TS to zero, so, when the order is promoted either //with a promotion event or auto-promotion, we will set the promotion TS to that CurrentTimeStep. //this is to make the condition of turning VIP orders to urgent orders valid //where we ask before making a VIP order an urgent order, whether the CurrentTimeStep - PromotionTS == VIP_wt ? make it urgent : skip it; (type == TYPE_VIP) ? PromotionTS = ArrTime : PromotionTS = 0; totalMoney = O_Money; Urgent = false; } void Order::SetID(int id) { ID = (id > 0 && id < 1000) ? id : 0; //1<ID<999 } int Order::GetID() const { return ID; } void Order::SetType(ORD_TYPE Order_Type) { type = Order_Type; } ORD_TYPE Order::GetType() const { return type; } void Order::SetStatus(ORD_STATUS Status) { status = Status; } ORD_STATUS Order::GetStatus() const { return status; } void Order::SetArrivalTime(int arrTime) { ArrTime = arrTime; } int Order::GetArrivalTime() const { return ArrTime; } void Order::SetInServiceTime(int ServiceTime) { ServTime = ServiceTime; } int Order::GetInServiceTime() const { return ServTime; } void Order::SetFinishTime(int finishTime) { FinishTime = finishTime; } int Order::GetFinishTime() const { return FinishTime; } void Order::SetOrderSize(int size) { OrderSize = size; } int Order::GetOrderSize() const { return OrderSize; } void Order::SetPromotionTS(int TS) { PromotionTS = TS; } int Order::GetPromotionTS() const { return PromotionTS; } void Order::SetOrderMoney(double Money) { totalMoney = Money; } double Order::GetOrderMoney() const { return totalMoney; } void Order::SetUrgent(bool ans) { Urgent = ans; } bool Order::GetUrgent()const { return Urgent; } void Order::SetVIP_WAITANDNRM_WAIT(int v, int n) { VIP_Wait = v; AutoPro = n; } int Order::GetVIP_WAITANDNRM_WAIT(int& n) { n = AutoPro; return VIP_Wait; } Order::~Order() { }
[ "abdullahadel.aam@gmail.com" ]
abdullahadel.aam@gmail.com
0f1437f700020eafeab9130254314e7a66e8c051
9fad4848e43f4487730185e4f50e05a044f865ab
/src/components/test_runner/web_view_test_client.cc
c6338b3120ecab425aea0ac3f54150250df1161f
[ "BSD-3-Clause" ]
permissive
dummas2008/chromium
d1b30da64f0630823cb97f58ec82825998dbb93e
82d2e84ce3ed8a00dc26c948219192c3229dfdaa
refs/heads/master
2020-12-31T07:18:45.026190
2016-04-14T03:17:45
2016-04-14T03:17:45
56,194,439
4
0
null
null
null
null
UTF-8
C++
false
false
8,207
cc
// Copyright 2016 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 "components/test_runner/web_view_test_client.h" #include "base/bind.h" #include "base/bind_helpers.h" #include "base/i18n/rtl.h" #include "base/strings/string16.h" #include "base/strings/utf_string_conversions.h" #include "base/time/time.h" #include "components/test_runner/event_sender.h" #include "components/test_runner/mock_web_speech_recognizer.h" #include "components/test_runner/test_common.h" #include "components/test_runner/test_runner.h" #include "components/test_runner/web_task.h" #include "components/test_runner/web_test_delegate.h" #include "components/test_runner/web_test_proxy.h" #include "third_party/WebKit/public/platform/WebURLRequest.h" #include "third_party/WebKit/public/web/WebFrame.h" #include "third_party/WebKit/public/web/WebLocalFrame.h" #include "third_party/WebKit/public/web/WebPagePopup.h" #include "third_party/WebKit/public/web/WebPrintParams.h" #include "third_party/WebKit/public/web/WebView.h" #include "third_party/WebKit/public/web/WebWidget.h" namespace test_runner { WebViewTestClient::WebViewTestClient(TestRunner* test_runner, WebTestDelegate* delegate, EventSender* event_sender, WebTestProxyBase* web_test_proxy_base) : test_runner_(test_runner), delegate_(delegate), event_sender_(event_sender), web_test_proxy_base_(web_test_proxy_base), animation_scheduled_(false), weak_factory_(this) { DCHECK(test_runner); DCHECK(delegate); DCHECK(event_sender); DCHECK(web_test_proxy_base); } WebViewTestClient::~WebViewTestClient() {} void WebViewTestClient::scheduleAnimation() { if (!test_runner_->TestIsRunning()) return; if (!animation_scheduled_) { animation_scheduled_ = true; test_runner_->OnAnimationScheduled(web_test_proxy_base_->web_view()); delegate_->PostDelayedTask( new WebCallbackTask(base::Bind(&WebViewTestClient::AnimateNow, weak_factory_.GetWeakPtr())), 1); } } void WebViewTestClient::AnimateNow() { if (animation_scheduled_) { blink::WebWidget* web_widget = web_test_proxy_base_->web_widget(); animation_scheduled_ = false; test_runner_->OnAnimationBegun(web_test_proxy_base_->web_view()); base::TimeDelta animate_time = base::TimeTicks::Now() - base::TimeTicks(); web_widget->beginFrame(animate_time.InSecondsF()); web_widget->updateAllLifecyclePhases(); if (blink::WebPagePopup* popup = web_widget->pagePopup()) { popup->beginFrame(animate_time.InSecondsF()); popup->updateAllLifecyclePhases(); } } } void WebViewTestClient::startDragging(blink::WebLocalFrame* frame, const blink::WebDragData& data, blink::WebDragOperationsMask mask, const blink::WebImage& image, const blink::WebPoint& point) { test_runner_->setDragImage(image); // When running a test, we need to fake a drag drop operation otherwise // Windows waits for real mouse events to know when the drag is over. event_sender_->DoDragDrop(data, mask); } // The output from these methods in layout test mode should match that // expected by the layout tests. See EditingDelegate.m in DumpRenderTree. void WebViewTestClient::didChangeContents() { if (test_runner_->shouldDumpEditingCallbacks()) delegate_->PrintMessage( "EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification\n"); } blink::WebView* WebViewTestClient::createView( blink::WebLocalFrame* frame, const blink::WebURLRequest& request, const blink::WebWindowFeatures& features, const blink::WebString& frame_name, blink::WebNavigationPolicy policy, bool suppress_opener) { if (test_runner_->shouldDumpNavigationPolicy()) { delegate_->PrintMessage("Default policy for createView for '" + URLDescription(request.url()) + "' is '" + WebNavigationPolicyToString(policy) + "'\n"); } if (!test_runner_->canOpenWindows()) return nullptr; if (test_runner_->shouldDumpCreateView()) delegate_->PrintMessage(std::string("createView(") + URLDescription(request.url()) + ")\n"); // The return value below is used to communicate to WebTestProxy whether it // should forward the createView request to RenderViewImpl or not. The // somewhat ugly cast is used to do this while fitting into the existing // WebViewClient interface. return reinterpret_cast<blink::WebView*>(0xdeadbeef); } void WebViewTestClient::setStatusText(const blink::WebString& text) { if (!test_runner_->shouldDumpStatusCallbacks()) return; delegate_->PrintMessage( std::string("UI DELEGATE STATUS CALLBACK: setStatusText:") + text.utf8().data() + "\n"); } // Simulate a print by going into print mode and then exit straight away. void WebViewTestClient::printPage(blink::WebLocalFrame* frame) { blink::WebSize page_size_in_pixels = frame->view()->size(); if (page_size_in_pixels.isEmpty()) return; blink::WebPrintParams printParams(page_size_in_pixels); frame->printBegin(printParams); frame->printEnd(); } bool WebViewTestClient::runFileChooser( const blink::WebFileChooserParams& params, blink::WebFileChooserCompletion* completion) { delegate_->PrintMessage("Mock: Opening a file chooser.\n"); // FIXME: Add ability to set file names to a file upload control. return false; } void WebViewTestClient::showValidationMessage( const blink::WebRect& anchor_in_root_view, const blink::WebString& main_message, blink::WebTextDirection main_message_hint, const blink::WebString& sub_message, blink::WebTextDirection sub_message_hint) { base::string16 wrapped_main_text = main_message; base::string16 wrapped_sub_text = sub_message; if (main_message_hint == blink::WebTextDirectionLeftToRight) { wrapped_main_text = base::i18n::GetDisplayStringInLTRDirectionality(wrapped_main_text); } else if (main_message_hint == blink::WebTextDirectionRightToLeft && !base::i18n::IsRTL()) { base::i18n::WrapStringWithRTLFormatting(&wrapped_main_text); } if (!wrapped_sub_text.empty()) { if (sub_message_hint == blink::WebTextDirectionLeftToRight) { wrapped_sub_text = base::i18n::GetDisplayStringInLTRDirectionality(wrapped_sub_text); } else if (sub_message_hint == blink::WebTextDirectionRightToLeft) { base::i18n::WrapStringWithRTLFormatting(&wrapped_sub_text); } } delegate_->PrintMessage("ValidationMessageClient: main-message=" + base::UTF16ToUTF8(wrapped_main_text) + " sub-message=" + base::UTF16ToUTF8(wrapped_sub_text) + "\n"); } blink::WebSpeechRecognizer* WebViewTestClient::speechRecognizer() { return test_runner_->getMockWebSpeechRecognizer(); } bool WebViewTestClient::requestPointerLock() { return test_runner_->RequestPointerLock(); } void WebViewTestClient::requestPointerUnlock() { test_runner_->RequestPointerUnlock(); } bool WebViewTestClient::isPointerLocked() { return test_runner_->isPointerLocked(); } void WebViewTestClient::didFocus() { delegate_->SetFocus(web_test_proxy_base_->web_view(), true); } void WebViewTestClient::setToolTipText(const blink::WebString& text, blink::WebTextDirection direction) { test_runner_->setToolTipText(text); } void WebViewTestClient::resetInputMethod() { // If a composition text exists, then we need to let the browser process // to cancel the input method's ongoing composition session. if (web_test_proxy_base_) web_test_proxy_base_->web_widget()->confirmComposition(); } blink::WebString WebViewTestClient::acceptLanguages() { return blink::WebString::fromUTF8(test_runner_->GetAcceptLanguages()); } } // namespace test_runner
[ "dummas@163.com" ]
dummas@163.com
b2f257e2ab9cde245b1959b6df35cc0d807a443c
804ca72a78bd7da50ea294d42d424f8fabf10b72
/Simple_LED.ino
a0be05b667aa6f620baef5a97f7506aac4160d87
[]
no_license
Edwinrose/Arduino
b98f1ba5825bca7869361fa96313510f7f08588b
b64d3924e1ff94ba7ee4cb36b1cde78c543f6c3d
refs/heads/master
2022-11-30T07:51:19.387456
2020-08-16T16:03:40
2020-08-16T16:03:40
105,785,867
1
0
null
null
null
null
UTF-8
C++
false
false
207
ino
int ledPin = 2; //GPIO2 (ESP-12E pin D4) void setup() { pinMode(ledPin, OUTPUT); } void loop() { digitalWrite(ledPin, HIGH); delay(100); digitalWrite(ledPin, LOW); delay(100); }
[ "noreply@github.com" ]
Edwinrose.noreply@github.com
ed098432e335f6d8d77da1d02dbb5cc744e16b27
7546a2a3660688002df7bbd924075912bd2661b7
/src/mean_histogram.h
f2c2e5ca7ddfde7baadb8d64dcea90c29561dc18
[ "MIT" ]
permissive
northwolf521/poker-hand-clustering
8bc912486fb0b551fbe9bfff97fcc0f5c636ca2d
2a302242f977d35b1adf0087fbe0cc958a194dda
refs/heads/master
2023-03-22T10:44:14.545727
2020-01-30T06:33:50
2020-01-30T06:33:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,927
h
#ifndef POKER_HAND_CLUSTERING_TURN_MEAN_HISTOGRAM_H_ #define POKER_HAND_CLUSTERING_TURN_MEAN_HISTOGRAM_H_ #include <inttypes.h> #include <algorithm> #include <map> #include <random> #include <vector> namespace poker { template <typename IntType> class MeanHistogramsCalculator { size_t _clus_size; // _sum_histograms[cluster_idx][histogram_idx(equity or turn_cluster_idx)] = // summed frequency std::vector<std::map<size_t, size_t>> _sum_histograms; std::vector<size_t> _added_hist_counts; public: MeanHistogramsCalculator(size_t clus_size) : _clus_size(clus_size), _sum_histograms(clus_size), _added_hist_counts(clus_size) {} inline void add(size_t c_idx, const std::vector<IntType>& histogram) { _added_hist_counts[c_idx]++; for (IntType value : histogram) { _sum_histograms[c_idx][static_cast<size_t>(value)]++; } } inline std::vector<std::vector<std::pair<IntType, double>>> calc_mean_histograms( std::vector<std::vector<IntType>> histograms // to choose randomly from this when empty ) const { std::vector<std::vector<std::pair<IntType, double>>> mean_histograms( _clus_size); // prepare random index vector whose all elements are unique // for when the cluster is empty std::vector<size_t> rand_idxes; std::mt19937 mt{std::random_device{}()}; // if cluster size is enough big if (_clus_size < histograms.size() * 0.3) { rand_idxes.resize(histograms.size()); std::iota(rand_idxes.begin(), rand_idxes.end(), 0); } else { std::uniform_int_distribution<int> distribution(0, _clus_size); const size_t size_extra = _clus_size * 1.2; while (rand_idxes.size() < _clus_size) { while (rand_idxes.size() < size_extra) { rand_idxes.emplace_back(distribution(mt)); } std::sort(rand_idxes.begin(), rand_idxes.end()); rand_idxes.erase(std::unique(rand_idxes.begin(), rand_idxes.end()), rand_idxes.end()); } } std::shuffle(rand_idxes.begin(), rand_idxes.end(), mt); rand_idxes.resize(_clus_size); auto random_idx_it = rand_idxes.begin(); for (size_t c_idx = 0; c_idx < _clus_size; c_idx++) { auto sum_histogram = _sum_histograms[c_idx]; if (sum_histogram.empty()) { auto substitute_hist = histograms[*random_idx_it]; random_idx_it++; for (IntType hist_val : substitute_hist) { mean_histograms[c_idx].emplace_back(std::make_pair(hist_val, 1.0)); } } else { for (const auto& [hist_idx, frequency] : sum_histogram) { mean_histograms[c_idx].emplace_back(std::make_pair( hist_idx, static_cast<double>(frequency) / _added_hist_counts[c_idx])); } } } return mean_histograms; } }; } // namespace poker #endif // POKER_HAND_CLUSTERING_TURN_MEAN_HISTOGRAM_H_
[ "338@tutanota.de" ]
338@tutanota.de
0da8c965a3b96eaae55eba1f03fdad2befdd3e24
214b128cd5207c8d53a096f3af9a2c13659ae62e
/杭电真题/201902.cpp
3c4852f1eb486ae8d5af95769e70ac0be8941601
[]
no_license
chengleee/Algorithm-exercises
9032144db541e22bc177bfae1344e0422413cadc
405b51256ac9cc1baf911fd0ba254b14eea3e124
refs/heads/master
2021-07-19T16:08:47.507887
2021-01-07T00:58:40
2021-01-07T00:58:40
230,390,516
0
0
null
null
null
null
UTF-8
C++
false
false
639
cpp
/* 算法思想: 先序遍历 */ int Isomorphic(Tree R1, Tree R2) { if ((R1 == Null) && (R2 == Null)){ return 1; } //对应一个树存在某个节点,而另一个树没有该节点 else if ((R1 == Null && R2 != Null) || (R2 == Null && R1 != Null)){ return 0; } else if (T1[R1].Element != T2[R2].Element) { return 0; } else if (Isomorphic(T1[R1].Left, T2[R2].Left) && Isomorphic(T1[R1].Right, T2[R2].Right)) { return 1; } else if (Isomorphic(T1[R1].Left, T2[R2].Right) && Isomorphic(T1[R1].Right, T2[R2].Left)){ return 1; } return 0; }
[ "443775387@qq.com" ]
443775387@qq.com
0574d0405c195eeb5aabdf28809d4d5b4d902d65
bbf49952db49e0a4798ffabb382ea216f6c5ddb3
/Chapter1/Exercise10/src/Main.cpp
654c793e6442a671aa15d85b8135ac050c7bead7
[]
no_license
utkarsh141193/CPPPrimer
b2e8f23e3fade506f5e62832d9579457a6a1b75f
aada9bbb08459f9622725ea77e1f920963d1f269
refs/heads/main
2023-04-03T08:16:44.822714
2021-04-14T12:44:42
2021-04-14T12:44:42
354,394,755
0
0
null
null
null
null
UTF-8
C++
false
false
238
cpp
// Program to sum the numbers from 50 to 100 using for loop. // #include <iostream> int main() { int sum = 0; for(int i = 50; i <= 100; ++i) { sum += i; } std::cout << "The sum from 50 to 100 is "<< sum <<std::endl; return 0; }
[ "noreply@github.com" ]
utkarsh141193.noreply@github.com
183d37d356ecaa51ed699105379f506c83cb9b8e
60cc30c8222dcb8c96bc28cb2ebece27e0ba310d
/p4/FIFOQueueClass.h
0cdfec6197153471a899312753841f31a8e36d31
[]
no_license
BlackIceCHN/EECS-402
9707f5e56e15195a1c6dcd03b00f3d7091134905
bb60f4f1a97ad767bc978b5617ae4f2196fb03be
refs/heads/master
2021-04-12T03:27:19.824698
2017-04-19T03:06:08
2017-04-19T03:06:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
737
h
#ifndef _TEMPLATE_FIFO_QUEUE_CLASS_ #define _TEMPLATE_FIFO_QUEUE_CLASS_ #include "LinkedNodeClass.h" /* HEADER: FIFOQueueClass is a special 'first-in'first-out' queue that riders enter while waiting for the line. The functionality of the FIFO is mainly enqueuing and dequeueing riders. To help with the simulation, it also can return the number of nodes in the FIFO and print out the value of the nodes */ template < class T > class FIFOQueueClass { private: LinkedNodeClass< T > *head; LinkedNodeClass< T > *tail; public: FIFOQueueClass(); // initialize to empty queue void enqueue(const T &newItem); bool dequeue(T &outItem); void print() const; int getNumElems() const; }; #include "FIFOQueueClass.inl" #endif
[ "jarvmiller@gmail.com" ]
jarvmiller@gmail.com
15524fd885ae95adbea2271ccc0dc769ce1016de
1cf86f3b8a75e4b9e2256a49dd7f904d1bc3667c
/src/bind/math.c.cpp
b1a32eaf4b28f266124a6c6d0ce609974f7c39f8
[ "Zlib" ]
permissive
hugoam/two
bfaa6f0184e7e45e4f2fbc0e2d6257ed51dfe54d
d4b386f48c572da03ac5c89e702cf08f388d434d
refs/heads/master
2023-04-27T11:10:21.640620
2023-04-18T21:04:38
2023-04-18T21:04:38
116,430,022
717
63
Zlib
2019-05-11T16:04:24
2018-01-05T21:48:50
C++
UTF-8
C++
false
false
47,821
cpp
#include <infra/Api.h> #include <type/Api.h> #include <math/Api.h> #ifdef TWO_PLATFORM_EMSCRIPTEN #include <emscripten.h> #define DECL EMSCRIPTEN_KEEPALIVE #else #define DECL #endif extern "C" { // v2<float> two::Type* DECL two_v2_float__type() { return &two::type<two::v2<float>>(); } two::v2<float>* DECL two_v2_float__construct_0() { return new two::v2<float>(); } two::v2<float>* DECL two_v2_float__construct_1(float v) { return new two::v2<float>(v); } two::v2<float>* DECL two_v2_float__construct_2(float x, float y) { return new two::v2<float>(x, y); } float DECL two_v2_float__get_x(two::v2<float>* self) { return self->x; } void DECL two_v2_float__set_x(two::v2<float>* self, float value) { self->x = value; } float DECL two_v2_float__get_y(two::v2<float>* self) { return self->y; } void DECL two_v2_float__set_y(two::v2<float>* self, float value) { self->y = value; } void DECL two_v2_float__destroy(two::v2<float>* self) { delete self; } // v3<float> two::Type* DECL two_v3_float__type() { return &two::type<two::v3<float>>(); } two::v3<float>* DECL two_v3_float__construct_0() { return new two::v3<float>(); } two::v3<float>* DECL two_v3_float__construct_1(float v) { return new two::v3<float>(v); } two::v3<float>* DECL two_v3_float__construct_3(float x, float y, float z) { return new two::v3<float>(x, y, z); } float DECL two_v3_float__get_x(two::v3<float>* self) { return self->x; } void DECL two_v3_float__set_x(two::v3<float>* self, float value) { self->x = value; } float DECL two_v3_float__get_y(two::v3<float>* self) { return self->y; } void DECL two_v3_float__set_y(two::v3<float>* self, float value) { self->y = value; } float DECL two_v3_float__get_z(two::v3<float>* self) { return self->z; } void DECL two_v3_float__set_z(two::v3<float>* self, float value) { self->z = value; } void DECL two_v3_float__destroy(two::v3<float>* self) { delete self; } // v4<float> two::Type* DECL two_v4_float__type() { return &two::type<two::v4<float>>(); } two::v4<float>* DECL two_v4_float__construct_0() { return new two::v4<float>(); } two::v4<float>* DECL two_v4_float__construct_1(float v) { return new two::v4<float>(v); } two::v4<float>* DECL two_v4_float__construct_4(float x, float y, float z, float w) { return new two::v4<float>(x, y, z, w); } float DECL two_v4_float__get_x(two::v4<float>* self) { return self->x; } void DECL two_v4_float__set_x(two::v4<float>* self, float value) { self->x = value; } float DECL two_v4_float__get_y(two::v4<float>* self) { return self->y; } void DECL two_v4_float__set_y(two::v4<float>* self, float value) { self->y = value; } float DECL two_v4_float__get_z(two::v4<float>* self) { return self->z; } void DECL two_v4_float__set_z(two::v4<float>* self, float value) { self->z = value; } float DECL two_v4_float__get_w(two::v4<float>* self) { return self->w; } void DECL two_v4_float__set_w(two::v4<float>* self, float value) { self->w = value; } void DECL two_v4_float__destroy(two::v4<float>* self) { delete self; } // v2<int> two::Type* DECL two_v2_int__type() { return &two::type<two::v2<int>>(); } two::v2<int>* DECL two_v2_int__construct_0() { return new two::v2<int>(); } two::v2<int>* DECL two_v2_int__construct_1(int v) { return new two::v2<int>(v); } two::v2<int>* DECL two_v2_int__construct_2(int x, int y) { return new two::v2<int>(x, y); } int DECL two_v2_int__get_x(two::v2<int>* self) { return self->x; } void DECL two_v2_int__set_x(two::v2<int>* self, int value) { self->x = value; } int DECL two_v2_int__get_y(two::v2<int>* self) { return self->y; } void DECL two_v2_int__set_y(two::v2<int>* self, int value) { self->y = value; } void DECL two_v2_int__destroy(two::v2<int>* self) { delete self; } // v3<int> two::Type* DECL two_v3_int__type() { return &two::type<two::v3<int>>(); } two::v3<int>* DECL two_v3_int__construct_0() { return new two::v3<int>(); } two::v3<int>* DECL two_v3_int__construct_1(int v) { return new two::v3<int>(v); } two::v3<int>* DECL two_v3_int__construct_3(int x, int y, int z) { return new two::v3<int>(x, y, z); } int DECL two_v3_int__get_x(two::v3<int>* self) { return self->x; } void DECL two_v3_int__set_x(two::v3<int>* self, int value) { self->x = value; } int DECL two_v3_int__get_y(two::v3<int>* self) { return self->y; } void DECL two_v3_int__set_y(two::v3<int>* self, int value) { self->y = value; } int DECL two_v3_int__get_z(two::v3<int>* self) { return self->z; } void DECL two_v3_int__set_z(two::v3<int>* self, int value) { self->z = value; } void DECL two_v3_int__destroy(two::v3<int>* self) { delete self; } // v4<int> two::Type* DECL two_v4_int__type() { return &two::type<two::v4<int>>(); } two::v4<int>* DECL two_v4_int__construct_0() { return new two::v4<int>(); } two::v4<int>* DECL two_v4_int__construct_1(int v) { return new two::v4<int>(v); } two::v4<int>* DECL two_v4_int__construct_4(int x, int y, int z, int w) { return new two::v4<int>(x, y, z, w); } int DECL two_v4_int__get_x(two::v4<int>* self) { return self->x; } void DECL two_v4_int__set_x(two::v4<int>* self, int value) { self->x = value; } int DECL two_v4_int__get_y(two::v4<int>* self) { return self->y; } void DECL two_v4_int__set_y(two::v4<int>* self, int value) { self->y = value; } int DECL two_v4_int__get_z(two::v4<int>* self) { return self->z; } void DECL two_v4_int__set_z(two::v4<int>* self, int value) { self->z = value; } int DECL two_v4_int__get_w(two::v4<int>* self) { return self->w; } void DECL two_v4_int__set_w(two::v4<int>* self, int value) { self->w = value; } void DECL two_v4_int__destroy(two::v4<int>* self) { delete self; } // v2<uint> two::Type* DECL two_v2_uint__type() { return &two::type<two::v2<uint>>(); } two::v2<uint>* DECL two_v2_uint__construct_0() { return new two::v2<uint>(); } two::v2<uint>* DECL two_v2_uint__construct_1(uint v) { return new two::v2<uint>(v); } two::v2<uint>* DECL two_v2_uint__construct_2(uint x, uint y) { return new two::v2<uint>(x, y); } uint DECL two_v2_uint__get_x(two::v2<uint>* self) { return self->x; } void DECL two_v2_uint__set_x(two::v2<uint>* self, uint value) { self->x = value; } uint DECL two_v2_uint__get_y(two::v2<uint>* self) { return self->y; } void DECL two_v2_uint__set_y(two::v2<uint>* self, uint value) { self->y = value; } void DECL two_v2_uint__destroy(two::v2<uint>* self) { delete self; } // v3<uint> two::Type* DECL two_v3_uint__type() { return &two::type<two::v3<uint>>(); } two::v3<uint>* DECL two_v3_uint__construct_0() { return new two::v3<uint>(); } two::v3<uint>* DECL two_v3_uint__construct_1(uint v) { return new two::v3<uint>(v); } two::v3<uint>* DECL two_v3_uint__construct_3(uint x, uint y, uint z) { return new two::v3<uint>(x, y, z); } uint DECL two_v3_uint__get_x(two::v3<uint>* self) { return self->x; } void DECL two_v3_uint__set_x(two::v3<uint>* self, uint value) { self->x = value; } uint DECL two_v3_uint__get_y(two::v3<uint>* self) { return self->y; } void DECL two_v3_uint__set_y(two::v3<uint>* self, uint value) { self->y = value; } uint DECL two_v3_uint__get_z(two::v3<uint>* self) { return self->z; } void DECL two_v3_uint__set_z(two::v3<uint>* self, uint value) { self->z = value; } void DECL two_v3_uint__destroy(two::v3<uint>* self) { delete self; } // v4<uint> two::Type* DECL two_v4_uint__type() { return &two::type<two::v4<uint>>(); } two::v4<uint>* DECL two_v4_uint__construct_0() { return new two::v4<uint>(); } two::v4<uint>* DECL two_v4_uint__construct_1(uint v) { return new two::v4<uint>(v); } two::v4<uint>* DECL two_v4_uint__construct_4(uint x, uint y, uint z, uint w) { return new two::v4<uint>(x, y, z, w); } uint DECL two_v4_uint__get_x(two::v4<uint>* self) { return self->x; } void DECL two_v4_uint__set_x(two::v4<uint>* self, uint value) { self->x = value; } uint DECL two_v4_uint__get_y(two::v4<uint>* self) { return self->y; } void DECL two_v4_uint__set_y(two::v4<uint>* self, uint value) { self->y = value; } uint DECL two_v4_uint__get_z(two::v4<uint>* self) { return self->z; } void DECL two_v4_uint__set_z(two::v4<uint>* self, uint value) { self->z = value; } uint DECL two_v4_uint__get_w(two::v4<uint>* self) { return self->w; } void DECL two_v4_uint__set_w(two::v4<uint>* self, uint value) { self->w = value; } void DECL two_v4_uint__destroy(two::v4<uint>* self) { delete self; } // v2<bool> two::Type* DECL two_v2_bool__type() { return &two::type<two::v2<bool>>(); } two::v2<bool>* DECL two_v2_bool__construct_0() { return new two::v2<bool>(); } two::v2<bool>* DECL two_v2_bool__construct_1(bool v) { return new two::v2<bool>(v); } two::v2<bool>* DECL two_v2_bool__construct_2(bool x, bool y) { return new two::v2<bool>(x, y); } bool DECL two_v2_bool__get_x(two::v2<bool>* self) { return self->x; } void DECL two_v2_bool__set_x(two::v2<bool>* self, bool value) { self->x = value; } bool DECL two_v2_bool__get_y(two::v2<bool>* self) { return self->y; } void DECL two_v2_bool__set_y(two::v2<bool>* self, bool value) { self->y = value; } void DECL two_v2_bool__destroy(two::v2<bool>* self) { delete self; } // v3<bool> two::Type* DECL two_v3_bool__type() { return &two::type<two::v3<bool>>(); } two::v3<bool>* DECL two_v3_bool__construct_0() { return new two::v3<bool>(); } two::v3<bool>* DECL two_v3_bool__construct_1(bool v) { return new two::v3<bool>(v); } two::v3<bool>* DECL two_v3_bool__construct_3(bool x, bool y, bool z) { return new two::v3<bool>(x, y, z); } bool DECL two_v3_bool__get_x(two::v3<bool>* self) { return self->x; } void DECL two_v3_bool__set_x(two::v3<bool>* self, bool value) { self->x = value; } bool DECL two_v3_bool__get_y(two::v3<bool>* self) { return self->y; } void DECL two_v3_bool__set_y(two::v3<bool>* self, bool value) { self->y = value; } bool DECL two_v3_bool__get_z(two::v3<bool>* self) { return self->z; } void DECL two_v3_bool__set_z(two::v3<bool>* self, bool value) { self->z = value; } void DECL two_v3_bool__destroy(two::v3<bool>* self) { delete self; } // v4<bool> two::Type* DECL two_v4_bool__type() { return &two::type<two::v4<bool>>(); } two::v4<bool>* DECL two_v4_bool__construct_0() { return new two::v4<bool>(); } two::v4<bool>* DECL two_v4_bool__construct_1(bool v) { return new two::v4<bool>(v); } two::v4<bool>* DECL two_v4_bool__construct_4(bool x, bool y, bool z, bool w) { return new two::v4<bool>(x, y, z, w); } bool DECL two_v4_bool__get_x(two::v4<bool>* self) { return self->x; } void DECL two_v4_bool__set_x(two::v4<bool>* self, bool value) { self->x = value; } bool DECL two_v4_bool__get_y(two::v4<bool>* self) { return self->y; } void DECL two_v4_bool__set_y(two::v4<bool>* self, bool value) { self->y = value; } bool DECL two_v4_bool__get_z(two::v4<bool>* self) { return self->z; } void DECL two_v4_bool__set_z(two::v4<bool>* self, bool value) { self->z = value; } bool DECL two_v4_bool__get_w(two::v4<bool>* self) { return self->w; } void DECL two_v4_bool__set_w(two::v4<bool>* self, bool value) { self->w = value; } void DECL two_v4_bool__destroy(two::v4<bool>* self) { delete self; } // mat3 two::Type* DECL two_mat3__type() { return &two::type<two::mat3>(); } two::mat3* DECL two_mat3__construct_0() { return new two::mat3(); } two::mat3* DECL two_mat3__construct_3(const two::float3* x, const two::float3* y, const two::float3* z) { return new two::mat3(*x, *y, *z); } two::mat3* DECL two_mat3__construct_9(float f0, float f1, float f2, float f3, float f4, float f5, float f6, float f7, float f8) { return new two::mat3(f0, f1, f2, f3, f4, f5, f6, f7, f8); } float DECL two_mat3__get_f(two::mat3* self, unsigned int index) { return self->f[index]; } void DECL two_mat3__set_f(two::mat3* self, unsigned int index, float value) { self->f[index] = value; } void DECL two_mat3__destroy(two::mat3* self) { delete self; } // mat4 two::Type* DECL two_mat4__type() { return &two::type<two::mat4>(); } two::mat4* DECL two_mat4__construct_0() { return new two::mat4(); } two::mat4* DECL two_mat4__construct_4(const two::float4* x, const two::float4* y, const two::float4* z, const two::float4* w) { return new two::mat4(*x, *y, *z, *w); } two::mat4* DECL two_mat4__construct_16(float f0, float f1, float f2, float f3, float f4, float f5, float f6, float f7, float f8, float f9, float f10, float f11, float f12, float f13, float f14, float f15) { return new two::mat4(f0, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15); } float DECL two_mat4__get_f(two::mat4* self, unsigned int index) { return self->f[index]; } void DECL two_mat4__set_f(two::mat4* self, unsigned int index, float value) { self->f[index] = value; } void DECL two_mat4__destroy(two::mat4* self) { delete self; } // quat two::Type* DECL two_quat__type() { return &two::type<two::quat>(); } two::quat* DECL two_quat__construct_0() { return new two::quat(); } two::quat* DECL two_quat__construct_1(const two::float3* euler_angles) { return new two::quat(*euler_angles); } two::quat* DECL two_quat__construct_4(float x, float y, float z, float w) { return new two::quat(x, y, z, w); } void DECL two_quat__destroy(two::quat* self) { delete self; } // Transform two::Type* DECL two_Transform__type() { return &two::type<two::Transform>(); } two::Transform* DECL two_Transform__construct_0() { return new two::Transform(); } two::vec3* DECL two_Transform__get_position(two::Transform* self) { return &self->m_position; } void DECL two_Transform__set_position(two::Transform* self, two::vec3* value) { self->m_position = *value; } two::quat* DECL two_Transform__get_rotation(two::Transform* self) { return &self->m_rotation; } void DECL two_Transform__set_rotation(two::Transform* self, two::quat* value) { self->m_rotation = *value; } two::vec3* DECL two_Transform__get_scale(two::Transform* self) { return &self->m_scale; } void DECL two_Transform__set_scale(two::Transform* self, two::vec3* value) { self->m_scale = *value; } void DECL two_Transform__destroy(two::Transform* self) { delete self; } // ColourHSL two::Type* DECL two_ColourHSL__type() { return &two::type<two::ColourHSL>(); } two::ColourHSL* DECL two_ColourHSL__construct_0() { return new two::ColourHSL(); } float DECL two_ColourHSL__get_h(two::ColourHSL* self) { return self->h; } void DECL two_ColourHSL__set_h(two::ColourHSL* self, float value) { self->h = value; } float DECL two_ColourHSL__get_s(two::ColourHSL* self) { return self->s; } void DECL two_ColourHSL__set_s(two::ColourHSL* self, float value) { self->s = value; } float DECL two_ColourHSL__get_l(two::ColourHSL* self) { return self->l; } void DECL two_ColourHSL__set_l(two::ColourHSL* self, float value) { self->l = value; } float DECL two_ColourHSL__get_a(two::ColourHSL* self) { return self->a; } void DECL two_ColourHSL__set_a(two::ColourHSL* self, float value) { self->a = value; } void DECL two_ColourHSL__destroy(two::ColourHSL* self) { delete self; } // Colour two::Type* DECL two_Colour__type() { return &two::type<two::Colour>(); } two::Colour* DECL two_Colour__construct_0() { return new two::Colour(); } two::Colour* DECL two_Colour__construct_1(float v) { return new two::Colour(v); } two::Colour* DECL two_Colour__construct_2(float v, float a) { return new two::Colour(v, a); } two::Colour* DECL two_Colour__construct_3(float r, float g, float b) { return new two::Colour(r, g, b); } two::Colour* DECL two_Colour__construct_4(float r, float g, float b, float a) { return new two::Colour(r, g, b, a); } float DECL two_Colour__get_r(two::Colour* self) { return self->r; } void DECL two_Colour__set_r(two::Colour* self, float value) { self->r = value; } float DECL two_Colour__get_g(two::Colour* self) { return self->g; } void DECL two_Colour__set_g(two::Colour* self, float value) { self->g = value; } float DECL two_Colour__get_b(two::Colour* self) { return self->b; } void DECL two_Colour__set_b(two::Colour* self, float value) { self->b = value; } float DECL two_Colour__get_a(two::Colour* self) { return self->a; } void DECL two_Colour__set_a(two::Colour* self, float value) { self->a = value; } void DECL two_Colour__destroy(two::Colour* self) { delete self; } // ValueCurve<float> two::Type* DECL two_ValueCurve_float__type() { return &two::type<two::ValueCurve<float>>(); } two::ValueCurve<float>* DECL two_ValueCurve_float__construct_0() { return new two::ValueCurve<float>(); } two::ValueCurve<float>* DECL two_ValueCurve_float__construct_1(float* keys, int keys_size) { return new two::ValueCurve<float>({ (float*)keys, keys_size / (sizeof(float) / sizeof(float)) }); } float* DECL two_ValueCurve_float__get_keys(two::ValueCurve<float>* self) { return (float*)self->m_keys.data(); } void DECL two_ValueCurve_float__destroy(two::ValueCurve<float>* self) { delete self; } // ValueCurve<uint32_t> two::Type* DECL two_ValueCurve_uint32_t__type() { return &two::type<two::ValueCurve<uint32_t>>(); } two::ValueCurve<uint32_t>* DECL two_ValueCurve_uint32_t__construct_0() { return new two::ValueCurve<uint32_t>(); } two::ValueCurve<uint32_t>* DECL two_ValueCurve_uint32_t__construct_1(uint* keys, int keys_size) { return new two::ValueCurve<uint32_t>({ (uint32_t*)keys, keys_size / (sizeof(uint32_t) / sizeof(uint)) }); } uint* DECL two_ValueCurve_uint32_t__get_keys(two::ValueCurve<uint32_t>* self) { return (uint*)self->m_keys.data(); } void DECL two_ValueCurve_uint32_t__destroy(two::ValueCurve<uint32_t>* self) { delete self; } // ValueCurve<two::vec3> two::Type* DECL two_ValueCurve_two_vec3__type() { return &two::type<two::ValueCurve<two::vec3>>(); } two::ValueCurve<two::vec3>* DECL two_ValueCurve_two_vec3__construct_0() { return new two::ValueCurve<two::vec3>(); } two::ValueCurve<two::vec3>* DECL two_ValueCurve_two_vec3__construct_1(float* keys, int keys_size) { return new two::ValueCurve<two::vec3>({ (two::vec3*)keys, keys_size / (sizeof(two::vec3) / sizeof(float)) }); } float* DECL two_ValueCurve_two_vec3__get_keys(two::ValueCurve<two::vec3>* self) { return (float*)self->m_keys.data(); } void DECL two_ValueCurve_two_vec3__destroy(two::ValueCurve<two::vec3>* self) { delete self; } // ValueCurve<two::quat> two::Type* DECL two_ValueCurve_two_quat__type() { return &two::type<two::ValueCurve<two::quat>>(); } two::ValueCurve<two::quat>* DECL two_ValueCurve_two_quat__construct_0() { return new two::ValueCurve<two::quat>(); } void DECL two_ValueCurve_two_quat__destroy(two::ValueCurve<two::quat>* self) { delete self; } // ValueCurve<two::Colour> two::Type* DECL two_ValueCurve_two_Colour__type() { return &two::type<two::ValueCurve<two::Colour>>(); } two::ValueCurve<two::Colour>* DECL two_ValueCurve_two_Colour__construct_0() { return new two::ValueCurve<two::Colour>(); } two::ValueCurve<two::Colour>* DECL two_ValueCurve_two_Colour__construct_1(float* keys, int keys_size) { return new two::ValueCurve<two::Colour>({ (two::Colour*)keys, keys_size / (sizeof(two::Colour) / sizeof(float)) }); } float* DECL two_ValueCurve_two_Colour__get_keys(two::ValueCurve<two::Colour>* self) { return (float*)self->m_keys.data(); } void DECL two_ValueCurve_two_Colour__destroy(two::ValueCurve<two::Colour>* self) { delete self; } // ValueTrack<two::vec3> two::Type* DECL two_ValueTrack_two_vec3__type() { return &two::type<two::ValueTrack<two::vec3>>(); } two::ValueTrack<two::vec3>* DECL two_ValueTrack_two_vec3__construct_0() { return new two::ValueTrack<two::vec3>(); } two::ValueTrack<two::vec3>* DECL two_ValueTrack_two_vec3__construct_4(two::TrackMode mode, two::ValueCurve<two::vec3>* curve, two::ValueCurve<two::vec3>* min_curve, two::ValueCurve<two::vec3>* max_curve) { return new two::ValueTrack<two::vec3>(mode, *curve, *min_curve, *max_curve); } two::TrackMode DECL two_ValueTrack_two_vec3__get_mode(two::ValueTrack<two::vec3>* self) { return self->m_mode; } void DECL two_ValueTrack_two_vec3__set_mode(two::ValueTrack<two::vec3>* self, two::TrackMode value) { self->m_mode = value; } two::vec3* DECL two_ValueTrack_two_vec3__get_value(two::ValueTrack<two::vec3>* self) { return &self->m_value; } void DECL two_ValueTrack_two_vec3__set_value(two::ValueTrack<two::vec3>* self, two::vec3* value) { self->m_value = *value; } two::vec3* DECL two_ValueTrack_two_vec3__get_min(two::ValueTrack<two::vec3>* self) { return &self->m_min; } void DECL two_ValueTrack_two_vec3__set_min(two::ValueTrack<two::vec3>* self, two::vec3* value) { self->m_min = *value; } two::vec3* DECL two_ValueTrack_two_vec3__get_max(two::ValueTrack<two::vec3>* self) { return &self->m_max; } void DECL two_ValueTrack_two_vec3__set_max(two::ValueTrack<two::vec3>* self, two::vec3* value) { self->m_max = *value; } two::ValueCurve<two::vec3>* DECL two_ValueTrack_two_vec3__get_curve(two::ValueTrack<two::vec3>* self) { return &self->m_curve; } void DECL two_ValueTrack_two_vec3__set_curve(two::ValueTrack<two::vec3>* self, two::ValueCurve<two::vec3>* value) { self->m_curve = *value; } two::ValueCurve<two::vec3>* DECL two_ValueTrack_two_vec3__get_min_curve(two::ValueTrack<two::vec3>* self) { return &self->m_min_curve; } void DECL two_ValueTrack_two_vec3__set_min_curve(two::ValueTrack<two::vec3>* self, two::ValueCurve<two::vec3>* value) { self->m_min_curve = *value; } two::ValueCurve<two::vec3>* DECL two_ValueTrack_two_vec3__get_max_curve(two::ValueTrack<two::vec3>* self) { return &self->m_max_curve; } void DECL two_ValueTrack_two_vec3__set_max_curve(two::ValueTrack<two::vec3>* self, two::ValueCurve<two::vec3>* value) { self->m_max_curve = *value; } void DECL two_ValueTrack_two_vec3__destroy(two::ValueTrack<two::vec3>* self) { delete self; } // ValueTrack<two::quat> two::Type* DECL two_ValueTrack_two_quat__type() { return &two::type<two::ValueTrack<two::quat>>(); } two::ValueTrack<two::quat>* DECL two_ValueTrack_two_quat__construct_0() { return new two::ValueTrack<two::quat>(); } two::ValueTrack<two::quat>* DECL two_ValueTrack_two_quat__construct_4(two::TrackMode mode, two::ValueCurve<two::quat>* curve, two::ValueCurve<two::quat>* min_curve, two::ValueCurve<two::quat>* max_curve) { return new two::ValueTrack<two::quat>(mode, *curve, *min_curve, *max_curve); } two::TrackMode DECL two_ValueTrack_two_quat__get_mode(two::ValueTrack<two::quat>* self) { return self->m_mode; } void DECL two_ValueTrack_two_quat__set_mode(two::ValueTrack<two::quat>* self, two::TrackMode value) { self->m_mode = value; } two::quat* DECL two_ValueTrack_two_quat__get_value(two::ValueTrack<two::quat>* self) { return &self->m_value; } void DECL two_ValueTrack_two_quat__set_value(two::ValueTrack<two::quat>* self, two::quat* value) { self->m_value = *value; } two::quat* DECL two_ValueTrack_two_quat__get_min(two::ValueTrack<two::quat>* self) { return &self->m_min; } void DECL two_ValueTrack_two_quat__set_min(two::ValueTrack<two::quat>* self, two::quat* value) { self->m_min = *value; } two::quat* DECL two_ValueTrack_two_quat__get_max(two::ValueTrack<two::quat>* self) { return &self->m_max; } void DECL two_ValueTrack_two_quat__set_max(two::ValueTrack<two::quat>* self, two::quat* value) { self->m_max = *value; } two::ValueCurve<two::quat>* DECL two_ValueTrack_two_quat__get_curve(two::ValueTrack<two::quat>* self) { return &self->m_curve; } void DECL two_ValueTrack_two_quat__set_curve(two::ValueTrack<two::quat>* self, two::ValueCurve<two::quat>* value) { self->m_curve = *value; } two::ValueCurve<two::quat>* DECL two_ValueTrack_two_quat__get_min_curve(two::ValueTrack<two::quat>* self) { return &self->m_min_curve; } void DECL two_ValueTrack_two_quat__set_min_curve(two::ValueTrack<two::quat>* self, two::ValueCurve<two::quat>* value) { self->m_min_curve = *value; } two::ValueCurve<two::quat>* DECL two_ValueTrack_two_quat__get_max_curve(two::ValueTrack<two::quat>* self) { return &self->m_max_curve; } void DECL two_ValueTrack_two_quat__set_max_curve(two::ValueTrack<two::quat>* self, two::ValueCurve<two::quat>* value) { self->m_max_curve = *value; } void DECL two_ValueTrack_two_quat__destroy(two::ValueTrack<two::quat>* self) { delete self; } // ValueTrack<float> two::Type* DECL two_ValueTrack_float__type() { return &two::type<two::ValueTrack<float>>(); } two::ValueTrack<float>* DECL two_ValueTrack_float__construct_0() { return new two::ValueTrack<float>(); } two::ValueTrack<float>* DECL two_ValueTrack_float__construct_4(two::TrackMode mode, two::ValueCurve<float>* curve, two::ValueCurve<float>* min_curve, two::ValueCurve<float>* max_curve) { return new two::ValueTrack<float>(mode, *curve, *min_curve, *max_curve); } two::TrackMode DECL two_ValueTrack_float__get_mode(two::ValueTrack<float>* self) { return self->m_mode; } void DECL two_ValueTrack_float__set_mode(two::ValueTrack<float>* self, two::TrackMode value) { self->m_mode = value; } float DECL two_ValueTrack_float__get_value(two::ValueTrack<float>* self) { return self->m_value; } void DECL two_ValueTrack_float__set_value(two::ValueTrack<float>* self, float value) { self->m_value = value; } float DECL two_ValueTrack_float__get_min(two::ValueTrack<float>* self) { return self->m_min; } void DECL two_ValueTrack_float__set_min(two::ValueTrack<float>* self, float value) { self->m_min = value; } float DECL two_ValueTrack_float__get_max(two::ValueTrack<float>* self) { return self->m_max; } void DECL two_ValueTrack_float__set_max(two::ValueTrack<float>* self, float value) { self->m_max = value; } two::ValueCurve<float>* DECL two_ValueTrack_float__get_curve(two::ValueTrack<float>* self) { return &self->m_curve; } void DECL two_ValueTrack_float__set_curve(two::ValueTrack<float>* self, two::ValueCurve<float>* value) { self->m_curve = *value; } two::ValueCurve<float>* DECL two_ValueTrack_float__get_min_curve(two::ValueTrack<float>* self) { return &self->m_min_curve; } void DECL two_ValueTrack_float__set_min_curve(two::ValueTrack<float>* self, two::ValueCurve<float>* value) { self->m_min_curve = *value; } two::ValueCurve<float>* DECL two_ValueTrack_float__get_max_curve(two::ValueTrack<float>* self) { return &self->m_max_curve; } void DECL two_ValueTrack_float__set_max_curve(two::ValueTrack<float>* self, two::ValueCurve<float>* value) { self->m_max_curve = *value; } void DECL two_ValueTrack_float__destroy(two::ValueTrack<float>* self) { delete self; } // ValueTrack<uint32_t> two::Type* DECL two_ValueTrack_uint32_t__type() { return &two::type<two::ValueTrack<uint32_t>>(); } two::ValueTrack<uint32_t>* DECL two_ValueTrack_uint32_t__construct_0() { return new two::ValueTrack<uint32_t>(); } two::ValueTrack<uint32_t>* DECL two_ValueTrack_uint32_t__construct_4(two::TrackMode mode, two::ValueCurve<uint32_t>* curve, two::ValueCurve<uint32_t>* min_curve, two::ValueCurve<uint32_t>* max_curve) { return new two::ValueTrack<uint32_t>(mode, *curve, *min_curve, *max_curve); } two::TrackMode DECL two_ValueTrack_uint32_t__get_mode(two::ValueTrack<uint32_t>* self) { return self->m_mode; } void DECL two_ValueTrack_uint32_t__set_mode(two::ValueTrack<uint32_t>* self, two::TrackMode value) { self->m_mode = value; } uint32_t DECL two_ValueTrack_uint32_t__get_value(two::ValueTrack<uint32_t>* self) { return self->m_value; } void DECL two_ValueTrack_uint32_t__set_value(two::ValueTrack<uint32_t>* self, uint32_t value) { self->m_value = value; } uint32_t DECL two_ValueTrack_uint32_t__get_min(two::ValueTrack<uint32_t>* self) { return self->m_min; } void DECL two_ValueTrack_uint32_t__set_min(two::ValueTrack<uint32_t>* self, uint32_t value) { self->m_min = value; } uint32_t DECL two_ValueTrack_uint32_t__get_max(two::ValueTrack<uint32_t>* self) { return self->m_max; } void DECL two_ValueTrack_uint32_t__set_max(two::ValueTrack<uint32_t>* self, uint32_t value) { self->m_max = value; } two::ValueCurve<uint32_t>* DECL two_ValueTrack_uint32_t__get_curve(two::ValueTrack<uint32_t>* self) { return &self->m_curve; } void DECL two_ValueTrack_uint32_t__set_curve(two::ValueTrack<uint32_t>* self, two::ValueCurve<uint32_t>* value) { self->m_curve = *value; } two::ValueCurve<uint32_t>* DECL two_ValueTrack_uint32_t__get_min_curve(two::ValueTrack<uint32_t>* self) { return &self->m_min_curve; } void DECL two_ValueTrack_uint32_t__set_min_curve(two::ValueTrack<uint32_t>* self, two::ValueCurve<uint32_t>* value) { self->m_min_curve = *value; } two::ValueCurve<uint32_t>* DECL two_ValueTrack_uint32_t__get_max_curve(two::ValueTrack<uint32_t>* self) { return &self->m_max_curve; } void DECL two_ValueTrack_uint32_t__set_max_curve(two::ValueTrack<uint32_t>* self, two::ValueCurve<uint32_t>* value) { self->m_max_curve = *value; } void DECL two_ValueTrack_uint32_t__destroy(two::ValueTrack<uint32_t>* self) { delete self; } // ValueTrack<two::Colour> two::Type* DECL two_ValueTrack_two_Colour__type() { return &two::type<two::ValueTrack<two::Colour>>(); } two::ValueTrack<two::Colour>* DECL two_ValueTrack_two_Colour__construct_0() { return new two::ValueTrack<two::Colour>(); } two::ValueTrack<two::Colour>* DECL two_ValueTrack_two_Colour__construct_4(two::TrackMode mode, two::ValueCurve<two::Colour>* curve, two::ValueCurve<two::Colour>* min_curve, two::ValueCurve<two::Colour>* max_curve) { return new two::ValueTrack<two::Colour>(mode, *curve, *min_curve, *max_curve); } two::TrackMode DECL two_ValueTrack_two_Colour__get_mode(two::ValueTrack<two::Colour>* self) { return self->m_mode; } void DECL two_ValueTrack_two_Colour__set_mode(two::ValueTrack<two::Colour>* self, two::TrackMode value) { self->m_mode = value; } two::Colour* DECL two_ValueTrack_two_Colour__get_value(two::ValueTrack<two::Colour>* self) { return &self->m_value; } void DECL two_ValueTrack_two_Colour__set_value(two::ValueTrack<two::Colour>* self, two::Colour* value) { self->m_value = *value; } two::Colour* DECL two_ValueTrack_two_Colour__get_min(two::ValueTrack<two::Colour>* self) { return &self->m_min; } void DECL two_ValueTrack_two_Colour__set_min(two::ValueTrack<two::Colour>* self, two::Colour* value) { self->m_min = *value; } two::Colour* DECL two_ValueTrack_two_Colour__get_max(two::ValueTrack<two::Colour>* self) { return &self->m_max; } void DECL two_ValueTrack_two_Colour__set_max(two::ValueTrack<two::Colour>* self, two::Colour* value) { self->m_max = *value; } two::ValueCurve<two::Colour>* DECL two_ValueTrack_two_Colour__get_curve(two::ValueTrack<two::Colour>* self) { return &self->m_curve; } void DECL two_ValueTrack_two_Colour__set_curve(two::ValueTrack<two::Colour>* self, two::ValueCurve<two::Colour>* value) { self->m_curve = *value; } two::ValueCurve<two::Colour>* DECL two_ValueTrack_two_Colour__get_min_curve(two::ValueTrack<two::Colour>* self) { return &self->m_min_curve; } void DECL two_ValueTrack_two_Colour__set_min_curve(two::ValueTrack<two::Colour>* self, two::ValueCurve<two::Colour>* value) { self->m_min_curve = *value; } two::ValueCurve<two::Colour>* DECL two_ValueTrack_two_Colour__get_max_curve(two::ValueTrack<two::Colour>* self) { return &self->m_max_curve; } void DECL two_ValueTrack_two_Colour__set_max_curve(two::ValueTrack<two::Colour>* self, two::ValueCurve<two::Colour>* value) { self->m_max_curve = *value; } void DECL two_ValueTrack_two_Colour__destroy(two::ValueTrack<two::Colour>* self) { delete self; } // Image two::Type* DECL two_Image__type() { return &two::type<two::Image>(); } two::Image* DECL two_Image__construct_0() { return new two::Image(); } const char* DECL two_Image__get_d_name(two::Image* self) { return self->d_name.c_str(); } void DECL two_Image__set_d_name(two::Image* self, const char* value) { self->d_name = value; } const char* DECL two_Image__get_d_path(two::Image* self) { return self->d_path.c_str(); } void DECL two_Image__set_d_path(two::Image* self, const char* value) { self->d_path = value; } void DECL two_Image__destroy(two::Image* self) { delete self; } // Palette two::Type* DECL two_Palette__type() { return &two::type<two::Palette>(); } two::Palette* DECL two_Palette__construct_0() { return new two::Palette(); } two::Palette* DECL two_Palette__construct_1(float* colours, int colours_size) { return new two::Palette({ (two::Colour*)colours, colours_size / (sizeof(two::Colour) / sizeof(float)) }); } two::Palette* DECL two_Palette__construct_2(two::Spectrum spectrum, size_t steps) { return new two::Palette(spectrum, steps); } void DECL two_Palette__destroy(two::Palette* self) { delete self; } // Image256 two::Type* DECL two_Image256__type() { return &two::type<two::Image256>(); } two::Image256* DECL two_Image256__construct_0() { return new two::Image256(); } two::Image256* DECL two_Image256__construct_1(const two::uvec2* size) { return new two::Image256(*size); } two::Image256* DECL two_Image256__construct_2(const two::uvec2* size, const two::Palette* palette) { return new two::Image256(*size, *palette); } uint* DECL two_Image256__get_pixels(two::Image256* self) { return (uint*)self->m_pixels.data(); } two::uvec2* DECL two_Image256__get_size(two::Image256* self) { return &self->m_size; } void DECL two_Image256__set_size(two::Image256* self, two::uvec2* value) { self->m_size = *value; } two::Palette* DECL two_Image256__get_palette(two::Image256* self) { return &self->m_palette; } void DECL two_Image256__set_palette(two::Image256* self, two::Palette* value) { self->m_palette = *value; } void DECL two_Image256__destroy(two::Image256* self) { delete self; } // ImageAtlas two::Type* DECL two_ImageAtlas__type() { return &two::type<two::ImageAtlas>(); } void DECL two_ImageAtlas__destroy(two::ImageAtlas* self) { delete self; } // TextureAtlas two::Type* DECL two_TextureAtlas__type() { return &two::type<two::TextureAtlas>(); } void DECL two_TextureAtlas__destroy(two::TextureAtlas* self) { delete self; } // Sprite two::Type* DECL two_Sprite__type() { return &two::type<two::Sprite>(); } void DECL two_Sprite__destroy(two::Sprite* self) { delete self; } // SpriteAtlas two::Type* DECL two_SpriteAtlas__type() { return &two::type<two::SpriteAtlas>(); } void DECL two_SpriteAtlas__destroy(two::SpriteAtlas* self) { delete self; } // Range<two::vec3> two::Type* DECL two_Range_two_vec3__type() { return &two::type<two::Range<two::vec3>>(); } two::Range<two::vec3>* DECL two_Range_two_vec3__construct_0() { return new two::Range<two::vec3>(); } two::vec3* DECL two_Range_two_vec3__get_min(two::Range<two::vec3>* self) { return &self->m_min; } void DECL two_Range_two_vec3__set_min(two::Range<two::vec3>* self, two::vec3* value) { self->m_min = *value; } two::vec3* DECL two_Range_two_vec3__get_max(two::Range<two::vec3>* self) { return &self->m_max; } void DECL two_Range_two_vec3__set_max(two::Range<two::vec3>* self, two::vec3* value) { self->m_max = *value; } void DECL two_Range_two_vec3__destroy(two::Range<two::vec3>* self) { delete self; } // Range<two::quat> two::Type* DECL two_Range_two_quat__type() { return &two::type<two::Range<two::quat>>(); } two::Range<two::quat>* DECL two_Range_two_quat__construct_0() { return new two::Range<two::quat>(); } two::quat* DECL two_Range_two_quat__get_min(two::Range<two::quat>* self) { return &self->m_min; } void DECL two_Range_two_quat__set_min(two::Range<two::quat>* self, two::quat* value) { self->m_min = *value; } two::quat* DECL two_Range_two_quat__get_max(two::Range<two::quat>* self) { return &self->m_max; } void DECL two_Range_two_quat__set_max(two::Range<two::quat>* self, two::quat* value) { self->m_max = *value; } void DECL two_Range_two_quat__destroy(two::Range<two::quat>* self) { delete self; } // Range<float> two::Type* DECL two_Range_float__type() { return &two::type<two::Range<float>>(); } two::Range<float>* DECL two_Range_float__construct_0() { return new two::Range<float>(); } float DECL two_Range_float__get_min(two::Range<float>* self) { return self->m_min; } void DECL two_Range_float__set_min(two::Range<float>* self, float value) { self->m_min = value; } float DECL two_Range_float__get_max(two::Range<float>* self) { return self->m_max; } void DECL two_Range_float__set_max(two::Range<float>* self, float value) { self->m_max = value; } void DECL two_Range_float__destroy(two::Range<float>* self) { delete self; } // Range<uint32_t> two::Type* DECL two_Range_uint32_t__type() { return &two::type<two::Range<uint32_t>>(); } two::Range<uint32_t>* DECL two_Range_uint32_t__construct_0() { return new two::Range<uint32_t>(); } uint32_t DECL two_Range_uint32_t__get_min(two::Range<uint32_t>* self) { return self->m_min; } void DECL two_Range_uint32_t__set_min(two::Range<uint32_t>* self, uint32_t value) { self->m_min = value; } uint32_t DECL two_Range_uint32_t__get_max(two::Range<uint32_t>* self) { return self->m_max; } void DECL two_Range_uint32_t__set_max(two::Range<uint32_t>* self, uint32_t value) { self->m_max = value; } void DECL two_Range_uint32_t__destroy(two::Range<uint32_t>* self) { delete self; } // Range<two::Colour> two::Type* DECL two_Range_two_Colour__type() { return &two::type<two::Range<two::Colour>>(); } two::Range<two::Colour>* DECL two_Range_two_Colour__construct_0() { return new two::Range<two::Colour>(); } two::Colour* DECL two_Range_two_Colour__get_min(two::Range<two::Colour>* self) { return &self->m_min; } void DECL two_Range_two_Colour__set_min(two::Range<two::Colour>* self, two::Colour* value) { self->m_min = *value; } two::Colour* DECL two_Range_two_Colour__get_max(two::Range<two::Colour>* self) { return &self->m_max; } void DECL two_Range_two_Colour__set_max(two::Range<two::Colour>* self, two::Colour* value) { self->m_max = *value; } void DECL two_Range_two_Colour__destroy(two::Range<two::Colour>* self) { delete self; } // StatDef<int> two::Type* DECL two_StatDef_int__type() { return &two::type<two::StatDef<int>>(); } two::StatDef<int>* DECL two_StatDef_int__construct_0() { return new two::StatDef<int>(); } int DECL two_StatDef_int__get_min(two::StatDef<int>* self) { return self->m_min; } void DECL two_StatDef_int__set_min(two::StatDef<int>* self, int value) { self->m_min = value; } int DECL two_StatDef_int__get_max(two::StatDef<int>* self) { return self->m_max; } void DECL two_StatDef_int__set_max(two::StatDef<int>* self, int value) { self->m_max = value; } int DECL two_StatDef_int__get_step(two::StatDef<int>* self) { return self->m_step; } void DECL two_StatDef_int__set_step(two::StatDef<int>* self, int value) { self->m_step = value; } void DECL two_StatDef_int__destroy(two::StatDef<int>* self) { delete self; } // StatDef<float> two::Type* DECL two_StatDef_float__type() { return &two::type<two::StatDef<float>>(); } two::StatDef<float>* DECL two_StatDef_float__construct_0() { return new two::StatDef<float>(); } float DECL two_StatDef_float__get_min(two::StatDef<float>* self) { return self->m_min; } void DECL two_StatDef_float__set_min(two::StatDef<float>* self, float value) { self->m_min = value; } float DECL two_StatDef_float__get_max(two::StatDef<float>* self) { return self->m_max; } void DECL two_StatDef_float__set_max(two::StatDef<float>* self, float value) { self->m_max = value; } float DECL two_StatDef_float__get_step(two::StatDef<float>* self) { return self->m_step; } void DECL two_StatDef_float__set_step(two::StatDef<float>* self, float value) { self->m_step = value; } void DECL two_StatDef_float__destroy(two::StatDef<float>* self) { delete self; } // Time two::Type* DECL two_Time__type() { return &two::type<two::Time>(); } two::Time* DECL two_Time__construct_1(double value) { return new two::Time(value); } double DECL two_Time__get_value(two::Time* self) { return self->m_value; } void DECL two_Time__set_value(two::Time* self, double value) { self->m_value = value; } void DECL two_Time__destroy(two::Time* self) { delete self; } // TimeSpan two::Type* DECL two_TimeSpan__type() { return &two::type<two::TimeSpan>(); } two::TimeSpan* DECL two_TimeSpan__construct_2(two::Time* s, two::Time* e) { return new two::TimeSpan(*s, *e); } two::Time* DECL two_TimeSpan__get_start(two::TimeSpan* self) { return &self->start; } void DECL two_TimeSpan__set_start(two::TimeSpan* self, two::Time* value) { self->start = *value; } two::Time* DECL two_TimeSpan__get_end(two::TimeSpan* self) { return &self->end; } void DECL two_TimeSpan__set_end(two::TimeSpan* self, two::Time* value) { self->end = *value; } void DECL two_TimeSpan__destroy(two::TimeSpan* self) { delete self; } two::Colour* DECL two_rgb_1(uint32_t colour) { static two::Colour temp; return (temp = two::rgb(colour), &temp); } two::Colour* DECL two_rgba_1(uint32_t colour) { static two::Colour temp; return (temp = two::rgba(colour), &temp); } two::Colour* DECL two_abgr_1(uint32_t colour) { static two::Colour temp; return (temp = two::abgr(colour), &temp); } two::Colour* DECL two_hsv_3(float h, float s, float v) { static two::Colour temp; return (temp = two::hsv(h, s, v), &temp); } two::Colour* DECL two_hsl_3(float h, float s, float l) { static two::Colour temp; return (temp = two::hsl(h, s, l), &temp); } uint32_t DECL two_to_rgba_1(const two::Colour* colour) { return two::to_rgba(*colour); } uint32_t DECL two_to_abgr_1(const two::Colour* colour) { return two::to_abgr(*colour); } uint32_t DECL two_to_abgr_3(float r, float g, float b) { return two::to_abgr(r, g, b); } uint32_t DECL two_to_abgr_4(float r, float g, float b, float a) { return two::to_abgr(r, g, b, a); } two::Colour* DECL two_to_linear_1(const two::Colour* colour) { static two::Colour temp; return (temp = two::to_linear(*colour), &temp); } two::Colour* DECL two_to_gamma_1(const two::Colour* colour) { static two::Colour temp; return (temp = two::to_gamma(*colour), &temp); } two::Colour* DECL two_to_srgb_1(const two::Colour* colour) { static two::Colour temp; return (temp = two::to_srgb(*colour), &temp); } two::ColourHSL* DECL two_to_hsl_1(const two::Colour* colour) { static two::ColourHSL temp; return (temp = two::to_hsl(*colour), &temp); } two::ColourHSL* DECL two_to_hsl_3(float r, float g, float b) { static two::ColourHSL temp; return (temp = two::to_hsl(r, g, b), &temp); } two::ColourHSL* DECL two_to_hsla_1(const two::Colour* colour) { static two::ColourHSL temp; return (temp = two::to_hsla(*colour), &temp); } float DECL sinf_1(float a) { return sinf(a); } float DECL cosf_1(float a) { return cosf(a); } double DECL sin_1(double a) { return sin(a); } double DECL cos_1(double a) { return cos(a); } float DECL two_add_float_2(float a, float b) { return two::add<float>(a, b); } float DECL two_subtract_float_2(float a, float b) { return two::subtract<float>(a, b); } float DECL two_multiply_float_2(float a, float b) { return two::multiply<float>(a, b); } float DECL two_divide_float_2(float a, float b) { return two::divide<float>(a, b); } float DECL two_nsinf_1(float a) { return two::nsinf(a); } float DECL two_ncosf_1(float a) { return two::ncosf(a); } double DECL two_nsin_1(double a) { return two::nsin(a); } double DECL two_ncos_1(double a) { return two::ncos(a); } two::vec3* DECL two_add_two_v3_float_2(two::vec3* a, two::vec3* b) { static two::vec3 temp; return (temp = two::add<two::v3<float>>(*a, *b), &temp); } two::vec3* DECL two_subtract_two_v3_float_2(two::vec3* a, two::vec3* b) { static two::vec3 temp; return (temp = two::subtract<two::v3<float>>(*a, *b), &temp); } two::vec3* DECL two_multiply_two_v3_float_2(two::vec3* a, two::vec3* b) { static two::vec3 temp; return (temp = two::multiply<two::v3<float>>(*a, *b), &temp); } two::vec3* DECL two_divide_two_v3_float_2(two::vec3* a, two::vec3* b) { static two::vec3 temp; return (temp = two::divide<two::v3<float>>(*a, *b), &temp); } two::quat* DECL two_look_dir_1(const two::vec3* direction) { static two::quat temp; return (temp = two::look_dir(*direction), &temp); } two::quat* DECL two_look_dir_2(const two::vec3* direction, const two::vec3* forward) { static two::quat temp; return (temp = two::look_dir(*direction, *forward), &temp); } two::quat* DECL two_look_at_2(const two::vec3* eye, const two::vec3* target) { static two::quat temp; return (temp = two::look_at(*eye, *target), &temp); } two::quat* DECL two_look_at_3(const two::vec3* eye, const two::vec3* target, const two::vec3* forward) { static two::quat temp; return (temp = two::look_at(*eye, *target, *forward), &temp); } two::vec3* DECL two_grid_center_2(const two::uvec3* coord, const two::vec3* cell_size) { static two::vec3 temp; return (temp = two::grid_center(*coord, *cell_size), &temp); } // Axis two::Axis DECL two_Axis_X() { return two::Axis::X; } two::Axis DECL two_Axis_Y() { return two::Axis::Y; } two::Axis DECL two_Axis_Z() { return two::Axis::Z; } two::Axis DECL two_Axis_None() { return two::Axis::None; } two::Axis DECL two_Axis_Count() { return two::Axis::Count; } // Axes two::Axes DECL two_Axes_None() { return two::Axes::None; } two::Axes DECL two_Axes_X() { return two::Axes::X; } two::Axes DECL two_Axes_Y() { return two::Axes::Y; } two::Axes DECL two_Axes_Z() { return two::Axes::Z; } // SignedAxis two::SignedAxis DECL two_SignedAxis_PlusX() { return two::SignedAxis::PlusX; } two::SignedAxis DECL two_SignedAxis_MinusX() { return two::SignedAxis::MinusX; } two::SignedAxis DECL two_SignedAxis_PlusY() { return two::SignedAxis::PlusY; } two::SignedAxis DECL two_SignedAxis_MinusY() { return two::SignedAxis::MinusY; } two::SignedAxis DECL two_SignedAxis_PlusZ() { return two::SignedAxis::PlusZ; } two::SignedAxis DECL two_SignedAxis_MinusZ() { return two::SignedAxis::MinusZ; } two::SignedAxis DECL two_SignedAxis_Count() { return two::SignedAxis::Count; } // Side two::Side DECL two_Side_Right() { return two::Side::Right; } two::Side DECL two_Side_Left() { return two::Side::Left; } two::Side DECL two_Side_Up() { return two::Side::Up; } two::Side DECL two_Side_Down() { return two::Side::Down; } two::Side DECL two_Side_Back() { return two::Side::Back; } two::Side DECL two_Side_Front() { return two::Side::Front; } two::Side DECL two_Side_Count() { return two::Side::Count; } // Clockwise two::Clockwise DECL two_Clockwise_CLOCKWISE() { return two::CLOCKWISE; } two::Clockwise DECL two_Clockwise_ANTI_CLOCKWISE() { return two::ANTI_CLOCKWISE; } // TrackMode two::TrackMode DECL two_TrackMode_Constant() { return two::TrackMode::Constant; } two::TrackMode DECL two_TrackMode_ConstantRandom() { return two::TrackMode::ConstantRandom; } two::TrackMode DECL two_TrackMode_Curve() { return two::TrackMode::Curve; } two::TrackMode DECL two_TrackMode_CurveRandom() { return two::TrackMode::CurveRandom; } // Spectrum two::Spectrum DECL two_Spectrum_Value() { return two::Spectrum::Value; } two::Spectrum DECL two_Spectrum_Hue() { return two::Spectrum::Hue; } }
[ "hugo.amiard@wonderlandengine.com" ]
hugo.amiard@wonderlandengine.com
8103753553fba007100c259ab01eb624f0761a14
9d0c1da53da9e60d4a891d7edb7a02c31c8d26b9
/kaddressbook/imagewidget.cpp
ffe75d82307371b905f9e8ebd827fc4ba1f9a70a
[]
no_license
serghei/kde3-kdepim
7e6d4a0188c35a2c9c17babd317bfe3c0f1377d2
a1980f1560de118f19f54a5eff5bae87a6aa4784
refs/heads/master
2021-01-17T10:03:14.624954
2018-11-04T21:31:00
2018-11-04T21:31:00
3,688,187
0
0
null
null
null
null
UTF-8
C++
false
false
8,322
cpp
/* This file is part of KAddressBook. Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program with any edition of Qt, and distribute the resulting executable, without including the source code for Qt in the source distribution. */ #include <kabc/picture.h> #include <kdebug.h> #include <kdialog.h> #include <kfiledialog.h> #include <kglobalsettings.h> #include <kiconloader.h> #include <kimageio.h> #include <kio/netaccess.h> #include <klocale.h> #include <kmessagebox.h> #include <kurldrag.h> #include <libkdepim/kpixmapregionselectordialog.h> #include <qapplication.h> #include <qdragobject.h> #include <qeventloop.h> #include <qgroupbox.h> #include <qlabel.h> #include <qlayout.h> #include <qpixmap.h> #include <qpopupmenu.h> #include <unistd.h> #include "imagewidget.h" ImageLoader::ImageLoader(QWidget *parent) : QObject(0, "ImageLoader"), mParent(parent) { } KABC::Picture ImageLoader::loadPicture(const KURL &url, bool *ok) { KABC::Picture picture; QString tempFile; if(url.isEmpty()) return picture; (*ok) = false; QImage image; if(url.isLocalFile()) { image.load(url.path()); picture.setData(image); (*ok) = true; } else if(KIO::NetAccess::download(url, tempFile, mParent)) { image.load(tempFile); picture.setData(image); (*ok) = true; KIO::NetAccess::removeTempFile(tempFile); } if(!(*ok)) { // image does not exist (any more) KMessageBox::sorry(mParent, i18n("This contact's image cannot be found.")); return picture; } QPixmap pixmap = picture.data(); QPixmap selectedPixmap = KPIM::KPixmapRegionSelectorDialog::getSelectedImage(pixmap, 100, 140, mParent); if(selectedPixmap.isNull()) { (*ok) = false; return picture; } image = selectedPixmap; if(image.height() != 140 || image.width() != 100) { if(image.height() > image.width()) image = image.scaleHeight(140); else image = image.scaleWidth(100); } picture.setData(image); (*ok) = true; return picture; } ImageButton::ImageButton(const QString &title, QWidget *parent) : QPushButton(title, parent), mReadOnly(false), mImageLoader(0) { setAcceptDrops(true); connect(this, SIGNAL(clicked()), SLOT(load())); } void ImageButton::setReadOnly(bool readOnly) { mReadOnly = readOnly; } void ImageButton::setPicture(const KABC::Picture &picture) { mPicture = picture; updateGUI(); } KABC::Picture ImageButton::picture() const { return mPicture; } void ImageButton::setImageLoader(ImageLoader *loader) { mImageLoader = loader; } void ImageButton::startDrag() { if(!mPicture.data().isNull()) { QImageDrag *drag = new QImageDrag(mPicture.data(), this); drag->dragCopy(); } } void ImageButton::updateGUI() { if(mPicture.data().isNull()) setPixmap(KGlobal::iconLoader()->iconPath("personal", KIcon::Desktop)); else setPixmap(mPicture.data()); } void ImageButton::dragEnterEvent(QDragEnterEvent *event) { bool accepted = false; if(QImageDrag::canDecode(event)) accepted = true; if(QUriDrag::canDecode(event)) accepted = true; event->accept(accepted); } void ImageButton::dropEvent(QDropEvent *event) { if(mReadOnly) return; if(QImageDrag::canDecode(event)) { QPixmap pm; if(QImageDrag::decode(event, pm)) { mPicture.setData(pm.convertToImage()); updateGUI(); emit changed(); } } if(QUriDrag::canDecode(event)) { KURL::List urls; if(KURLDrag::decode(event, urls)) { if(urls.isEmpty()) // oops, no data { event->accept(false); return; } } if(mImageLoader) { bool ok = false; KABC::Picture pic = mImageLoader->loadPicture(urls[ 0 ], &ok); if(ok) { mPicture = pic; updateGUI(); emit changed(); } } } } void ImageButton::mousePressEvent(QMouseEvent *event) { mDragStartPos = event->pos(); QPushButton::mousePressEvent(event); } void ImageButton::mouseMoveEvent(QMouseEvent *event) { if((event->state() & LeftButton) && (event->pos() - mDragStartPos).manhattanLength() > KGlobalSettings::dndEventDelay()) { startDrag(); } } void ImageButton::contextMenuEvent(QContextMenuEvent *event) { QPopupMenu menu(this); menu.insertItem(i18n("Reset"), this, SLOT(clear())); menu.exec(event->globalPos()); } void ImageButton::load() { KURL url = KFileDialog::getOpenURL(QString(), KImageIO::pattern(), this); if(url.isValid()) { if(mImageLoader) { bool ok = false; KABC::Picture pic = mImageLoader->loadPicture(url, &ok); if(ok) { mPicture = pic; updateGUI(); emit changed(); } } } } void ImageButton::clear() { mPicture = KABC::Picture(); updateGUI(); emit changed(); } ImageBaseWidget::ImageBaseWidget(const QString &title, QWidget *parent, const char *name) : QWidget(parent, name), mReadOnly(false) { mImageLoader = new ImageLoader(this); QVBoxLayout *topLayout = new QVBoxLayout(this, KDialog::marginHint(), KDialog::spacingHint()); QGroupBox *box = new QGroupBox(0, Qt::Vertical, title, this); QVBoxLayout *layout = new QVBoxLayout(box->layout(), KDialog::spacingHint()); mImageButton = new ImageButton(i18n("Picture"), box); mImageButton->setFixedSize(100, 140); mImageButton->setImageLoader(mImageLoader); layout->addWidget(mImageButton); topLayout->addWidget(box); connect(mImageButton, SIGNAL(changed()), SIGNAL(changed())); } ImageBaseWidget::~ImageBaseWidget() { delete mImageLoader; mImageLoader = 0; } void ImageBaseWidget::setReadOnly(bool readOnly) { mReadOnly = readOnly; mImageButton->setReadOnly(mReadOnly); } void ImageBaseWidget::setImage(const KABC::Picture &photo) { mImageButton->setPicture(photo); } KABC::Picture ImageBaseWidget::image() const { return mImageButton->picture(); } ImageWidget::ImageWidget(KABC::AddressBook *ab, QWidget *parent, const char *name) : KAB::ContactEditorWidget(ab, parent, name) { QHBoxLayout *layout = new QHBoxLayout(this, KDialog::marginHint(), KDialog::spacingHint()); mPhotoWidget = new ImageBaseWidget(KABC::Addressee::photoLabel(), this); layout->addWidget(mPhotoWidget); mLogoWidget = new ImageBaseWidget(KABC::Addressee::logoLabel(), this); layout->addWidget(mLogoWidget); connect(mPhotoWidget, SIGNAL(changed()), SLOT(setModified())); connect(mLogoWidget, SIGNAL(changed()), SLOT(setModified())); } void ImageWidget::loadContact(KABC::Addressee *addr) { mPhotoWidget->setImage(addr->photo()); mLogoWidget->setImage(addr->logo()); } void ImageWidget::storeContact(KABC::Addressee *addr) { addr->setPhoto(mPhotoWidget->image()); addr->setLogo(mLogoWidget->image()); } void ImageWidget::setReadOnly(bool readOnly) { mPhotoWidget->setReadOnly(readOnly); mLogoWidget->setReadOnly(readOnly); } #include "imagewidget.moc"
[ "serghei.amelian@gmail.com" ]
serghei.amelian@gmail.com
a375c04da50323ced9e99f91c5838f65212172fe
baf41bc3fdf5b6e4570fa13bdec1335a4731a015
/src/lib/fidl/c/coding_tables_tests/coding_tables_tests.cc
51ecf3c70424e1f57f6cc7ac8b1fedd88a212f33
[ "BSD-3-Clause" ]
permissive
china-liweihong/fuchsia
0e312d0bef598480e2c4062184e1a96d1bfbf7ce
a19257f0eed5458370e47f377dc24486794abec0
refs/heads/master
2022-07-03T10:25:01.096192
2020-05-07T07:31:54
2020-05-07T07:31:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,920
cc
// Copyright 2019 The Fuchsia Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <lib/fidl/internal.h> #include <fidl/test/example/codingtables/c/fidl.h> #include <zxtest/zxtest.h> TEST(SomeStruct, CodingTable) { const fidl_type& type = fidl_test_example_codingtables_CodingSomeStructRequestTable; ASSERT_EQ(kFidlTypeStruct, type.type_tag); const FidlCodedStruct& request_struct = type.coded_struct; ASSERT_EQ(1, request_struct.field_count); ASSERT_STR_EQ("fidl.test.example.codingtables/CodingSomeStructRequest", request_struct.name); const FidlStructField& some_struct_field = request_struct.fields[0]; // Transaction message header is 16 bytes. ASSERT_EQ(16, some_struct_field.offset); const fidl_type& some_struct_type = *some_struct_field.type; ASSERT_EQ(kFidlTypeStruct, some_struct_type.type_tag); const FidlCodedStruct& some_struct_table = some_struct_type.coded_struct; ASSERT_STR_EQ("fidl.test.example.codingtables/SomeStruct", some_struct_table.name); // Every field (including primitives without padding) has a coding table generated for it. ASSERT_EQ(2, some_struct_table.field_count); ASSERT_EQ(nullptr, some_struct_table.fields[0].type); ASSERT_EQ(nullptr, some_struct_table.fields[1].type); // When |type| is nullptr, |offset| stores the starting offset of the padding. ASSERT_EQ(1, some_struct_table.fields[0].offset); ASSERT_EQ(3, some_struct_table.fields[0].padding); ASSERT_EQ(8, some_struct_table.fields[1].offset); ASSERT_EQ(0, some_struct_table.fields[1].padding); } TEST(MyXUnion, CodingTableWhenNullable) { const fidl_type& type = v1_fidl_test_example_codingtables_CodingMyXUnionRequestTable; ASSERT_EQ(kFidlTypeStruct, type.type_tag); const FidlCodedStruct& request_struct = type.coded_struct; ASSERT_EQ(1, request_struct.field_count); ASSERT_STR_EQ("fidl.test.example.codingtables/CodingMyXUnionRequest", request_struct.name); const FidlStructField& my_xunion_field = request_struct.fields[0]; ASSERT_EQ(16, my_xunion_field.offset); const fidl_type& my_xunion_type = *my_xunion_field.type; ASSERT_EQ(kFidlTypeXUnion, my_xunion_type.type_tag); const FidlCodedXUnion& my_xunion_table = my_xunion_type.coded_xunion; // Please keep these assertions in the same order as FidlCodedXUnion's member variables. ASSERT_EQ(2, my_xunion_table.field_count); ASSERT_EQ(&fidl_internal_kBoolTable, my_xunion_table.fields[0].type); ASSERT_EQ(&fidl_internal_kInt32Table, my_xunion_table.fields[1].type); ASSERT_EQ(kFidlNullability_Nullable, my_xunion_table.nullable); ASSERT_STR_EQ("fidl.test.example.codingtables/MyXUnion", my_xunion_table.name); ASSERT_EQ(kFidlStrictness_Flexible, my_xunion_type.coded_xunion.strictness); } TEST(MyStrictXUnion, CodingTableWhenNullable) { const fidl_type& type = v1_fidl_test_example_codingtables_CodingMyStrictXUnionRequestTable; ASSERT_EQ(kFidlTypeStruct, type.type_tag); const FidlCodedStruct& request_struct = type.coded_struct; ASSERT_EQ(1, request_struct.field_count); ASSERT_STR_EQ("fidl.test.example.codingtables/CodingMyStrictXUnionRequest", request_struct.name); const FidlStructField& my_strict_xunion_field = request_struct.fields[0]; ASSERT_EQ(16, my_strict_xunion_field.offset); const fidl_type& my_strict_xunion_type = *my_strict_xunion_field.type; ASSERT_EQ(kFidlTypeXUnion, my_strict_xunion_type.type_tag); const FidlCodedXUnion& my_strict_xunion_table = my_strict_xunion_type.coded_xunion; // Please keep these assertions in the same order as FidlCodedXUnion's member variables. ASSERT_EQ(2, my_strict_xunion_table.field_count); ASSERT_EQ(&fidl_internal_kBoolTable, my_strict_xunion_table.fields[0].type); ASSERT_EQ(&fidl_internal_kInt32Table, my_strict_xunion_table.fields[1].type); ASSERT_EQ(kFidlNullability_Nullable, my_strict_xunion_table.nullable); ASSERT_STR_EQ("fidl.test.example.codingtables/MyStrictXUnion", my_strict_xunion_table.name); ASSERT_EQ(kFidlStrictness_Strict, my_strict_xunion_type.coded_xunion.strictness); } TEST(MyTable, CodingTable) { const fidl_type& type = fidl_test_example_codingtables_CodingVectorOfMyTableRequestTable; ASSERT_EQ(kFidlTypeStruct, type.type_tag); const FidlCodedStruct& request_struct = type.coded_struct; ASSERT_EQ(1, request_struct.field_count); ASSERT_STR_EQ("fidl.test.example.codingtables/CodingVectorOfMyTableRequest", request_struct.name); const FidlStructField& vector_of_my_table_field = request_struct.fields[0]; ASSERT_EQ(16, vector_of_my_table_field.offset); const fidl_type& vector_of_my_table_type = *vector_of_my_table_field.type; ASSERT_EQ(kFidlTypeVector, vector_of_my_table_type.type_tag); const FidlCodedVector& table_vector = vector_of_my_table_type.coded_vector; const fidl_type& table_type = *table_vector.element; ASSERT_EQ(kFidlTypeTable, table_type.type_tag); const FidlCodedTable& coded_table = table_type.coded_table; ASSERT_EQ(4, coded_table.field_count); // The ordering in the coding table is |foo|, |bar|, |baz|, and finally // |qux|, i.e. following ordinal order. const FidlTableField& field_0 = coded_table.fields[0]; ASSERT_EQ(1, field_0.ordinal); ASSERT_EQ(&fidl_internal_kBoolTable, field_0.type); const FidlTableField& field_1 = coded_table.fields[1]; ASSERT_EQ(2, field_1.ordinal); ASSERT_EQ(&fidl_internal_kInt32Table, field_1.type); const FidlTableField& field_2 = coded_table.fields[2]; ASSERT_EQ(4, field_2.ordinal); ASSERT_EQ(kFidlTypeArray, field_2.type->type_tag); const FidlTableField& field_3 = coded_table.fields[3]; ASSERT_EQ(5, field_3.ordinal); ASSERT_EQ(kFidlTypeVector, field_3.type->type_tag); } TEST(MyXUnion, CodingTableWhenNonnullable) { const fidl_type& type = v1_fidl_test_example_codingtables_CodingVectorOfMyXUnionRequestTable; ASSERT_EQ(kFidlTypeStruct, type.type_tag); const FidlCodedStruct& request_struct = type.coded_struct; ASSERT_EQ(1, request_struct.field_count); ASSERT_STR_EQ("fidl.test.example.codingtables/CodingVectorOfMyXUnionRequest", request_struct.name); const FidlStructField& vector_of_my_xunion_field = request_struct.fields[0]; ASSERT_EQ(16, vector_of_my_xunion_field.offset); const fidl_type& vector_of_my_xunion_type = *vector_of_my_xunion_field.type; ASSERT_EQ(kFidlTypeVector, vector_of_my_xunion_type.type_tag); const FidlCodedVector& xunion_vector = vector_of_my_xunion_type.coded_vector; const fidl_type& xunion_type = *xunion_vector.element; ASSERT_EQ(kFidlTypeXUnion, xunion_type.type_tag); const FidlCodedXUnion& coded_xunion = xunion_type.coded_xunion; ASSERT_EQ(kFidlNullability_Nonnullable, coded_xunion.nullable); ASSERT_EQ(kFidlStrictness_Flexible, coded_xunion.strictness); } TEST(MyStrictXUnion, CodingTableWhenNonnullable) { const fidl_type& type = v1_fidl_test_example_codingtables_CodingVectorOfMyStrictXUnionRequestTable; ASSERT_EQ(kFidlTypeStruct, type.type_tag); const FidlCodedStruct& request_struct = type.coded_struct; ASSERT_EQ(1, request_struct.field_count); ASSERT_STR_EQ("fidl.test.example.codingtables/CodingVectorOfMyStrictXUnionRequest", request_struct.name); const FidlStructField& vector_of_my_xunion_field = request_struct.fields[0]; ASSERT_EQ(16, vector_of_my_xunion_field.offset); const fidl_type& vector_of_my_xunion_type = *vector_of_my_xunion_field.type; ASSERT_EQ(kFidlTypeVector, vector_of_my_xunion_type.type_tag); const FidlCodedVector& xunion_vector = vector_of_my_xunion_type.coded_vector; const fidl_type& xunion_type = *xunion_vector.element; ASSERT_EQ(kFidlTypeXUnion, xunion_type.type_tag); const FidlCodedXUnion& coded_xunion = xunion_type.coded_xunion; ASSERT_EQ(kFidlNullability_Nonnullable, coded_xunion.nullable); ASSERT_EQ(kFidlStrictness_Strict, coded_xunion.strictness); } TEST(MyBits, CodingTable) { const fidl_type& type = fidl_test_example_codingtables_CodingMyBitsRequestTable; ASSERT_EQ(kFidlTypeStruct, type.type_tag); const FidlCodedStruct& request_struct = type.coded_struct; ASSERT_EQ(1, request_struct.field_count); ASSERT_STR_EQ("fidl.test.example.codingtables/CodingMyBitsRequest", request_struct.name); const FidlStructField& my_bits_field = request_struct.fields[0]; ASSERT_EQ(16, my_bits_field.offset); const fidl_type& my_bits_type = *my_bits_field.type; ASSERT_EQ(kFidlTypeBits, my_bits_type.type_tag); const FidlCodedBits& my_bits_table = my_bits_type.coded_bits; ASSERT_EQ(kFidlCodedPrimitive_Uint8, my_bits_table.underlying_type); ASSERT_EQ(0x1u | 0x10u, my_bits_table.mask); } TEST(MyEnum, CodingTable) { const fidl_type& type = fidl_test_example_codingtables_CodingMyEnumRequestTable; ASSERT_EQ(kFidlTypeStruct, type.type_tag); const FidlCodedStruct& request_struct = type.coded_struct; ASSERT_EQ(1, request_struct.field_count); ASSERT_STR_EQ("fidl.test.example.codingtables/CodingMyEnumRequest", request_struct.name); const FidlStructField& my_enum_field = request_struct.fields[0]; ASSERT_EQ(16, my_enum_field.offset); const fidl_type& my_enum_type = *my_enum_field.type; ASSERT_EQ(kFidlTypeEnum, my_enum_type.type_tag); const FidlCodedEnum& my_enum_table = my_enum_type.coded_enum; ASSERT_EQ(kFidlCodedPrimitive_Uint32, my_enum_table.underlying_type); } // This ensures that the number collision tests compile. (See FIDL-448). // These tests ensure that the name mangling rules used in the generator avoid certain types // of collisions that appeared in earlier versions (e.g. number of elements would merge with // other content). TEST(NumberCollision, CodingTable) { const fidl_type& type = fidl_test_example_codingtables_CodingNumberCollisionRequestTable; ASSERT_EQ(kFidlTypeStruct, type.type_tag); const FidlCodedStruct& request_struct = type.coded_struct; ASSERT_EQ(1, request_struct.field_count); ASSERT_STR_EQ("fidl.test.example.codingtables/CodingNumberCollisionRequest", request_struct.name); const FidlStructField& number_collision_field = request_struct.fields[0]; // Transaction message header is 16 bytes. ASSERT_EQ(16, number_collision_field.offset); const fidl_type& number_collision_type = *number_collision_field.type; ASSERT_EQ(kFidlTypeStruct, number_collision_type.type_tag); const FidlCodedStruct& number_collision_table = number_collision_type.coded_struct; ASSERT_STR_EQ("fidl.test.example.codingtables/NumberCollision", number_collision_table.name); ASSERT_EQ(6, number_collision_table.field_count); } TEST(ForeignXUnions, CodingTable) { const fidl_type& req_type = v1_fidl_test_example_codingtables_CodingForeignXUnionsRequestTable; ASSERT_EQ(kFidlTypeStruct, req_type.type_tag); const FidlCodedStruct& request_struct = req_type.coded_struct; ASSERT_EQ(1, request_struct.field_count); ASSERT_STR_EQ("fidl.test.example.codingtables/CodingForeignXUnionsRequest", request_struct.name); const FidlStructField& tx_field = request_struct.fields[0]; const fidl_type& tx_type = *tx_field.type; ASSERT_EQ(kFidlTypeXUnion, tx_type.type_tag); const FidlCodedXUnion& tx_table = tx_type.coded_xunion; ASSERT_STR_EQ("fidl.test.example.codingtablesdeps/MyXUnionA", tx_table.name); ASSERT_EQ(kFidlNullability_Nonnullable, tx_table.nullable); ASSERT_EQ(2, tx_table.field_count); const fidl_type& resp_type = v1_fidl_test_example_codingtables_CodingForeignXUnionsResponseTable; ASSERT_EQ(kFidlTypeStruct, resp_type.type_tag); const FidlCodedStruct& response_struct = resp_type.coded_struct; ASSERT_EQ(1, response_struct.field_count); ASSERT_STR_EQ("fidl.test.example.codingtables/CodingForeignXUnionsResponse", response_struct.name); const FidlStructField& rx_field = response_struct.fields[0]; const fidl_type& rx_type = *rx_field.type; ASSERT_EQ(kFidlTypeXUnion, rx_type.type_tag); const FidlCodedXUnion& rx_table = rx_type.coded_xunion; ASSERT_STR_EQ("fidl.test.example.codingtablesdeps/MyXUnionA", rx_table.name); ASSERT_EQ(kFidlNullability_Nullable, rx_table.nullable); ASSERT_EQ(2, rx_table.field_count); } TEST(AltTypes, CodingTable) { // There are extern declarations here, since those declarations are not exposed by the C coding // table headers, which expose the coding tables for method requests & responses only. extern const fidl_type_t fidl_test_example_codingtables_MyUnionContainerTable; extern const fidl_type_t v1_fidl_test_example_codingtables_MyUnionContainerTable; extern const fidl_type_t fidl_test_example_codingtables_MyUnionTable; extern const fidl_type_t v1_fidl_test_example_codingtables_MyUnionTable; extern const fidl_type_t fidl_test_example_codingtables_MyXUnionTable; extern const fidl_type_t v1_fidl_test_example_codingtables_MyXUnionTable; const FidlCodedStruct& old_struct = fidl_test_example_codingtables_MyUnionContainerTable.coded_struct; ASSERT_STR_EQ("fidl.test.example.codingtables/MyUnionContainer", old_struct.name); ASSERT_EQ(5, old_struct.field_count); ASSERT_EQ(0, old_struct.fields[0].offset); ASSERT_EQ(8, old_struct.fields[1].offset); ASSERT_EQ(48, old_struct.fields[2].offset); ASSERT_EQ(88, old_struct.fields[3].offset); ASSERT_EQ(104, old_struct.fields[4].offset); ASSERT_EQ(&v1_fidl_test_example_codingtables_MyUnionContainerTable, old_struct.alt_type); const FidlCodedStruct& v1_struct = old_struct.alt_type->coded_struct; ASSERT_STR_EQ("fidl.test.example.codingtables/MyUnionContainer", v1_struct.name); ASSERT_EQ(&fidl_test_example_codingtables_MyUnionContainerTable, v1_struct.alt_type); ASSERT_EQ(5, v1_struct.field_count); ASSERT_EQ(0, v1_struct.fields[0].offset); ASSERT_EQ(24, v1_struct.fields[1].offset); ASSERT_EQ(144, v1_struct.fields[2].offset); ASSERT_EQ(264, v1_struct.fields[3].offset); ASSERT_EQ(280, v1_struct.fields[4].offset); ASSERT_EQ(&fidl_test_example_codingtables_MyUnionTable, old_struct.fields[0].type); const FidlCodedUnion& old_union = old_struct.fields[0].type->coded_union; ASSERT_STR_EQ("fidl.test.example.codingtables/MyUnion", old_union.name); ASSERT_EQ(4, old_union.data_offset); ASSERT_EQ(8, old_union.size); ASSERT_EQ(&v1_fidl_test_example_codingtables_MyUnionTable, old_union.alt_type); const FidlCodedXUnion& v1_union = old_union.alt_type->coded_xunion; ASSERT_STR_EQ("fidl.test.example.codingtables/MyUnion", v1_union.name); ASSERT_EQ(&fidl_test_example_codingtables_MyUnionTable, v1_union.alt_type); const FidlCodedArray& old_array = old_struct.fields[1].type->coded_array; ASSERT_EQ(&fidl_test_example_codingtables_MyUnionTable, old_array.element); ASSERT_EQ(40, old_array.array_size); ASSERT_EQ(8, old_array.element_size); const FidlCodedArray& v1_array = old_array.alt_type->coded_array; ASSERT_EQ(&v1_fidl_test_example_codingtables_MyUnionTable, v1_array.element); ASSERT_EQ(&old_array, &v1_array.alt_type->coded_array); ASSERT_EQ(120, v1_array.array_size); ASSERT_EQ(24, v1_array.element_size); const FidlCodedArray& old_optional_array = old_struct.fields[2].type->coded_array; ASSERT_EQ(kFidlTypeUnionPointer, old_optional_array.element->type_tag); ASSERT_EQ(&fidl_test_example_codingtables_MyUnionTable.coded_union, old_optional_array.element->coded_union_pointer.union_type); ASSERT_EQ(40, old_optional_array.array_size); ASSERT_EQ(8, old_optional_array.element_size); const FidlCodedArray& v1_optional_array = old_optional_array.alt_type->coded_array; ASSERT_EQ(kFidlTypeXUnion, v1_optional_array.element->type_tag); ASSERT_EQ(&old_optional_array, &v1_optional_array.alt_type->coded_array); ASSERT_EQ(120, v1_optional_array.array_size); ASSERT_EQ(24, v1_optional_array.element_size); const FidlCodedVector& old_vector = old_struct.fields[3].type->coded_vector; ASSERT_EQ(&fidl_test_example_codingtables_MyUnionTable, old_vector.element); ASSERT_EQ(7, old_vector.max_count); ASSERT_EQ(8, old_vector.element_size); const FidlCodedVector& v1_vector = old_vector.alt_type->coded_vector; ASSERT_EQ(&old_vector, &v1_vector.alt_type->coded_vector); ASSERT_EQ(&v1_fidl_test_example_codingtables_MyUnionTable, v1_vector.element); ASSERT_EQ(7, v1_vector.max_count); ASSERT_EQ(24, v1_vector.element_size); ASSERT_EQ(&fidl_test_example_codingtables_MyXUnionTable, old_struct.fields[4].type); const FidlCodedUnion& old_xunion = old_struct.fields[4].type->coded_union; ASSERT_STR_EQ("fidl.test.example.codingtables/MyXUnion", old_xunion.name); ASSERT_EQ(&v1_fidl_test_example_codingtables_MyXUnionTable, old_xunion.alt_type); ASSERT_EQ(&v1_fidl_test_example_codingtables_MyXUnionTable, v1_struct.fields[4].type); const FidlCodedXUnion& v1_xunion = v1_struct.fields[4].type->coded_xunion; ASSERT_STR_EQ("fidl.test.example.codingtables/MyXUnion", v1_xunion.name); ASSERT_EQ(&fidl_test_example_codingtables_MyXUnionTable, v1_xunion.alt_type); }
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
27c19b1b4e7884a8e9807275c23a454f9bc7252c
627c1336d99f3a3bae67b9898b8206c0b9f8ae83
/src/sa/LargestEmptySpaceShape.h
21cea809c806118c030c835d6e5d57c673a3c31d
[ "MIT" ]
permissive
areong/CornerMacroPlacer
e5e80cdc3e97527f634310002659f614b8ab199e
da6841c110a829b33bd705cda13fb371ca369007
refs/heads/master
2021-01-21T04:39:05.934464
2019-10-16T10:53:57
2019-10-16T10:53:57
49,002,459
4
0
null
null
null
null
UTF-8
C++
false
false
411
h
#ifndef SA_LARGESTEMPTYSPACESHAPE_H_ #define SA_LARGESTEMPTYSPACESHAPE_H_ #include "sa/CostFunction.h" /* Assume state is a FloorplanState. */ class LargestEmptySpaceShape : public CostFunction { public: LargestEmptySpaceShape(); ~LargestEmptySpaceShape(); /* Return 1 - VerticalTilePlane::calculateLargestEmptySpaceDensity(). */ double calculateCost(State *state) override; }; #endif
[ "areong6378@gmail.com" ]
areong6378@gmail.com
552ad21b22b77666c42ca66b87d7538acb77a723
372e4adc8d3a9e1c118b45951d82f56f15e89383
/micro_controllers/pic/projects/pic_based_ automatic_Street_light_ project/ir_module_use _led_on_and_off.cp
e077febb6935abd4962a36fa59140f6fbf95a361
[]
no_license
infocelab/embedded-projects
d190a23b9254b272643eb1a13259ae079ffa934d
ba4d099538df964feac0ee7cc7af10b3271db7b0
refs/heads/master
2021-01-12T18:09:01.718780
2015-08-18T13:36:18
2015-08-18T13:36:18
41,009,390
1
0
null
null
null
null
UTF-8
C++
false
false
612
cp
#line 1 "E:/celabcode/Embedded-Projects/project_codes/pic/pic_based_ automatic_Street_light_ project/ir_module_use _led_on_and_off.c" void main() { TRISD = 0xFF; TRISC = 0x00; RC0_bit=1; RC1_bit=0; RC2_bit=0; RC3_bit=0; RC4_bit=0; while (1) { if (RD0_bit == 1) { RC1_bit=1; RC0_bit=0; } else if (RD1_bit == 1) { RC2_bit=1; RC1_bit=0; } else if (RD2_bit == 1) { RC3_bit=1; RC2_bit=0; } else if (RD3_bit == 1) { RC4_bit=1; RC3_bit=0; } else if (RD4_bit == 1) { RC4_bit=0; RC0_bit=1; } Delay_ms(5); } }
[ "celab2010@gmail.com" ]
celab2010@gmail.com
b57f46e3b03b708e969760611f7cafa794d55a53
1ec6e6eb7782a36e0b32e616662ee2c2b00fe448
/src/qt/receivecoinsdialog.h
453f1a240d54c0721e27059ba6c85c1e201d5722
[ "MIT" ]
permissive
Voyacoin/Voyacoin
4e804de68fde47a5f98990f7e80a22f39d871259
4030c52983749f0e0ff3a20c0d67ced3f5b35b14
refs/heads/master
2021-03-12T23:40:55.998354
2015-02-22T00:20:42
2015-02-22T00:20:42
31,138,980
0
0
null
null
null
null
UTF-8
C++
false
false
1,895
h
// Copyright (c) 2011-2014 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef VOYACOIN_QT_RECEIVECOINSDIALOG_H #define VOYACOIN_QT_RECEIVECOINSDIALOG_H #include "guiutil.h" #include <QDialog> #include <QHeaderView> #include <QItemSelection> #include <QKeyEvent> #include <QMenu> #include <QPoint> #include <QVariant> class OptionsModel; class WalletModel; namespace Ui { class ReceiveCoinsDialog; } QT_BEGIN_NAMESPACE class QModelIndex; QT_END_NAMESPACE /** Dialog for requesting payment of voyacoins */ class ReceiveCoinsDialog : public QDialog { Q_OBJECT public: enum ColumnWidths { DATE_COLUMN_WIDTH = 130, LABEL_COLUMN_WIDTH = 120, AMOUNT_MINIMUM_COLUMN_WIDTH = 160, MINIMUM_COLUMN_WIDTH = 130 }; explicit ReceiveCoinsDialog(QWidget *parent = 0); ~ReceiveCoinsDialog(); void setModel(WalletModel *model); public slots: void clear(); void reject(); void accept(); protected: virtual void keyPressEvent(QKeyEvent *event); private: Ui::ReceiveCoinsDialog *ui; GUIUtil::TableViewLastColumnResizingFixer *columnResizingFixer; WalletModel *model; QMenu *contextMenu; void copyColumnToClipboard(int column); virtual void resizeEvent(QResizeEvent *event); private slots: void on_receiveButton_clicked(); void on_showRequestButton_clicked(); void on_removeRequestButton_clicked(); void on_recentRequestsView_doubleClicked(const QModelIndex &index); void recentRequestsView_selectionChanged(const QItemSelection &selected, const QItemSelection &deselected); void updateDisplayUnit(); void showMenu(const QPoint &point); void copyLabel(); void copyMessage(); void copyAmount(); }; #endif // VOYACOIN_QT_RECEIVECOINSDIALOG_H
[ "dev@voyacoin.com" ]
dev@voyacoin.com
2d1804eb0ec50f185151f1bce95a7ccb20daf564
c8f889100deff0b94dc4a4cc660c6a488ca61620
/src/movement/humanoid_model/src/HumanoidModelNode.cpp
d2aa0c58d37c6058e18b14c92c42b898f8cced6e
[]
no_license
victoraavila/robotica_ufu
9039b4817a3fb5b12d12a72b51ac6309ee74a3bb
e7248125d35a133aa7d98098ed6e54eb67b7f98a
refs/heads/main
2023-08-19T08:26:05.518097
2021-10-14T03:36:49
2021-10-14T03:36:49
369,691,084
0
0
null
null
null
null
UTF-8
C++
false
false
21,268
cpp
#include "humanoid_model/HumanoidModelNode.h" HumanoidModelNode::HumanoidModelNode(ros::NodeHandle nh_, ros::NodeHandle nh_private_,ros::NodeHandle nh_private_walk_,ros::NodeHandle nh_private_movecreator_) : nh(nh_) , nh_private(nh_private_) , nh_private_walk(nh_private_walk_),nh_private_movecreator(nh_private_movecreator_) { if (!nh_private.getParam ("dt", dt)) dt = 0.07; //Publisher Stuff //jointStateTopic = nh.advertise<JointStateMsg>("humanoid_model/jointState", 1000); endEffStateTopic = nh.advertise<EndEffStateMsg>("humanoid_model/endEffState", 1000); humanoidPropsTopic = nh.advertise<movement_msgs::HumanoidPropertiesMsg>("humanoid_model/humanoid_properties", 1000); motorCommPub = nh.advertise<movement_msgs::MotorRequestMsg>("motor_comm/request",1000); //Subscriber Stuff endEffStateSubPtr.reset(new EndEffStateSub(nh,"humanoid_model/endEffState",1)); endEffStateSubPtr->registerCallback(&HumanoidModelNode::endEffStateCallback, this); humanoidControlSubPtr.reset(new HumanoidControlSub(nh,"humanoid_control/cmd",1)); humanoidControlSubPtr->registerCallback(&HumanoidModelNode::humanoidControlCallback, this); //Service Stuff mapCli = nh.serviceClient<movement_msgs::LoadMapConfigsSrv>("humanoid_loadmap/load"); humanoidPropsSrv = nh.advertiseService("humanoid_model/properties",&HumanoidModelNode::humanoidPropertiesSrv,this); updateJointState = false; zmpPoint = Eigen::Vector3d(0,0,0); comPoint = Eigen::Vector3d(0,0,0); footComPoint = Eigen::Vector3d(0,0,0); trunk = BodyPointState(TRUNK); loadMap(); loadRobotParams(); //Dynamic Reconfigure Server config_server.reset(new HumanoidModelConfigServer(nh_private_walk)); HumanoidModelConfigServer::CallbackType f = boost::bind(&HumanoidModelNode::reconfigCallback, this, _1, _2); config_server->setCallback(f); config_server_mov.reset(new HumanoidModelMoveCreatorConfigServer(nh_private_movecreator)); HumanoidModelMoveCreatorConfigServer::CallbackType f_mov = boost::bind(&HumanoidModelNode::reconfigMoveCreatorCallback, this, _1, _2); config_server_mov->setCallback(f_mov); //Run Callback runTimer = nh.createTimer(ros::Duration(dt), &HumanoidModelNode::runCallBack,this); } void HumanoidModelNode::runCallBack(const ros::TimerEvent&) { if(modelMoveCreatorMsg.on == true) { robot.setIKRef(Eigen::Vector3d(0,0,0)); rLegBP.pos = Eigen::Vector3d(modelMoveCreatorMsg.rFootX,-modelMoveCreatorMsg.rFootY - robot.poseParams[P_POSE_LEG_OPEN_REF],modelMoveCreatorMsg.rFootZ - robot.poseParams[P_POSE_LEG_SQUAT_REF]); lLegBP.pos = Eigen::Vector3d(modelMoveCreatorMsg.lFootX,modelMoveCreatorMsg.lFootY + robot.poseParams[P_POSE_LEG_OPEN_REF],modelMoveCreatorMsg.lFootZ - robot.poseParams[P_POSE_LEG_SQUAT_REF]); rLegBP.rot = Eigen::Vector3d((modelMoveCreatorMsg.rFootRX*PI)/180.,(modelMoveCreatorMsg.rFootRY*PI)/180.,(modelMoveCreatorMsg.rFootRZ*PI)/180.); lLegBP.rot = Eigen::Vector3d((modelMoveCreatorMsg.lFootRX*PI)/180.,(modelMoveCreatorMsg.lFootRY*PI)/180.,(modelMoveCreatorMsg.lFootRZ*PI)/180.); std::vector<BodyPointState> bpVec; bpVec.push_back(rLegBP); bpVec.push_back(lLegBP); robot.setEndEffState(bpVec); robot.qState.pos[map.map(LARM0,ROBOT_IDS)] = -(modelMoveCreatorMsg.lArm0*PI)/180.; robot.qState.pos[map.map(LARM1,ROBOT_IDS)] = (modelMoveCreatorMsg.lArm1*PI)/180.; robot.qState.pos[map.map(LARM2,ROBOT_IDS)] = -(modelMoveCreatorMsg.lArm2*PI)/180.; robot.qState.pos[map.map(RARM0,ROBOT_IDS)] = (modelMoveCreatorMsg.rArm0*PI)/180.; robot.qState.pos[map.map(RARM1,ROBOT_IDS)] = -(modelMoveCreatorMsg.rArm1*PI)/180.; robot.qState.pos[map.map(RARM2,ROBOT_IDS)] = (modelMoveCreatorMsg.rArm2*PI)/180.; JointState qState; qState = robot.qState; qState.source = CONST_VEL; for(int i = 0; i < int(qState.vel.size());i++) { qState.vel[i] = 0.3; } qState.dt = 3; if(modelMoveCreatorMsg.toJointState) sendJointState(qState,dt); if(modelMoveCreatorMsg.toMotorState) sendJointState(qState,dt); setRobotFlag = true; } else { if(setRobotFlag) { robot.comOverride.pos(0) = comX; robot.comOverride.pos(1) = comY; robot.comOverride.pos(2) = comZ; setRobot(squat,open,incl,sideIncl,footIncl); } if(calcCOM) { } if(calcIK) { double arm0_ = 0; if(humanoidControlMsg.ctrl_flag == true) { /*if(humanoidControlMsg.torso_ctrl_flag == true) { //TRUNK trunk = robot.endEffectors[TRUNK]; trunk.rot = Eigen::Vector3d(trunk.rot(0) + (humanoidControlMsg.torsoAddX/180.)*PI,trunk.rot(1) + (humanoidControlMsg.torsoAddY/180.)*PI,trunk.rot(2) + (humanoidControlMsg.torsoAddZ/180.)*PI); if(trunk.rot(1) > (50./180.)*PI ) { ROS_WARN("TRUNK_ROT_Y SATURATED: %4.3f",(trunk.rot(1)/PI)*180.); trunk.rot(1) = (50./180.)*PI; } else if(trunk.rot(1) < (-50./180.)*PI ) { ROS_WARN("TRUNK_ROT_Y SATURATED: %4.3f",(trunk.rot(1)/PI)*180.); trunk.rot(1) = (-50./180.)*PI; } vecBody.push_back(trunk); } else { trunk.rot = Eigen::Vector3d((sideIncl/180.)*PI,(incl/180.)*PI,0); vecBody.push_back(trunk); }*/ if(humanoidControlMsg.arm_ctrl_flag == true) { //ARM arm0_ = ((arm0 + humanoidControlMsg.armAdd)/180.)*PI; if(arm0_ > (50./180.)*PI ) { ROS_WARN("ARM0 SATURATED: %4.3f",(arm0_/PI)*180.); arm0_ = (50./180.)*PI; } else if(arm0_ < (-50./180.)*PI ) { ROS_WARN("ARM0 SATURATED: %4.3f",(arm0_/PI)*180.); arm0_ = (-50./180.)*PI; } } else { arm0_ = (arm0/180.)*PI; } } else { arm0_ = (arm0/180.)*PI; } if(!vecBodyBuff.empty()) { if(humanoidControlMsg.foot_ctrl_flag) footIncl = humanoidControlMsg.slope; else footIncl = 0; vecBody[0].rot(1) = vecBodyBuff[0].rot(1) + (footIncl/180.)*PI; vecBody[1].rot(1) = vecBodyBuff[1].rot(1) + (footIncl/180.)*PI; vecBody[2].rot = (vecBodyBuff[2].rot/180.)*PI + Eigen::Vector3d((sideIncl/180.)*PI,(incl/180.)*PI,0); /*double rPosX = 0.05*(humanoidControlMsg.rFootFac.pos.x)/2. + 1.0; double rPosY = 0.05*(humanoidControlMsg.rFootFac.pos.y)/2. + 1.0; double rPosZ = 0.05*(humanoidControlMsg.rFootFac.pos.z)/2. + 1.0; double rRotX = 0.1*(humanoidControlMsg.rFootFac.rot.x)/2.; double rRotY = 0.1*(humanoidControlMsg.rFootFac.rot.y)/2.; double rRotZ = 0.1*(humanoidControlMsg.rFootFac.rot.z)/2.; double lPosX = 0.05*(humanoidControlMsg.lFootFac.pos.x)/2. + 1.0; double lPosY = 0.05*(humanoidControlMsg.lFootFac.pos.y)/2. + 1.0; double lPosZ = 0.05*(humanoidControlMsg.lFootFac.pos.z)/2. + 1.0; double lRotX = 0.1*(humanoidControlMsg.lFootFac.rot.x)/2.; double lRotY = 0.1*(humanoidControlMsg.lFootFac.rot.y)/2.; double lRotZ = 0.1*(humanoidControlMsg.lFootFac.rot.z)/2.; vecBody[0].pos = Eigen::Vector3d(vecBody[0].pos(0)*rPosX,vecBody[0].pos(1)*rPosY,vecBody[0].pos(2)*rPosZ); vecBody[0].rot = Eigen::Vector3d(rRotX,rRotY,rRotZ); vecBody[1].pos = Eigen::Vector3d(vecBody[1].pos(0)*lPosX,vecBody[1].pos(1)*lPosY,vecBody[1].pos(2)*lPosZ); vecBody[1].rot = Eigen::Vector3d(lRotX,lRotY,lRotZ);*/ //vecBody[0].pos = Eigen::Vector3d(vecBody[0].pos(0)*humanoidControlMsg.rFootFac.pos.x,vecBody[0].pos(1)*humanoidControlMsg.rFootFac.pos.y,vecBody[0].pos(2)*humanoidControlMsg.rFootFac.pos.z); //vecBody[1].pos = Eigen::Vector3d(vecBody[1].pos(0)*humanoidControlMsg.lFootFac.pos.x,vecBody[1].pos(1)*humanoidControlMsg.lFootFac.pos.y,vecBody[1].pos(2)*humanoidControlMsg.lFootFac.pos.z); robot.setEndEffState(vecBody); robot.setArmParams(arm0_,(arm1/180.)*PI,(arm2/180.)*PI); sendJointState(robot.qState,dt); } } } } void HumanoidModelNode::sendJointState(const JointState &jointState,const double &dt) { if(updateJointState) { /* TODO: Verificar se não é melhor deixar isso ser enviado em outro local * Transformar o HumanoidModel em um serviço de Cinemática inversa mais genérico */ movement_msgs::MotorRequestMsg request; request.writeCommand = "position_velocity"; for(int i = 0; i < int(jointState.pos.size())-1;i++) { request.data.push_back(jointState.pos(i)); } motorCommPub.publish(request); } } void HumanoidModelNode::endEffStateCallback(const movement_msgs::EndEffStateMsgPtr &endEffState) { updateJointState = true; if(calcIK) { vecBodyBuff.clear(); vecBodyBuff.resize(endEffState->endEff.size()); vecBody.clear(); vecBody.resize(endEffState->endEff.size()); for(int i = 0; i < int(endEffState->endEff.size());i++) { tf::pointMsgToEigen(endEffState->endEff[i].pos,vecBodyBuff[i].pos); tf::pointMsgToEigen(endEffState->endEff[i].vel,vecBodyBuff[i].vel); tf::pointMsgToEigen(endEffState->endEff[i].acc,vecBodyBuff[i].acc); tf::pointMsgToEigen(endEffState->endEff[i].rot,vecBodyBuff[i].rot); vecBodyBuff[i].type = endEffState->endEff[i].type; vecBodyBuff[i].flag = endEffState->endEff[i].flag; vecBodyBuff[i].dt = endEffState->endEff[i].dt; vecBody[i] = vecBodyBuff[i]; } } } void HumanoidModelNode::humanoidControlCallback(const movement_msgs::HumanoidControlMsgPtr &humanoidControl) { this->humanoidControlMsg = *humanoidControl; } void HumanoidModelNode::loadRobotParams() { robot = HumanoidModel(); robot.map = map.map; //Parameter Server //Static Params if (!nh_private.getParam ("P_LEG_D0", robot.legParams[P_LEG_D0])) ROS_FATAL("[HUMANOID_MODEL] P_LEG_D0 param not found"); if (!nh_private.getParam ("P_LEG_D1", robot.legParams[P_LEG_D1])) ROS_FATAL("[HUMANOID_MODEL] P_LEG_D1 param not found"); if (!nh_private.getParam ("P_LEG_D2", robot.legParams[P_LEG_D2])) ROS_FATAL("[HUMANOID_MODEL] P_LEG_D2 param not found"); if (!nh_private.getParam ("P_LEG_D3", robot.legParams[P_LEG_D3])) ROS_FATAL("[HUMANOID_MODEL] P_LEG_D3 param not found"); if (!nh_private.getParam ("P_LEG_D4", robot.legParams[P_LEG_D4])) ROS_FATAL("[HUMANOID_MODEL] P_LEG_D4 param not found"); if (!nh_private.getParam ("P_ARM_D0", robot.armParams[P_ARM_D0])) ROS_FATAL("[HUMANOID_MODEL] P_ARM_D0 param not found"); if (!nh_private.getParam ("P_ARM_D1", robot.armParams[P_ARM_D1])) ROS_FATAL("[HUMANOID_MODEL] P_ARM_D1 param not found"); if (!nh_private.getParam ("P_ARM_D2", robot.armParams[P_ARM_D2])) ROS_FATAL("[HUMANOID_MODEL] P_ARM_D2 param not found"); if (!nh_private.getParam ("P_FOOT_W", robot.footParams[P_FOOT_W])) ROS_FATAL("[HUMANOID_MODEL] P_FOOT_W param not found"); if (!nh_private.getParam ("P_FOOT_H", robot.footParams[P_FOOT_H])) ROS_FATAL("[HUMANOID_MODEL] P_FOOT_H param not found"); if (!nh_private.getParam ("P_FOOT_X", robot.footParams[P_FOOT_X])) ROS_FATAL("[HUMANOID_MODEL] P_FOOT_X param not found"); if (!nh_private.getParam ("P_FOOT_Y", robot.footParams[P_FOOT_Y])) ROS_FATAL("[HUMANOID_MODEL] P_FOOT_Y param not found"); if (!nh_private.getParam ("override_com", override_com)) { ROS_WARN("[HUMANOID_MODEL] override_com param not found. This feature wont be used"); override_com = false; } if (!nh_private_walk.getParam ("comX", comX)) { ROS_WARN("[HUMANOID_MODEL] comX param not found. Zero value will be set"); comX = 0; } if (!nh_private_walk.getParam ("comY", comY)) { ROS_WARN("[HUMANOID_MODEL] comY param not found. Zero value will be set"); comY = 0; } if (!nh_private_walk.getParam ("comZ", comZ)) { ROS_WARN("[HUMANOID_MODEL] comZ param not found. Zero value will be set"); comZ = 0; } robot.comOverride.pos(0) = comX; robot.comOverride.pos(1) = comY; robot.comOverride.pos(2) = comZ; //Urdf if (!nh.getParam ("fUrdf", fUrdf)) ROS_FATAL("[HUMANOID_MODEL] Urdf file address not found"); robot.loadURDF(fUrdf.c_str()); robot.robotDOF = robotDOF; robot.urdfDOF = urdfDOF; robot.ikDOF = ikDOF; vecBody.resize(3); vecBodyBuff.resize(3); rLegBP = BodyPointState(RLEG,BP_TOUCHING); lLegBP = BodyPointState(LLEG,BP_TOUCHING); // jointMsg.pos.resize(robotDOF); // jointMsg.vel.resize(robotDOF); // jointMsg.acc.resize(robotDOF); // jointMsg.torq.resize(robotDOF); robot.qState = JointState(robotDOF,ROBOT_IDS); //Dynamic Params if (!nh_private_walk.getParam ("squat", squat)) squat = 0.05; if (!nh_private_walk.getParam ("open", open)) open = 0.02; if (!nh_private_walk.getParam ("incl", incl)) incl = 0; if (!nh_private_walk.getParam ("sideIncl", sideIncl)) sideIncl = 0; if (!nh_private_walk.getParam ("footIncl", sideIncl)) footIncl = 0; if (!nh_private_walk.getParam ("arm0", arm0)) arm0 = 0; if (!nh_private_walk.getParam ("arm1", arm1)) arm1 = 0; if (!nh_private_walk.getParam ("arm2", arm2)) arm2 = 0; //Pose properties are derived from other params robot.poseParams[P_POSE_LEG_OPEN_REF] = robot.legParams[P_LEG_D0]; robot.poseParams[P_POSE_LEG_SQUAT_REF] = robot.legParams[P_LEG_D1] + robot.legParams[P_LEG_D2] + robot.legParams[P_LEG_D3] + robot.legParams[P_LEG_D4]; robot.poseParams[P_POSE_TORSO_INC_REF] = 0;///<-------------------- robot.poseParams[P_POSE_SIDE_INC_REF] = 0;///<-------------------- setRobot(squat,open,incl,sideIncl,footIncl); robot.qState.pos[map.map(LARM0,ROBOT_IDS)] = arm0; robot.qState.pos[map.map(LARM1,ROBOT_IDS)] = arm1; robot.qState.pos[map.map(LARM2,ROBOT_IDS)] = arm2; robot.qState.pos[map.map(RARM0,ROBOT_IDS)] = arm0; robot.qState.pos[map.map(RARM1,ROBOT_IDS)] = arm1; robot.qState.pos[map.map(RARM2,ROBOT_IDS)] = arm2; } bool HumanoidModelNode::humanoidPropertiesSrv(movement_msgs::LoadHumanoidPropertiesSrv::Request &msg, movement_msgs::LoadHumanoidPropertiesSrv::Response &res) { Eigen::Vector3d footCom; Eigen::Vector3d refCom; if(!msg.joint.pos.empty()) robot.setQState(JointState(msg.joint.pos.size(),msg.joint.type,msg.joint.source)); if(!msg.endEff.endEff.empty()) { std::vector<BodyPointState> endEff; for(int i = 0; i < int(msg.endEff.endEff.size());i++) endEff.push_back(BodyPointState(msg.endEff.endEff[i].type,msg.endEff.endEff[i].flag)); robot.setEndEffState(endEff); } if(msg.calcCOM) { robot.getComVecs(footCom,refCom,override_com); comPoint = refCom; footComPoint = footCom; } if(msg.calcZMP) { } if(msg.calcInvDyn) { } if(msg.setIkRef) { Eigen::Vector3d ikRef; tf::pointMsgToEigen(msg.ikRef, ikRef); robot.setIKRef(ikRef); } if(msg.setComAsIkRef) { robot.setIKRef(refCom); } tf::pointEigenToMsg(zmpPoint,res.zmpPoint); tf::pointEigenToMsg(comPoint,res.comPoint); tf::pointEigenToMsg(footComPoint,res.footComPoint); for(int i = 0; i < int(torq.size());i++) res.torq.push_back(torq(i)); humanoidPropsMsg.zmpPoint = res.zmpPoint; humanoidPropsMsg.comPoint = res.comPoint; humanoidPropsMsg.footComPoint = res.footComPoint; humanoidPropsMsg.torq = res.torq; humanoidPropsMsg.squat = squat; humanoidPropsMsg.open = open; humanoidPropsMsg.incl = incl; humanoidPropsMsg.sideIncl = sideIncl; humanoidPropsMsg.footIncl = footIncl; sendHumanoidProps(humanoidPropsMsg); return true; } void HumanoidModelNode::setRobot(double squat, double open, double incl, double sideIncl,double footIncl) { robot.setPoseParams(squat,open,(incl/180.)*PI,(sideIncl/180.)*PI,(footIncl/180.)*PI); Eigen::Vector3d footCom; Eigen::Vector3d refCom; robot.getComVecs(footCom,refCom,override_com); ROS_WARN("COM_POINT: %4.3f %4.3f %4.3f",refCom[0],refCom[1],refCom[2]); robot.setIKRef(refCom); comPoint = refCom; footComPoint = footCom; tf::pointEigenToMsg(comPoint,humanoidPropsMsg.comPoint); tf::pointEigenToMsg(footComPoint,humanoidPropsMsg.footComPoint); humanoidPropsMsg.squat = squat; humanoidPropsMsg.open = open; humanoidPropsMsg.incl = incl; humanoidPropsMsg.sideIncl = sideIncl; humanoidPropsMsg.footIncl = footIncl; sendHumanoidProps(humanoidPropsMsg); setRobotFlag = false; } void HumanoidModelNode::loadMap() { mapMsg.request.update = false; if(mapCli.call(mapMsg)) { int h = mapMsg.response.idMap.map.layout.dim[0].size; int w = mapMsg.response.idMap.map.layout.dim[1].size; std::vector<int> data = mapMsg.response.idMap.map.data; Eigen::Map<Eigen::MatrixXi> mat(data.data(), h, w); map.map = mat; for(int i = 0; i < int(mapMsg.response.idMap.jNames.size());i++) { map.enumMap.insert(std::make_pair(mapMsg.response.idMap.jNames[i],i)); } robotDOF = mapMsg.response.idMap.robotDOF; urdfDOF = mapMsg.response.idMap.urdfDOF; ikDOF = mapMsg.response.idMap.ikDOF; //map.print(); ROS_INFO("[HUMANOID_MODEL] MAP WAS LOADED: ROBOT_DOF: %d URDF_DOF: %d IK_DOF: %d",robotDOF,urdfDOF,ikDOF); } } void HumanoidModelNode::sendHumanoidProps(const movement_msgs::HumanoidPropertiesMsg &msg) { ROS_INFO("[HUMANOID_MODEL] HUMANOIDPROPS: SQUAT = %4.3f OPEN = %4.3f INCL = %4.3f ZC = %4.3f",msg.squat,msg.open,msg.incl,msg.footComPoint.z); humanoidPropsTopic.publish(msg); } void HumanoidModelNode::reconfigCallback(movement_msgs::HumanoidModelConfig& config, uint32_t level) { boost::mutex::scoped_lock lock(mutex); squat = config.squat; open = config.open; incl = config.incl; sideIncl = config.sideIncl; footIncl = config.footIncl; comX = config.comX; comY = config.comY; comZ = config.comZ; arm0 = config.arm0; arm1 = config.arm1; arm2 = config.arm2; setRobotFlag = true; calcIK = config.calcIK; calcFK = config.calcFK; calcCOM = config.calcCOM; calcZMP = config.calcZMP; calcInvDyn = config.calcInvDyn; dt = config.dt; runTimer.setPeriod(ros::Duration(dt)); } void HumanoidModelNode::reconfigMoveCreatorCallback(movement_msgs::HumanoidModelMoveCreatorConfig& config, uint32_t level) { boost::mutex::scoped_lock lock(mutex); modelMoveCreatorMsg.rArm0 = config.rArm0; modelMoveCreatorMsg.rArm1 = config.rArm1; modelMoveCreatorMsg.rArm2 = config.rArm2; modelMoveCreatorMsg.lArm0 = config.lArm0; modelMoveCreatorMsg.lArm1 = config.lArm1; modelMoveCreatorMsg.lArm2 = config.lArm2; modelMoveCreatorMsg.rFootX = config.rFootX; modelMoveCreatorMsg.rFootY = config.rFootY; modelMoveCreatorMsg.rFootZ = config.rFootZ; modelMoveCreatorMsg.rFootRX = config.rFootRX; modelMoveCreatorMsg.rFootRY = config.rFootRY; modelMoveCreatorMsg.rFootRZ = config.rFootRZ; modelMoveCreatorMsg.lFootX = config.lFootX; modelMoveCreatorMsg.lFootY = config.lFootY; modelMoveCreatorMsg.lFootZ = config.lFootZ; modelMoveCreatorMsg.lFootRX = config.lFootRX; modelMoveCreatorMsg.lFootRY = config.lFootRY; modelMoveCreatorMsg.lFootRZ = config.lFootRZ; modelMoveCreatorMsg.on = config.on; modelMoveCreatorMsg.toJointState = config.toJointState; modelMoveCreatorMsg.toMotorState = config.toMotorState; } HumanoidModelNode::~HumanoidModelNode() { }
[ "victoraavila200@gmail.com" ]
victoraavila200@gmail.com
5976a657949ccdf20104289772e00f470e24ee6b
80aec3b84bd07d03f5a375a37c142719b1a71f17
/src/vocabulary.h
1691146680f3fcd751fcc6707748742b83a70474
[]
no_license
Yevgnen/GloVe-cpp
edac5fb32327916f6edc769843afcfd91b254d28
4b63366c5e90271118b8d803f6326940c7bf041b
refs/heads/master
2021-09-14T01:15:22.522352
2018-05-07T01:57:29
2018-05-07T02:05:17
113,806,921
1
0
null
null
null
null
UTF-8
C++
false
false
1,957
h
#ifndef _SRC_VOCABULARY_H_ #define _SRC_VOCABULARY_H_ #include <cereal/archives/binary.hpp> #include <iostream> #include <map> #include <set> #include <unordered_map> #include <vector> #include "serialization.h" using CountType = unsigned long long; using WordFreq = std::pair<std::string, CountType>; using WordMap = std::unordered_map<std::string, CountType>; using Itoa = std::unordered_map<std::size_t, std::string>; using Atoi = std::unordered_map<std::string, std::size_t>; bool operator<(const WordFreq &w1, const WordFreq &w2); class Vocabulary { public: explicit Vocabulary( unsigned long mc = 1, CountType ms = 1e7, bool kc = false); Vocabulary(const Vocabulary &other); Vocabulary(Vocabulary &&other); void build(const std::vector<WordFreq> &v); void build(const std::string &file); void add(const std::string &word, CountType freq = 1); void remove(const std::string &word); void merge(const Vocabulary &other); void merge(const WordMap &other); void sort(const std::string &order = "desc"); std::set<std::string> words() const; bool has(const std::string &word) const; bool has(const std::string &word, bool ignore_case) const; std::size_t size() const; bool full() const; void clear(); void to_txt(const std::string &file) const; void serialize(cereal::BinaryOutputArchive &archive); void serialize(cereal::BinaryInputArchive &archive); WordMap::iterator begin(); WordMap::iterator end(); WordMap::const_iterator cbegin(); WordMap::const_iterator cend(); std::string operator[](const std::size_t &i) const; std::size_t operator[](const std::string &w) const; friend std::ostream &operator<<(std::ostream &os, const Vocabulary &vocab); private: unsigned int min_count = 1; CountType max_size = 1e7; bool keep_case = false; WordMap freq; Itoa itoa; Atoi atoi; }; #endif /* _SRC_VOCABULARY_H_ */
[ "wherejoystarts@gmail.com" ]
wherejoystarts@gmail.com
9dcfd8bd7dd34e159871fd7a401ff9d2f7639f66
c26daa91c60a69f229953d9b039e37a1c46e1d93
/Project4/OrderedList.h
9006f1e3c493e352383bf295449e24f1218b2f86
[]
no_license
cjohnson57/1254Assignment2
dffc7452e51571cc9708ac4f246ab99dee934e94
872d254f7a892480e1e4eb2df4edda9320dac037
refs/heads/master
2021-01-22T01:48:39.719955
2017-09-03T05:03:06
2017-09-03T05:03:06
102,241,862
0
0
null
null
null
null
UTF-8
C++
false
false
5,802
h
/* Author: Caleb Johnson OrderedList.h */ #ifndef _ORDERED_LIST_GUARD #define _ORDERED_LIST_GUARD 1 #define _ARRAY_LIST_MAX_NUM_OF_NODES 100 using namespace std; template <class T> class OrderedList { private: int length; // number of items currently in the list T nodes[_ARRAY_LIST_MAX_NUM_OF_NODES]; // place where the list is stored /* the following prototype is for an optional function, * if you don't wish for searchReturnIndex to be used, * you may comment the prototype out */ //int searchReturnIndex(string lastName, string firstName); /* If there exists a student in the list with a matching * first name and matching last name (known as target), return its index * otherwise, return -1 if target would be the first item * and return index of highest item lower than what would be * the index of the target, had the target existed in the list * * Note: The term "target" is used to indicate a first and last * name that a function may search for, and the student, which may * or may not exist in the list with both a matching first and last name. * All searches done by this class are done by first and last name. * */ public: /* constructer */ OrderedList() { length = 0; } /* destructer */ ~OrderedList() { } T getNode(int index) { return nodes[index]; } int getLength() { return length; } void setNode(int index, T value) { nodes[index] = value; } bool remove(string lastName, string firstName, string(T::*toStringFunction)() const) { for (int i = 0; i < length; i++) { if ((lastName + ", " + firstName) == (nodes[i].*toStringFunction)()) { for (int j = i; j < length - 1; j++) { nodes[j] = nodes[j + 1]; } length -= 1; return true; } } return false; } bool insert(T newItem) { nodes[length] = newItem; length += 1; return true; } T* search(string lastName, string firstName, string (T::*toStringFunction)() const) { for (int i = 0; i < length; i++) { if ((lastName + ", " + firstName) == (nodes[i].*toStringFunction)()) { return &nodes[i]; } } return nullptr; } void traverse(string(T::*toStringFunction)() const, char (T::*letterFunction)() const) { bool finishedsorting = false; T temp; while (!finishedsorting) { finishedsorting = true; for (int i = 0; i < length - 1; i++) { string a = (nodes[i].*toStringFunction)(); string b = (nodes[i + 1].*toStringFunction)(); int comparer = a.compare(b); if (comparer > 0) { finishedsorting = false; temp = nodes[i]; nodes[i] = nodes[i + 1]; nodes[i + 1] = temp; } } } for (int i = 0; i < length; i++) { cout << i + 1 << ".\t" << (nodes[i].*toStringFunction)() << " - " << (nodes[i].*letterFunction)() << endl; } } void traverseByGrade(string(T::*toStringFunction)() const, double (T::*calculationFunction)() const, char (T::*letterFunction)() const) { bool finishedsorting = false; T temp; while (!finishedsorting) { finishedsorting = true; for (int i = 0; i < length - 1; i++) { string a = (nodes[i].*toStringFunction)(); string b = (nodes[i + 1].*toStringFunction)(); int comparer; if ((nodes[i].*calculationFunction)() > (nodes[i + 1].*calculationFunction)()) { comparer = -1; } else if ((nodes[i].*calculationFunction)() < (nodes[i + 1].*calculationFunction)()) { comparer = 1; } else { comparer = a.compare(b); } if (comparer > 0) { finishedsorting = false; temp = nodes[i]; nodes[i] = nodes[i + 1]; nodes[i + 1] = temp; } } } for (int i = 0; i < length; i++) { cout << i + 1 << ".\t" << (nodes[i].*toStringFunction)() << " - " << (nodes[i].*letterFunction)() << endl; } } void traverseOut(ofstream *f, double hwWeight, double qzWeight, double fxWeight, string(T::*lastNameFunction)() const, string(T::*firstNameFunction)() const, int(T::*HWFunction)(int) const, int(T::*QZFunction)(int) const, int(T::*finalExamFunction)() const) { string newRoster; newRoster = to_string(hwWeight) + '\n' + to_string(qzWeight) + '\n' + to_string(fxWeight) + '\n' + to_string(length) + '\n'; for (int i = 0; i < length; i++) { newRoster += (nodes[i].*lastNameFunction)() + "\t" + (nodes[i].*firstNameFunction)(); for (int j = 0; j < 4; j++) { int a = (nodes[i].*HWFunction)(j); newRoster += "\t" + to_string(a); } for (int j = 0; j < 4; j++) { int a = (nodes[i].*QZFunction)(j); newRoster += "\t" + to_string(a); } newRoster += "\t" + to_string((nodes[i].*finalExamFunction)()) + '\n'; } *f << newRoster; } void traverseDisplayFunctions(void (T::*displayFunction)() const, string(T::*toStringFunction)() const) { bool finishedsorting = false; T temp; while (!finishedsorting) { finishedsorting = true; for (int i = 0; i < length - 1; i++) { string a = (nodes[i].*toStringFunction)(); string b = (nodes[i + 1].*toStringFunction)(); int comparer = a.compare(b); if (comparer > 0) { finishedsorting = false; temp = nodes[i]; nodes[i] = nodes[i + 1]; nodes[i + 1] = temp; } } } for (int i = 0; i < length; i++) { (nodes[i].*displayFunction)(); } } void calculateAverage(double (T::*calculationFunction)() const) { double total = 0; for (int i = 0; i < length; i++) { total += (nodes[i].*calculationFunction)(); } cout << "The average grade for this class is " << total / length << endl; } }; #endif
[ "shadowshine57@gmail.com" ]
shadowshine57@gmail.com
3f97081b4f5d613503b2980e7f1572694e9a0539
4aeb51c10b6c68003ba8494f2bca6b4742a05e71
/Level 5/3.4/3.4.2/Shape.hpp
7bf94b8a99b1af1602f31bb47407976a49924764
[]
no_license
bingyingo/Baruch_Cplusplus_Financial_Engineering
8d69c65dcea5f5ed027907a2258405751bbfaaf8
eb979e3f2a82c9ac1833959169fcd6753c0a3904
refs/heads/master
2021-10-16T07:54:55.898314
2019-02-09T06:17:44
2019-02-09T06:17:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,084
hpp
// Shape.hpp // // Header file for Shape. Shape is comprised of an ID. // Includes standard constructor, copy constructor, assignment operator overload, and destructor // Includes getter function for retrieving the id of the shape. // Also includes function ToString() that returns the id of the Shape as a string // // Author: Devon Kaberna #ifndef Shape_HPP #define Shape_HPP #include <iostream> // C++ style I/O using namespace std; namespace DevonKaberna { namespace CAD { class Shape { private: //member data for class shape that contains the ID int m_id; // The ID public: // Constructors Shape(); // Default constructor Shape(const Shape& source); // Copy constructor that copies the id member Shape& operator = (const Shape& source); // Assignment operator that copies the id member ~Shape(); // Destructor // Accessing function for ID int ID() const; // Retrieves the id of the shape string ToString() const; //Returns the id of the Shape as a string }; } } #endif // Shape_HPP
[ "noreply@github.com" ]
bingyingo.noreply@github.com
0e2a293c4032884c14f0d7abcd2f0fd42d1a57bf
3ce248780af48b70c0ac6b755ea3608faa4f6931
/include/utils/ads_ip_location.h
88134d05a6b42a5ae000b9da74ad7b65bedebcb8
[]
no_license
foodie/ads
97ff2a909be7cfcb45403cb12ce91b61593c772e
574789baddf61f28dc9d51be713d43582dfacaa9
refs/heads/master
2021-04-24T23:04:45.741970
2018-02-22T07:39:56
2018-02-22T07:39:56
122,709,335
0
1
null
2018-02-24T06:10:52
2018-02-24T06:10:52
null
UTF-8
C++
false
false
1,493
h
#ifndef _ADS_IP_LOCATION_H #define _ADS_IP_LOCATION_H #include <stdlib.h> #include <stdio.h> #include <string> #include <string.h> #include "core/ads_singleton.h" using std::string; static const unsigned int WRY_FILE_LEN = 6*1024*1024; static const unsigned int WRY_IP_LEN = 4; static const unsigned int WRY_ID_LEN = 4; static const unsigned int WRY_INDEX_LEN = 12; class AdsIpLocation : public AdsSingleton<AdsIpLocation> { friend class AdsSingleton<AdsIpLocation>; public: static bool isIpString(const char *ip); static string long2Ip(long ipval); static long ip2Long(const char *ip); public: ~AdsIpLocation() {} bool init(); bool open(const char *fpath); int getLocationId(const char *ip); private: AdsIpLocation() : _index_start(0),_index_end(0) {} char _index_data[WRY_FILE_LEN]; uint32_t _index_start; // 索引区首偏移 uint32_t _index_end; // 索引区尾偏移 char _get_char(uint32_t offset) const { return _index_data[offset]; } const char* _get_char_p(uint32_t offset) const { return _index_data + offset; } uint32_t _get_value_4(uint32_t offset) const { uint32_t v = 0; memcpy((char*)&v, this->_get_char_p(offset), 4); return v; } uint32_t _search_ip(uint32_t ip, uint32_t start=0, uint32_t end=0); }; static inline bool initIpLocation() { return AdsIpLocation::getInstance().init(); } static inline int getLocationId(const char *ip) { return AdsIpLocation::getInstance().getLocationId(ip); } #endif /* vim: set ts=4 sw=4 noet: */
[ "suz.yang@c3f05a90-ab38-4639-bb16-76adefa795eb" ]
suz.yang@c3f05a90-ab38-4639-bb16-76adefa795eb
6e55a0851a0392692e7199d4d76d9461a87357b7
8b77262bc9900b80958597c4eab4bf97b819f1ea
/generate.cpp
95b2a3eb3f62fa754a5cd1bbe08cfe9372c91811
[]
no_license
nkersting/Code
fa4b752cdebfe40f8dfce396e2be1cce4542c3c3
f30d2aad38eb2c5fc0012625709c76b6593b02d9
refs/heads/master
2021-01-19T05:53:54.741644
2017-05-28T09:26:56
2017-05-28T09:26:56
15,555,940
0
0
null
null
null
null
UTF-8
C++
false
false
19,521
cpp
#include "groups.h" #include <iostream> #include <string> #include <sstream> #include <list> #include <set> #include <vector> #include <sstream> #include <memory> #include <fstream> #include <string.h> #include <math.h> #include <cstring> #include <map> #include <algorithm> #include <ctime> #include "dirent.h" using namespace std; const string ENV[ 24 ] = { "COMSPEC", "DOCUMENT_ROOT", "GATEWAY_INTERFACE", "HTTP_ACCEPT", "HTTP_ACCEPT_ENCODING", "HTTP_ACCEPT_LANGUAGE", "HTTP_CONNECTION", "HTTP_HOST", "HTTP_USER_AGENT", "PATH", "QUERY_STRING", "REMOTE_ADDR", "REMOTE_PORT", "REQUEST_METHOD", "REQUEST_URI", "SCRIPT_FILENAME", "SCRIPT_NAME", "SERVER_ADDR", "SERVER_ADMIN", "SERVER_NAME","SERVER_PORT","SERVER_PROTOCOL", "SERVER_SIGNATURE","SERVER_SOFTWARE" }; const char* DATADIR = "/home/nkersting/website/public/"; const char* GROUPSFILE = "/home/nkersting/website/groups.json"; const int MAXSTRING = 200; const string c_ContentHeader = "Content-type: text/html\n\n"; // ---- CONTENT LENGTH ---- ///<Summary> /// The content length environment variable /// name ///</Summary> const string c_ContentLengthVariableName = "CONTENT_LENGTH"; ///<Summary> /// Function to return the current requests /// content length ///</Summary> const int GetContentLength() { int l_result = 0; char* l_ContentLengthVariable = getenv(c_ContentLengthVariableName.c_str()); if ( l_ContentLengthVariable != NULL ) { l_result = atoi(l_ContentLengthVariable); } return l_result; } // ---- END CONTENT LENGTH ---- // ---- GET CONTENT ---- ///<Summary> /// Function to return the content ///</Summary> const list<string> GetContent() { list<string> l_result; // Now seek the content int l_ContentLength = GetContentLength(); if ( l_ContentLength > 0 ) { try { // Allocate a buffer for the information auto_ptr<char> l_Buffer (new char[l_ContentLength]); // Read the content sent into the buffer int l_bytesRead = fread (l_Buffer.get(), sizeof(char), l_ContentLength, stdin); // Check the data length if ( l_bytesRead == l_ContentLength ) { // Convert the buffer to a string stringstream l_stream (l_Buffer.get()); // Push the content as a string into the buffer while ( !l_stream.eof() ) { string l_item; l_stream >> l_item; l_result.push_back(l_item); } } } catch (bad_alloc l_badAllocationException) { // TODO handle bad alloc } } return l_result; } // ---- END GET CONTENT ---- ////////////////////////////////////////////// unsigned int intConvert(string aInput, int i) { char val1 = aInput.at(i+1); unsigned int myval1; std::stringstream ss1; ss1 << val1; ss1 >> std::hex >> myval1; char val2 = aInput.at(i+2); unsigned int myval2; std::stringstream ss2; ss2 << val2; ss2 >> std::hex >> myval2; return (16*myval1 + myval2); } ////////////////////// string cleanString(string aInput) { char newstring[MAXSTRING]; int pos = 0; for (int i = 0; i < aInput.length(); i++ ) { if (aInput.at(i) == 37) // % { newstring[pos] = intConvert(aInput, i); if (newstring[pos] == 10 || newstring[pos] == 13) { // treat newline as end of word newstring[pos] = '\0'; return newstring; } else { pos++; } i += 2; } else { newstring[pos] = aInput.at(i); pos++; } } newstring[pos] = '\0'; return newstring; } //////////////////////////////////////////////////////////////////////// // -- REPOIRE FUNCTIONS -- vector <int> hash_x(const char *str) { vector <int> synsets; // actually a vector of just one int unsigned long hash = 5381; int c; while (c = *str++) hash = ((hash << 5) + hash) + c; /* hash * 33 + c */ synsets.push_back((int)hash); return synsets; } vector <int> findSynsets(std::string& word, std::map<std::string, vector <int> >& WordMap) { std::map<std::string, vector <int> >::iterator iter = WordMap.find(word); if (iter != WordMap.end()) { return iter->second; // matching set of synsets returned } else // try looking up without last character { // takes care of most plurals and final punctuation std::string short_word = word.substr(0,word.size() - 1); std::map<std::string, vector <int> >::iterator iter = WordMap.find(short_word); if (iter != WordMap.end()) { return iter->second; // matching set of synsets returned } else { // more plural handling: // if last two letters are "es" try looking up without last two characters if (word[word.size()-2] == 'e' && word[word.size()-1] == 's') { std::map<std::string, vector <int> >::iterator iter = WordMap.find(word.substr(0,word.size()-2)); if (iter != WordMap.end()) { return iter->second; // matching set of synsets returned } else { // if last three letters are "ies" try replacing these with "y" if (word[word.size()-3] == 'i') { string new_word = word.substr(0,word.size()-3); new_word.append("y"); std::map<std::string, vector <int> >::iterator iter = WordMap.find(new_word); if (iter != WordMap.end()) { return iter->second; // matching set of synsets returned } } } } return hash_x(word.c_str()); // if we get here then a hash is needed } // e.g. some specialty words or proper nouns } } void populateKeyMap(std::map<int, vector <std::string> > &KeyMap, std::map<std::string, vector <int> > &WordMap, vector <std::string> &input_words) { vector <int> keys1; vector <int> keys2; for (int i = 0; i < input_words.size(); i++) { keys1 = findSynsets(input_words.at(i), WordMap); for (int j = i+1; j < input_words.size(); j++) { keys2 = findSynsets(input_words.at(j), WordMap); for (vector<int>::iterator it1 = keys1.begin(); it1 != keys1.end(); it1++) { for (vector<int>::iterator it2 = keys2.begin(); it2 != keys2.end(); it2++) { KeyMap[(*it1 + *it2)].push_back(input_words.at(i)); KeyMap[(*it1 + *it2)].push_back(input_words.at(j)); } } } } return; } ////////////////////////////////////////// void RepoireGroup::ShowMembers() { for (vector<string>::iterator it = mKeyfileList.begin(); it != mKeyfileList.end(); it++) { cout << "<p><a href=\"../match.html?matchfile=" << *it << "\" title=\"Match Form\" target=\"_blank\">" << *it << "</a></p>" << endl; } } ////////////////////////////////////////// void RepoireGroup::AddMember(string newMember) { mKeyfileList.push_back(newMember); } ////////////////////////////////////////////// void readFilesIntoMap(std::map<string, set<int> >& keyLists) { DIR *pDIR; struct dirent *entry; if( pDIR=opendir(DATADIR) ) { while(entry = readdir(pDIR)) { if( strcmp(entry->d_name, ".") != 0 && strcmp(entry->d_name, "..") != 0 ) { ifstream keyfile; string filepath = DATADIR; filepath.append(entry->d_name); keyfile.open(filepath.c_str()); set <int> keylist; int keyvalue; while (!keyfile.eof()) { keyfile >> keyvalue; keylist.insert(keyvalue); } keyfile.close(); std::pair <string, set<int> > newPair (entry->d_name, keylist); keyLists.insert(newPair); } } } closedir(pDIR); } /////////////////////////////////// bool CompareToAddToGroup(string key, std::map<string, set<int> >& keyListsCopy, vector <RepoireGroup>& Groups, float threshold) { float firstPercent = 0; float secondPercent = 0; set<int> commonKeys; bool addedToGroup = false; for (vector <RepoireGroup>::iterator group = Groups.begin(); group != Groups.end(); group++) { commonKeys.clear(); for (set<int>::const_iterator it = keyListsCopy[key].begin(); it!= keyListsCopy[key].end(); it++) { if ((group->mCommonKeys).find(*it) != (group->mCommonKeys).end()) commonKeys.insert(*it); } firstPercent = 100.0*commonKeys.size()/keyListsCopy[key].size(); secondPercent = (group->mIntegrity)*commonKeys.size()/(group->mCommonKeys).size(); if (firstPercent >= threshold && secondPercent >= threshold) { group->mCommonKeys = commonKeys; group->AddMember(key); group->mIntegrity = min(firstPercent, secondPercent); addedToGroup = true; } } return addedToGroup; } //////////////////////////////////// void SeedNewGroup(std::string key, std::set<int> list, vector <RepoireGroup>& Groups) { set<int> commonKeys; vector<string> memberKeys; memberKeys.push_back(key); RepoireGroup rg(list, memberKeys, 100, Groups.size() + 1); // new group has 100% integrity Groups.push_back(rg); } ///////////////////////////////////////////// void WritePage(vector <RepoireGroup> Groups, float threshold) { cout << "Content-type:text/html\r\n\r\n"; cout << "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n"; cout << "<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n"; cout << "<head>\r\n"; cout << "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n"; cout << "<title>PCI Groups</title>\r\n"; cout << "<script type=\"text/javascript\" src=\"../d3.v2.js\"></script>\r\n"; cout << "<link type=\"text/css\" rel=\"stylesheet\" href=\"../bubble.css\"/>\r\n"; cout << "</head>\r\n"; cout << "<body>\r\n"; cout << "<p>All contributions are accessible in the " << "<a href=\"../public\">public/ directory</a>, which are available" << " for personal download to try individual matches with suitable matching code (please contact nkersting@princeton.com for source)" << " together with the <a href=\"../wordsets.txt\">thesaurus</a>." << " You may also click on the filenames below to try a (confidential) match on the server which will quantify the closeness of match.</p>\r\n"; cout << "<p>&nbsp;</p>\r\n"; cout << "<form action=\"/cgi-bin/group.cgi\" method=\"post\" name=\"GroupForm\" >\r\n"; cout << "<p>Contributions currently belong to the following groups, based on a threshold commonality percentage of \r\n"; cout << "<input name=\"TextField1\" type=\"text\" value=\"" << threshold << "\" size=\"5\" maxlength=\"5\" />\r\n"; cout << "%.</p>\r\n"; cout << "<td width=\"93\"><input type=\"submit\" name=\"recalc\" value=\"Click to Refresh\" /></td>\r\n"; cout << "</form>\r\n"; // now write the Groups table cout << "<table width=\"1100\" border=\"1\">\r\n"; cout << "<tr>\r\n"; cout << "<td width=\"500\" valign=\"top\">\r\n"; cout << "<table width=\"500\" border=\"1\">\r\n"; cout << "<tr>\r\n"; cout << "<td width=\"70\" align=\"center\">Group #</td>\r\n"; cout << "<td width=\"70\" align=\"center\">% Integrity</td>\r\n"; cout << "<td width=\"360\" align=\"center\">Contributions</td>\r\n"; cout << "</tr>\r\n"; for (vector <RepoireGroup>::iterator it = Groups.begin(); it != Groups.end(); it++) { cout << "<tr>\r\n"; cout << "<td align=\"center\">" << (*it).GetID() << "</td>\r\n"; cout << "<td align=\"center\">" << (*it).mIntegrity << "%</td>\r\n"; cout << "<td align=\"center\" >\r\n"; (*it).ShowMembers(); cout << "</td>\r\n"; cout << "</tr>\r\n"; } cout << "</table>\r\n"; cout << "</td>\r\n"; cout << "<td width=\"600\" align=\"center\" valign=\"top\">\r\n"; cout << "<div id=\"chart\"></div>\r\n"; cout << "<script src=\"../groups.json\" type=\"text/javascript\"></script>\r\n"; cout << "<script type=\"text/javascript\" src=\"../goodbubble.js\"></script>\r\n"; cout << "</td>\r\n"; cout << "</tr>\r\n"; cout << "</table>\r\n"; cout << "<p>&nbsp;</p>\r\n"; cout << "<p align=\"center\"><span class=\"style1 style5 style4\"><a href=\"../index.html\" target=\"_self\">back</a></span></p>\r\n"; cout << "</body>\r\n"; cout << "</html>\r\n"; } ////////////////////////////// void WriteErrorPage(string aMessage) { cout << "Content-type:text/html\r\n\r\n"; cout << "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n"; cout << "<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n"; cout << "<head>\r\n"; cout << "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n"; cout << "<title>Error</title>\r\n"; cout << "</head>\r\n"; cout << "<body>\r\n"; cout << "<p>Submission Error:" << aMessage << "</p>\r\n"; cout << "<p>&nbsp;</p>\r\n"; cout << "<p align=\"center\"><span class=\"style1 style5 style4\"><a href=\"../index.html\" target=\"_self\">back</a></span></p>\r\n"; cout << "</body>\r\n"; cout << "</html>\r\n"; } void WriteJSON(vector <RepoireGroup> Groups) { // open output file ofstream outfile; outfile.open(GROUPSFILE); outfile << "var json = {" << "\"name\": \"groups\"," << "\"children\": [" << "{" << " \"name\": \"analytics\"," << " \"children\": [ " << "{" << "\"name\": \"graphs\"," << " \"children\": [" << endl; int count = 0; for (vector <RepoireGroup>::iterator it = Groups.begin(); it != Groups.end(); it++) { count++; outfile << "{" << "\"name\": \"" << (*it).GetID() << "\"," << endl << "\"size\":" << (*it).GetUsers() << "," << endl << "\"integrity\":" << floor((*it).mIntegrity) << "}" << endl ; if (count < Groups.size()) { outfile << "," << endl; } } outfile << "]} ]} ] }"; } //////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////// int main(int argc, char* argv[]) { //cout << c_ContentHeader; //cout << "<html><body>" << endl; //cout << "The content Length is: " << GetContentLength() << "<br>" << endl; //cout << "The Content is: <br><pre>" << endl; vector<string> input_words; string userID(""); list<string> theContent = GetContent(); for (list<string>::const_iterator itr = theContent.begin(); itr != theContent.end(); itr++) { // cout << (*itr) << endl; istringstream read_ss(*itr); string read_s; bool firstword; int count = 0; while (getline(read_ss, read_s, '&')) { count++; if (count == 1) // this is for the sentence line { istringstream read_ss2(read_s); string read_s2; firstword = true; while (getline(read_ss2, read_s2, '+')) { if (firstword) { std::transform(read_s2.begin(), read_s2.end(), read_s2.begin(), ::tolower); //convert to lowercase input_words.push_back(read_s2.substr(11,read_s2.size() - 11)); // chop off the "TextField1=" firstword = false; } else { std::transform(read_s2.begin(), read_s2.end(), read_s2.begin(), ::tolower); //convert to lowercase input_words.push_back(read_s2); } } } else if (count == 2) // this is for the ID line { istringstream read_ss2(read_s); string read_s2; firstword = true; while (getline(read_ss2, read_s2, '+')) { if (read_s2.size() + userID.size() > 230) { WriteErrorPage("Public Message is too long (must be 230 characters or less); please resubmit"); return 0; } if (firstword) { userID.append(read_s2.substr(11,read_s2.size() - 11)); // chop off the "TextField1=" firstword = false; } else { userID.append("_"); userID.append(read_s2); } } } } } vector<string> new_input_words; for (vector<string>::iterator it = input_words.begin(); it != input_words.end(); it++) { new_input_words.push_back(cleanString(*it)); } string newUserID = cleanString(userID); ///////////////////////////////////// /// Below we compute the key file //////////////////////////////////// // read in the "wordsets.txt" ifstream word_synset_file; word_synset_file.open ("wordsets.txt"); // fill in the word-synset map // cout << "This is the encryption code." << endl; // cout << "Loading dictionary, please wait ..." << endl; std::map<std::string, vector <int> > WordMap; string line; while (getline(word_synset_file, line)) { istringstream read_ss(line); string read_s; int firstread = 1; string word = ""; while (getline(read_ss, read_s, ' ')) // FIXME: whitespace, not just one space { if (firstread == 1 ) { word = read_s; firstread = 0; } else { WordMap[word].push_back(atoi(read_s.c_str())); } } } if (new_input_words.size() < 2) { WriteErrorPage("Message is too short (must be 2 words or more); please resubmit"); return 0; // exit the program since the input string is too short } else { // open output file ofstream outfile; time_t now = time(NULL); struct tm * ptm = localtime(&now); char buffer[32]; // Format: 15-06-2009-20-20-00 strftime (buffer, 32, "-%d-%m-%Y-%H-%M-%S", ptm); string filename(DATADIR); filename.append(newUserID); filename.append(buffer); filename.append(".kyx"); outfile.open(filename.c_str()); std::map<int, vector <std::string> > KeyMap; populateKeyMap(KeyMap, WordMap, new_input_words); // generate keys for this sentence for (map<int, vector<string> >::iterator iter = KeyMap.begin(); iter != KeyMap.end(); ++iter) { int Key = (*iter).first; outfile << Key << endl; } } ////////////////////////// // Below we compute groups for a default threshold ////////////////////////////////////////// std::map<string, set<int> > keyLists; // key is the filename, set is all the keys vector <RepoireGroup> Groups; vector <string> deleteList; float thresholdPercent = 30.0; // percent agreement needed to be included in a group keyLists.clear(); Groups.clear(); // read keylists from directory, and // for each keylist, fill a vector readFilesIntoMap(keyLists); for (std::map<string, set<int> >::iterator key_it = keyLists.begin(); key_it != keyLists.end(); key_it++) { //first check whether keylist can belong to an already existing group(s) if (CompareToAddToGroup(key_it->first, keyLists, Groups, thresholdPercent)) { continue; } else { // make a new group consisting of just this keylist SeedNewGroup(key_it->first, key_it->second, Groups); } } WriteJSON(Groups); // Write the JSON file used to make D3.js Bubble Chart WritePage(Groups, thresholdPercent); // Write all the text of the page, including the list of groups return 0; }
[ "nkersting@princeton.com" ]
nkersting@princeton.com
72a055db7b75651705cc8341d0898da9821c0656
c1a082db171a27ee53201d7f1ce258df9f89c98b
/Homework/hw06 sound and music/hw06.4 - Scrolling platformer demo - with sound/hw4 - platformer/8.0 main_hw04 apply gravity and collision.cpp
64231bc2f298301408c5d19c3293ba4689874388
[]
no_license
Vikktour/CS3113-game-programming
41164537d043a28756bcd7f869c7daf39ba76d8f
dc93dedc3cf4bb704e874d899812bc385e0ccde9
refs/heads/master
2021-05-09T21:07:09.526106
2021-01-27T22:14:05
2021-01-27T22:14:05
118,719,482
0
1
null
2018-01-24T06:20:44
2018-01-24T05:58:06
null
UTF-8
C++
false
false
17,973
cpp
/* Victor Zheng vz365 hw04 Scrolling platformer demo Controls: questions and answers: */ #define STB_IMAGE_IMPLEMENTATION //to allow assert(false) #ifdef _WINDOWS #include <GL/glew.h> #endif #include <SDL.h> #include <SDL_opengl.h> #include <SDL_image.h> #include "ShaderProgram.h" #include "Matrix.h" #include "stb_image.h" #include "FlareMap.h" #include <iostream> #include <vector> #include <string> #ifdef _WINDOWS #define RESOURCE_FOLDER "" #else #define RESOURCE_FOLDER "NYUCodebase.app/Contents/Resources/" #endif //define timesteps to update based on FPS, e.g. 60fps means update every 1/60 second ~ 0.166666f #define FIXED_TIMESTEP 0.0166666f #define MAX_TIMESTEPS 6 #define LEVEL_HEIGHT 25 //each level is at most 25 tiles tall #define LEVEL_WIDTH 50 //each level is at most 50 tiles wide //note that this level will be 240*400 pixels /* Adjustable global variables */ //screen float screenWidth = 720; float screenHeight = 480; float topScreen = 7.0f; float bottomScreen = -7.0f; float aspectRatio = screenWidth / screenHeight; float leftScreen = -aspectRatio * topScreen; float rightScreen = aspectRatio * topScreen; //game float velocityMax = 3.0f; //time and FPS float accumulator = 0.0f; float lastFrameTicks = 0.0f; //more global variables ShaderProgram texturedProgram; SDL_Window* displayWindow; float lerp(float v0, float v1, float t) {//used for friction. Linear Interpolation (LERP) return (1.0f - t)*v0 + t * v1;//note that everytime this function is used, if v1 is 0 then we're going to keep dividing v0 to eventually go to 0. } GLuint LoadTexture(const char *filePath) { int w, h, comp; unsigned char* image = stbi_load(filePath, &w, &h, &comp, STBI_rgb_alpha); //load pixel data from image file if (image == NULL) { std::cout << "Unable to load image. Make sure the path is correct\n"; assert(false); } GLuint retTexture; //creating a new OpenGL textureID glGenTextures(1, &retTexture); //numtextures,GLuint *texture glBindTexture(GL_TEXTURE_2D, retTexture); glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, w, h, 0, GL_RGBA, GL_UNSIGNED_BYTE, image); //sets the texture data of specified texture target (make sure to match the image format GL_RGBA or GL_RGB for their respective image) glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); //glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); stbi_image_free(image);//free the image??????? return retTexture; } class SheetSprite { public: //SheetSprite() {};//divide by 0 error - crash at start SheetSprite() : spriteCountX(20),spriteCountY(20) {};//set spriteCountX & Y as hardcode 20(current png size) to avoid divide by 0 possibility //SheetSprite(float size, unsigned int textureID, int index, int spriteCountX, int spritCountY) : {} void Draw(ShaderProgram* program) const; float size; unsigned int textureID; int index; int spriteCountX;//horizontal #tile size of spritesheet int spriteCountY; }; //note: the spritesheet I'm using for this hw is 20x20 blocks so spriteCountX = spriteCountY = 20 void SheetSprite::Draw(ShaderProgram* program) const {//drawing for uniform spritesheet. spriteCountX&spriteCountY are the z #rows&cols of if (index >= 0) {//while there's something to draw. Note that index=-1 is a blank screen glBindTexture(GL_TEXTURE_2D, textureID); float u = (float)(((int)index) % spriteCountX) / (float)spriteCountX; float v = (float)(((int)index) / spriteCountX) / (float)spriteCountY; float spriteWidth = 1.0 / (float)spriteCountX; float spriteHeight = 1.0 / (float)spriteCountY; float texCoords[] = { u, v + spriteHeight, u + spriteWidth, v, u, v, u + spriteWidth, v, u, v + spriteHeight, u + spriteWidth, v + spriteHeight }; float vertices[] = {//size to scale the image to the desired pixels -0.5f*size, -0.5f*size, 0.5f*size, 0.5f*size, -0.5f*size, 0.5f*size, 0.5f*size, 0.5f*size, -0.5f*size,-0.5f*size, 0.5f*size, -0.5f*size }; // draw this data glVertexAttribPointer(program->positionAttribute, 2, GL_FLOAT, false, 0, vertices); glEnableVertexAttribArray(program->positionAttribute); glVertexAttribPointer(program->texCoordAttribute, 2, GL_FLOAT, false, 0, texCoords); glEnableVertexAttribArray(program->texCoordAttribute); glDrawArrays(GL_TRIANGLES, 0, 6); glDisableVertexAttribArray(program->positionAttribute); glDisableVertexAttribArray(program->texCoordAttribute); } } class Vector3 { //keep track of object coordinates public: Vector3(float x = 0.0f, float y = 0.0f, float z = 0.0f) : x(x), y(y), z(z) {} float x; float y; float z; }; enum EntityType { ENTITY_PLAYER, ENTITY_ENEMY, ENTITY_COIN, ENTITY_POWERUP }; class Entity { public: Entity() : velocity(0.0f,0.0f,0.0f), acceleration(0.0f,0.0f,0.0f), friction(0.5f,0.0f,0.0f) {}; void Update(float elapsed); void Render(ShaderProgram* program); bool CollidesWith(Entity *entity); SheetSprite sprite; Vector3 position; Vector3 size; Vector3 velocity; Vector3 acceleration; Vector3 friction; bool isStatic; EntityType entityType; bool collidedTop; bool collidedBottom; bool collidedLeft; bool collidedRight; }; void Entity::Update(float elapsed) { velocity.x += acceleration.x * elapsed; velocity.y += acceleration.y * elapsed; if (velocity.x > velocityMax) { velocity.x = velocityMax; } if (velocity.y > velocityMax) { velocity.y = velocityMax; } position.x += velocity.x * elapsed; position.y += velocity.y * elapsed; //friction if touching ground if (velocity.y == 0 && acceleration.x == 0) { velocity.x = lerp(velocity.x, 0.0f, elapsed * friction.x); //velocity.y = lerp(velocity.y, 0.0f, elapsed * friction.y); } } void Entity::Render(ShaderProgram* program) { Matrix modelMatrix; modelMatrix.Identity(); modelMatrix.Translate(position.x, position.y, position.z); //modelMatrix.Translate(30.0f, 30.0f, position.z); program->SetModelMatrix(modelMatrix); sprite.Draw(program); } bool Entity::CollidesWith(Entity *entity) { //boxbox //circlecircle //comeback return 0; } class GameState { public: Entity Player; Entity DuckPrincess; std::vector<Entity> WaterVec; std::vector<Entity> BoostVec; //Entity LevelMap[LEVEL_HEIGHT][LEVEL_WIDTH];//2D array of static entities. Don't want to use this anymore b/c vector is more convenient to get size //std::vector<std::vector<Entity>> LevelMap;//vector of [layer] static entities //static entity tilemap stored in terms of vertices std::vector<float> vertexData; std::vector<float> texCoordData; }; float tileSize = 1.0f;//tile size is how big you want each block to be in the world (e.g. our sprite is 16x16pixels in png, but we can make it 1.0x1.0 in world) void PlaceEntity(std::string type, float x, float y, GameState* game, FlareMap* map) {//this is for initalizing positions of entities //note float x&y can be in pixel coords by inputting x*tileSize where tileSize = 16.0f GLuint gameTexture = LoadTexture(RESOURCE_FOLDER"CdH_TILES.png"); if (type == "DuckPlayer") { Entity player; //note the duckplayer texture is at (12blocks,3blocks) of the png player.sprite.index = 223; player.sprite.spriteCountX = 20; player.sprite.spriteCountY = 20; player.position.x = x;//note that this x is 16.0f*tileLocation ~ pixels = 176.0f //30.0f;//x;//debug player.position.y = y;//NOTE THAT THIS GOES DOWN, since we entered a negatiive value for y in PlaceEntity() //0.0f;//y; //player.position.x = 10.0f * 16.0f; //player.position.y = 20.0f * 16.0f; player.sprite.textureID = gameTexture; player.sprite.size = tileSize; game->Player = player; } else if (type == "DuckPrincess") {// Entity duckPrincess; //note the duck texture is at (12blocks,4blocks) of the png duckPrincess.sprite.index = 224; duckPrincess.sprite.spriteCountX = 20; duckPrincess.sprite.spriteCountY = 20; duckPrincess.position.x = x; duckPrincess.position.y = y; duckPrincess.sprite.textureID = gameTexture; //duckPrincess.sprite.size = 16.0f; game->DuckPrincess = duckPrincess; } else if (type == "Water") {//I want the water to make the duck be able to fly Entity water; //note the water texture is at (11blocks,8blocks) of the png water.sprite.index = 208; water.sprite.spriteCountX = 20; water.sprite.spriteCountY = 20; water.position.x = x; water.position.y = y; water.sprite.textureID = gameTexture; //water.sprite.size = 16.0f; game->WaterVec.push_back(water); } else if (type == "Boost") {//I want the boost to make the duck go faster Entity boost; //note the boost texture is at (8blocks,4blocks) of the png boost.sprite.index = 144; boost.sprite.spriteCountX = 20; boost.sprite.spriteCountY = 20; boost.position.x = x; boost.position.y = y; boost.sprite.textureID = gameTexture; //boost.sprite.size = 16.0f; game->BoostVec.push_back(boost); } } void InitializeGame(GameState *game) {//set the positions of all the entities FlareMap map; map.Load("MyLevel1.4.txt"); float halfSide = tileSize / 2.0f; for (int i = 0; i < map.entities.size(); i++) {//place Dynamic entities PlaceEntity(map.entities[i].type, map.entities[i].x * tileSize + halfSide, map.entities[i].y * -tileSize + halfSide, game, &map);//push into gamestate the initial positions of DYNAMIMC ENTITIES; } int sprintCountX = 20; int sprintCountY = 20; for (int y = 0; y < map.mapHeight; y++) { for (int x = 0; x < map.mapWidth; x++) { if (map.mapData[y][x] != 0) {//don't draw the blank tiles // add vertices float u = (float)(((int)map.mapData[y][x]) % sprintCountX) / (float)sprintCountX; float v = (float)(((int)map.mapData[y][x]) / sprintCountX) / (float)sprintCountY; float spriteWidth = 1.0f / (float)sprintCountX; float spriteHeight = 1.0f / (float)sprintCountY; game->vertexData.insert(game->vertexData.end(), {//*x and *y means to draw at each location for the glvertexattributepointer tileSize * x, -tileSize * y, tileSize * x, (-tileSize * y) - tileSize, (tileSize * x) + tileSize, (-tileSize * y) - tileSize, tileSize * x, -tileSize * y, (tileSize * x) + tileSize, (-tileSize * y) - tileSize, (tileSize * x) + tileSize, -tileSize * y }); game->texCoordData.insert(game->texCoordData.end(), { u, v, u, v + (spriteHeight), u + spriteWidth, v + (spriteHeight), u, v, u + spriteWidth, v + (spriteHeight), u + spriteWidth, v }); } } } } void tilemapRender(GameState game, ShaderProgram* program) {//comeback // draw this data GLuint gameTexture = LoadTexture(RESOURCE_FOLDER"CdH_TILES.png"); Matrix tilemapModelMatrix; program->SetModelMatrix(tilemapModelMatrix); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); //gets rid of the clear (black) parts of the png //program.Load(RESOURCE_FOLDER"vertex_textured.glsl", RESOURCE_FOLDER"fragment_textured.glsl"); glBindTexture(GL_TEXTURE_2D, gameTexture); //use fontTexture to draw glVertexAttribPointer(program->positionAttribute, 2, GL_FLOAT, false, 0, game.vertexData.data()); glEnableVertexAttribArray(program->positionAttribute); glVertexAttribPointer(program->texCoordAttribute, 2, GL_FLOAT, false, 0, game.texCoordData.data()); glEnableVertexAttribArray(program->texCoordAttribute); glUseProgram(program->programID); glDrawArrays(GL_TRIANGLES, 0, game.vertexData.size() / 2);//vertexData.size() gives the number of coordinates, so divide by 2 to get the number of vertices glDisableVertexAttribArray(program->positionAttribute); glDisableVertexAttribArray(program->texCoordAttribute); } const Uint8 *keys = SDL_GetKeyboardState(NULL); void Update(GameState* game, float elapsed) { game->Player.Update(elapsed); } void ProcessInput(GameState* game, float elapsed) {//make a copy of game so that it only applies acceleration for that instance of pressing if (keys[SDL_SCANCODE_LEFT]) { //player moves left game->Player.acceleration.x = -5.0f; } else if (keys[SDL_SCANCODE_RIGHT]) { //player moves left game->Player.acceleration.x = 5.0f; } else if (keys[SDL_SCANCODE_UP]) { game->Player.acceleration.y = 5.0f; } else {//no keys are pressed, have acceleration reset to 0. game->Player.acceleration.x = 0.0f; } //Update(&game, elapsed);//this will update the player velocity but acceleration will remain 0 if no key is pressed } void Render(GameState game, ShaderProgram* program) {//display the entities on screen //render static entities tilemapRender(game,program); //render dynamic entities (note this is rendered after the static entities b/c it needs to be in the frontmost view) game.Player.Render(program); //game->DuckPrincess.Render(program); //for (int i = 0; i < game->BoostVec.size(); i++ ) { // game->BoostVec[i].Render(program); //} //for (int i = 0; i < game->WaterVec.size(); i++) { // game->WaterVec[i].Render(program); //} //comeback doesn't render } int main(int argc, char *argv[]) { SDL_Init(SDL_INIT_VIDEO); displayWindow = SDL_CreateWindow("My Game", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, screenWidth, screenHeight, SDL_WINDOW_OPENGL); SDL_GLContext context = SDL_GL_CreateContext(displayWindow); SDL_GL_MakeCurrent(displayWindow, context); #ifdef _WINDOWS glewInit(); #endif glViewport(0, 0, screenWidth, screenHeight);//sets size and offset of rendering area Matrix projectionMatrix; Matrix viewMatrix; //where in the world you're looking at note that identity means your view is at (0,0) projectionMatrix.SetOrthoProjection(leftScreen, rightScreen, bottomScreen, topScreen, -1.0f, 1.0f);//defining the bounds for the screen for the view matrix //projectionMatrix.SetOrthoProjection(-720.0f, 720.0f, -480.0f, 480.0f, -1.0f, 1.0f);//debug //projectionMatrix.SetOrthoProjection(-72.0f, 72.0f, -48.0f, 48.0f, -1.0f, 1.0f); //projectionMatrix.SetOrthoProjection(-7.2f, 7.2f, -4.8f, 4.8f, -1.0f, 1.0f); texturedProgram.Load(RESOURCE_FOLDER"vertex_textured.glsl", RESOURCE_FOLDER"fragment_textured.glsl"); texturedProgram.SetProjectionMatrix(projectionMatrix); texturedProgram.SetViewMatrix(viewMatrix);//I will nened to have to set viewmatrix to follow player position GameState game; InitializeGame(&game); SDL_Event event; bool done = false; while (!done) { while (SDL_PollEvent(&event)) { if (event.type == SDL_QUIT || event.type == SDL_WINDOWEVENT_CLOSE) { done = true; } } glClearColor(0.5f, 0.0, 0.5f, 1.0f);//clear color //glClear(GL_COLOR_BUFFER_BIT);//set screen to clear color float ticks = (float)SDL_GetTicks() / 1000.0f;//returns the number of millisecs/1000 elapsed since you compiled code float elapsed = ticks - lastFrameTicks;//returns the number of millisecs/1000 elapsed since the last loop of the event lastFrameTicks = ticks; elapsed += accumulator; if (elapsed > 6.0f * FIXED_TIMESTEP) {//initializing the game may take a lot of elapsed time so we don't care about the time in the pre-rendering moments elapsed = 6.0f * FIXED_TIMESTEP; } if (elapsed < FIXED_TIMESTEP) {//if not enough time elapsed yet for desired first frame then don't update accumulator = elapsed; continue;//if elapsed isn't big enough, then ignore what's below, go back to the top of the current while loop. } while (elapsed >= FIXED_TIMESTEP) {//if enough time for a frame, then update each frame until not enough time for single frame //Update(FIXED_TIMESTEP);//uncomment /* render */ //viewMatrix.Translate(30.0f, 0.0f, 0.0f); viewMatrix.Identity(); viewMatrix.Translate(-game.Player.position.x, -game.Player.position.y, 0.0f); texturedProgram.SetViewMatrix(viewMatrix); ProcessInput(&game, elapsed); Update(&game,FIXED_TIMESTEP); Render(game,&texturedProgram); /* render */ elapsed -= FIXED_TIMESTEP; } accumulator = elapsed; /* put rendering stuff here */ //Update(elapsed); //Render(); //ProcessInput(elapsed); SDL_GL_SwapWindow(displayWindow); } SDL_Quit(); return 0; } /*Debug Notes 1)Switched the non-uniform sprite class & draw() to a uniform sprite class & draw() 2)Flaremap.cpp modify the flags to fit the title of my types (e.g. had to change: else if(line == "[ObjectsLayer]") to [Object Layer 1] to match my type name, due to how the Tiled software saved the type as 3)avoid having glCLear() in the same loop as the accumulator FPS checker, that along with "continue" will cause the game to crash. A fix i did was comment out glClear() and then uncommented "continue" */ /*Edit log 1)Edit size of texture 2)Get the player to translate properly 3)Get the view matrix to follow the player 4)Get the tiled background to render properly. Use the tilemap render function (vector of vertices) from 3-05 slides 5)The player is at the top-left of the stage-rendered-screen for some reason. Fixed: utilize a modelmatrix for the static entities 6)After rendering the static entities, it seems that the top-left of the level-layer is at the origin. But the player doesn't seem to be on the 16x16 tile. Also it seems that somehow the waterbottle is also nearly at the right place despite not having coordinates assigned. fix: offset the dynamic entities by halfSide (i.e. 6.0f) to the right and down. 7.0)Change the scaling 7.1)Allow the player to move (i.e. walk & fly). Apply friction. Make a cap for velocity. 8)Apply gravity & Make some of the static entities physical (e.g. player can't fall under the floor) 9)Apply effects of dynamic entities */
[ "noreply@github.com" ]
Vikktour.noreply@github.com
1acf9d1364a199bddfdea902820b8711c5809052
bdfe965225a849fcb126623be1556bf059de7df6
/UVA_11028 - Sum of Product.cpp
19f91132a84136a15782e50b2e10fb03b620a7e1
[]
no_license
rabelhmd/UVA-Solutions
84607f333a8145fedccb73dd0fa694c25516d4ca
562d90fdf075f75d8e0669c749aa865c57d690d6
refs/heads/master
2021-07-15T16:01:21.697126
2017-10-20T07:01:26
2017-10-20T07:01:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
435
cpp
#include "bits/stdc++.h" using namespace std; #define LL long long int main() { LL value[30] = {1, 1, 1, 3, 8, 21, 43, 69, 102, 145, 197, 261, 336, 425, 527, 645, 778, 929, 1097, 1285,1492, 1721, 1971, 2245, 2542, 2865, 3213, 3589 }; LL N, Case = 1; while(scanf("%lld", &N) == 1 and N) { N--; printf("Case #%lld: %lld\n",Case++, value[N]); } return 0; }
[ "rabelhmd@gmail.com" ]
rabelhmd@gmail.com
30b5a9164976b39e3c3b549777f8cbf7096ed01b
e393af0196437c5ae14a33f67f587d886b96a49d
/ugrepclient/ugrepclient.cpp
1e88ff589dd1fe888c9fee1c856999995ab594f7
[]
no_license
michaelhangang/Remote-UltraGrep
87e8b6eb2d3b63b091c2445fbef65a55c7fe25e9
3fa3c373fd5cc94f05b4bde59d7b326ab74d0a43
refs/heads/master
2023-01-28T22:56:06.788105
2020-12-11T03:22:47
2020-12-11T03:22:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,065
cpp
// ugrepclient.cpp : This file contains the 'main' function. Program execution begins and ends there. //Author : Gang Han //Data: 2020 12.10 #include "ClientTcpSocket.hpp" #include <string> #include <thread> #include <future> #include <sstream> using namespace std; // Get a report from a server. void getReport(promise<string>& p, string& input, ClientTcpSocket& client) { string results = client.communication(input.c_str()); p.set_value(results); } // Validate the command bool validateCommend(string const& command) { istringstream iss(command); string line; vector<string> commands; while (getline(iss, line, ' ')) { if (line != "") { commands.push_back(line); } } if (commands.size() != 3) { cout << "The number of the commands was not correct!" << endl; return true; } return false; } int main(int argc, char* argv[]) { if (argc > 2 ) { cout << "Please enter ugrepclient [ip]" << endl; return EXIT_FAILURE; } ClientTcpSocket client; int result = client.initialize(); if (result == EXIT_FAILURE) return EXIT_FAILURE; client.createSocket(); if (argc == 2) { string ip = argv[1]; client.createAddress(ip.c_str()); } else { client.createAddress("127.0.0.1"); } int reponse = client.connectServer(); if (reponse == EXIT_FAILURE) return EXIT_FAILURE; cout << "Please enter grep command - remotefolder regex .exts : "; string line; try { while (getline(cin, line)) { // If command is not ':quit', it will be validated. if (line != ":quit") { if (validateCommend(line)) { // Check if the number of the commands is correct. cout << "Please enter grep command - remotefolder regex .exts : "; continue; } } // Creat a seperate thread for the communication promise<string> p; future<string> promiseFuture = p.get_future(); thread(&getReport, ref(p), ref(line), ref(client)).detach(); // Wait for the result promiseFuture.wait(); auto results = promiseFuture.get(); if (results != "") { // Check if the server terminated if (results == "server exit") { cout << "Server terminated" << endl; break; } cout << results << endl; } else cout << "No result was produced." << endl; cout << "Please enter grep command - remotefolder regex .exts : "; } } catch (const std::exception&e) { cout << e.what() << endl; return EXIT_FAILURE; } catch (...) { std::cerr << "Error: an unknown exception has been caught by main()\n"; return EXIT_FAILURE; } client.clean(); }
[ "46079251+michaelhangang@users.noreply.github.com" ]
46079251+michaelhangang@users.noreply.github.com
4c6da692a7eeae54d7ab3aa8a9fc8c8d7e3d703a
a3cdfe003b946b7fc3c5d2e8dd0acf88a49c117c
/test/impl/oclint/rule/CyclomaticComplexityRuleTest.cpp
8fc7bccbb74137592dcdaa62b050b896582d99fa
[ "BSD-3-Clause" ]
permissive
ghorvath/oclint
8d3eb0a6aa072b61fdc444ae7fb2f224602ad6ef
687d960e26aed4a9afa50ab6985117a5de27199b
refs/heads/master
2021-01-18T09:04:42.174460
2011-12-05T18:47:38
2011-12-05T18:47:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,158
cpp
#include "oclint/rule/CyclomaticComplexityRuleTest.h" #include "oclint/ViolationSet.h" #include "oclint/Violation.h" #include "oclint/StringSourceCode.h" #include "oclint/helper/CursorHelper.h" #include "oclint/helper/CursorExtractionHelper.h" #include <clang/AST/DeclObjC.h> using namespace clang; void CyclomaticComplexityRuleTest::setUp() { _rule = new CyclomaticComplexityRule(); } void CyclomaticComplexityRuleTest::tearDown() { delete _rule; } void CyclomaticComplexityRuleTest::testRuleName() { TS_ASSERT_EQUALS(_rule->name(), "high cyclomatic complexity"); } void CyclomaticComplexityRuleTest::checkRule(pair<CXCursor, CXCursor> cursorPair, bool isViolated) { ViolationSet violationSet; _rule->apply(cursorPair.first, cursorPair.second, violationSet); if (isViolated) { TS_ASSERT_EQUALS(violationSet.numberOfViolations(), 1); Violation violation = violationSet.getViolations().at(0); TS_ASSERT_EQUALS(violation.rule, _rule); } else { TS_ASSERT_EQUALS(violationSet.numberOfViolations(), 0); } } void CyclomaticComplexityRuleTest::checkRule(string source, bool isViolated) { StringSourceCode strCode(source, "m"); pair<CXCursor, CXCursor> cursorPair = extractCursor(strCode, ^bool(CXCursor node, CXCursor parentNode) { Decl *decl = CursorHelper::getDecl(node); return decl && isa<ObjCMethodDecl>(decl); }); checkRule(cursorPair, isViolated); } void CyclomaticComplexityRuleTest::testCCNSevenIsNotASmell() { string strSource = "@implementation ClassName\n- (void)aMethodWithNineCCN { \ if(1) {} if(1) {} if(1) {} if(1) {} if(1) {} if(1) {} }\n@end"; checkRule(strSource, false); } void CyclomaticComplexityRuleTest::testCCNEightIsASmell() { string strSource = "@implementation ClassName\n- (void)aMethodWithTenCCN { \ if(1) {} if(1) {} if(1) {} if(1) {} if(1) {} if(1) {} if(1) {} }\n@end"; checkRule(strSource, true); } void CyclomaticComplexityRuleTest::testCCNNineIsASmell() { string strSource = "@implementation ClassName\n- (void)aMethodWithTenCCN { \ if(1) {} if(1) {} if(1) {} if(1) {} if(1) {} if(1) {} if(1) {} if(1) {} }\n@end"; checkRule(strSource, true); }
[ "longyi@chaione.com" ]
longyi@chaione.com
354c80704a58cd185a70d327f6195259e3a36180
f152cdd9835669f918c68951e8fb1c1cf6a5a642
/qceplib-base/qcepdataimportdialog.h
109b546cfe4c997d0100438857b24b690182606d
[]
no_license
guyjennings/qceplib
ae71d4f2d962d54c9843c0ae5ef0cba4e45d00f6
85ff3e5f320d50296f0719a4b0291f4bbac7df1f
refs/heads/master
2021-01-16T17:47:30.316468
2017-07-05T20:41:27
2017-07-05T20:41:27
39,257,529
0
0
null
null
null
null
UTF-8
C++
false
false
1,234
h
#ifndef QCEPDATAIMPORTDIALOG_H #define QCEPDATAIMPORTDIALOG_H #include <QDialog> #include "ui_qcepdataimportdialog.h" #include "qcepdatasetmodel-ptr.h" #include "qcepexperiment-ptr.h" #include "qcepdataimportparameters-ptr.h" #include <QModelIndexList> class QcepDataImportDialog : public QDialog, public Ui::QcepDataImportDialog { Q_OBJECT public: explicit QcepDataImportDialog(QcepDatasetModelPtr indata, QModelIndexList &inselect, QcepDatasetModelPtr destdata, QModelIndexList &destselect, QStringList files, QcepExperimentPtr expt, QcepDataImportParametersPtr parms); ~QcepDataImportDialog(); void accept(); public slots: void importProgress(double pct); void importCompleted(); private: QcepDatasetModelPtr m_InData; QModelIndexList &m_InSelect; QcepDatasetModelPtr m_DestData; QModelIndexList m_DestSelect; QStringList m_Files; QcepExperimentPtr m_Experiment; QcepDataImportParametersPtr m_Parameters; }; #endif // QCEPDATAIMPORTDIALOG_H
[ "jennings@anl.gov" ]
jennings@anl.gov
6cd985617eb8d700936706a09341c68c829b0d54
6d7bc6936fe467ce2eafcda3c933176a0cbea0c4
/code/include/results.hpp
369d140fb38ff514f4d24209a916e3fa59785536
[]
no_license
wrossmorrow/floatsums
f661ddc8268215b2cff37a52193cc64fb6cb9139
4ca64b7b4e02f60022431305c52073b344ae7363
refs/heads/master
2022-12-18T13:45:43.459638
2020-09-22T17:21:45
2020-09-22T17:21:45
297,154,727
0
0
null
null
null
null
UTF-8
C++
false
false
2,209
hpp
#include <fstream> using namespace std; class Results { public: char lbl[3] = {'+','-','?'}; int fcc[3] = {0} , fdc[3] = {0}, dcc[3] = {0}, ddc[3] = {0}; int N , T; bool B , F , D; Results( int N , int T , bool B , bool F , bool D ) : N{N},T{T},B{B},F{F},D{D} {} void write( const char * const fn , const char sl ) { ofstream file; file.open( fn , ios::out ); for( int i = 0 ; i < 3 ; i++ ) { file << this->N << ","; file << this->T << ","; file << this->lbl[i] << ","; file << sl << ","; file << (this->B ? 'y' : 'n') << ","; if( this->B ) { file << (this->F ? 'y' : 'n') << ","; file << (this->D ? 'y' : 'n') << ","; } else { file << "-,-,"; } file.setf(ios::fixed, ios::floatfield); file.precision(2); file << 100.0*((double)this->fcc[i])/((double)T) << ","; file << 100.0*((double)this->fdc[i])/((double)T) << ","; file << 100.0*((double)this->dcc[i])/((double)T) << ","; file << 100.0*((double)this->ddc[i])/((double)T) << "\n"; } file.close(); } void print( const char sl ) noexcept { for( int i = 0 ; i < 3 ; i++ ) { std::cout << this->N << ","; std::cout << this->T << ","; std::cout << this->lbl[i] << ","; std::cout << sl << ","; std::cout << (this->B ? 'y' : 'n') << ","; std::cout << (this->F ? 'y' : 'n') << ","; std::cout << (this->D ? 'y' : 'n') << ","; std::cout.setf(ios::fixed, ios::floatfield); std::cout.precision(2); std::cout.width(6); std::cout << 100.0*((double)this->fcc[i])/((double)T) << ","; std::cout.width(6); std::cout << 100.0*((double)this->fdc[i])/((double)T) << ","; std::cout.width(6); std::cout << 100.0*((double)this->dcc[i])/((double)T) << ","; std::cout.width(6); std::cout << 100.0*((double)this->ddc[i])/((double)T) << "\n"; } } };
[ "morrowwr@mememe.local" ]
morrowwr@mememe.local
4ac64163b0b9b21a8980ad2d00399f21c1dead19
40e8f4e01c3bdbfa2b96c56849644d4b3fb29c36
/main.cpp
a92fc56f7ef3d29825d25c02bd9b7aae77dbddcb
[ "MIT" ]
permissive
CaptainFlint/hideconsole_hdls
fb348d25c2185e0fb11eaaf0e5508ea4f5b9695c
2eec957936f7257fe31068d6c1a203f7bfe84b37
refs/heads/master
2021-04-25T08:06:28.578236
2018-02-20T13:55:49
2018-02-20T13:55:49
122,204,863
2
0
null
null
null
null
UTF-8
C++
false
false
1,943
cpp
#include <Windows.h> __forceinline void ZeroMem(void* buf, size_t sz) { for (size_t i = 0; i < sz; ++i) ((BYTE*)buf)[i] = 0; } int wWinMainCRTStartup() { LPWSTR CmdLine = GetCommandLine(); // Remove the main executable from command line bool InsideQuotes = false; while ((*CmdLine > L' ') || (*CmdLine && InsideQuotes)) { // Flip the InsideQuotes if current character is a double quote if (*CmdLine == L'"') InsideQuotes = !InsideQuotes; ++CmdLine; } // Skip past any white space preceeding the second token. while (*CmdLine && (*CmdLine <= L' ')) ++CmdLine; PROCESS_INFORMATION pi; STARTUPINFO si; ZeroMem(&pi, sizeof(pi)); ZeroMem(&si, sizeof(si)); si.dwFlags = STARTF_USESTDHANDLES; si.hStdInput = GetStdHandle(STD_INPUT_HANDLE); si.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE); si.hStdError = GetStdHandle(STD_ERROR_HANDLE); if (CreateProcess(NULL, CmdLine, NULL, NULL, TRUE, CREATE_UNICODE_ENVIRONMENT | CREATE_NO_WINDOW, NULL, NULL, &si, &pi) == 0) { DWORD err = GetLastError(); const LPCWSTR MsgPrefix = L"Failed to run command:\n"; LPWSTR MsgError; LPWSTR MsgResult; size_t MsgPrefixLen = lstrlenW(MsgPrefix); size_t MsgErrorLen = FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, err, MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US), (LPWSTR)&MsgError, 0, NULL ); size_t BufSize = (MsgPrefixLen + MsgErrorLen + 1) * sizeof(WCHAR); MsgResult = (LPWSTR)LocalAlloc(LMEM_ZEROINIT, BufSize); lstrcpyW(MsgResult, MsgPrefix); lstrcpyW(MsgResult + MsgPrefixLen, MsgError); MessageBox(NULL, MsgResult, L"Console Hider", MB_ICONERROR | MB_OK); LocalFree(MsgResult); LocalFree(MsgError); ExitProcess(1); } WaitForSingleObject(pi.hProcess, INFINITE); CloseHandle(pi.hProcess); CloseHandle(pi.hThread); ExitProcess(0); }
[ "support@flint-inc.ru" ]
support@flint-inc.ru
30657d81974179420ba9c360fd0781b03626da87
3c2bfc001cebbe84de00360b015960617128949b
/epoch1/gridpack/ggttgg/madevent/Source/nexternal.inc
5ee84b63aa7da63ccf6df03133973c713b1d010d
[]
no_license
YoungKwonJo/madgraph4gpu
5bfaadad1370f7d4104cb19f49ee17d5532694ad
775b30399bc3d88eedbc6d6cc928eba20be3c415
refs/heads/master
2023-07-29T23:17:23.441919
2021-09-24T14:00:43
2021-09-24T14:00:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
41
inc
../SubProcesses/P1_gg_ttxgg/nexternal.inc
[ "andrea.valassi@cern.ch" ]
andrea.valassi@cern.ch
bdd0cf6894683ac98203054e77b663597aad2bee
c68f791005359cfec81af712aae0276c70b512b0
/Damascus Collegiate Programming Contest 2015/g.cpp
07e92d14401456aee5e752c8334eed14abf94c78
[]
no_license
luqmanarifin/cp
83b3435ba2fdd7e4a9db33ab47c409adb088eb90
08c2d6b6dd8c4eb80278ec34dc64fd4db5878f9f
refs/heads/master
2022-10-16T14:30:09.683632
2022-10-08T20:35:42
2022-10-08T20:35:42
51,346,488
106
46
null
2017-04-16T11:06:18
2016-02-09T04:26:58
C++
UTF-8
C++
false
false
777
cpp
#include <bits/stdc++.h> using namespace std; const int mod = 1e9 + 7; const int N = 2e4 + 5; long long fact[N], ifact[N]; long long power(long long a, long long b) { if(b == 0) return 1; long long temp = power(a, b / 2); temp = temp * temp % mod; if(b & 1) { temp = temp * a % mod; } return temp; } long long inv(long long a) { return power(a, mod - 2); } long long c(int n, int k) { return fact[n] * ifact[k] % mod * ifact[n - k] % mod; } void init() { fact[0] = ifact[0] = 1; for(int i = 1; i < N; i++) { fact[i] = fact[i - 1] * i % mod; ifact[i] = inv(fact[i]); } } int main() { init(); int t; scanf("%d", &t); while(t--) { int a, b; scanf("%d %d", &a, &b); printf("%d\n", (int) c(a + b, a)); } return 0; }
[ "l.arifin.siswanto@gmail.com" ]
l.arifin.siswanto@gmail.com
041a04ac1a18d781d20ee7fedbfa016f1d4436ea
b578be254fe1acfe98f054576aaaeec7490e43f3
/Plugin/Importer/aiContext.cpp
631aae6ae062a51e39adf7616cd168424fa9fa45
[ "MIT" ]
permissive
ElonGame/AlembicImporter
d1685b91872171e918eb8d3cd5b916e2c65e53ac
efe710d2bb959117aea6ca1312c6490206de3a8f
refs/heads/master
2021-05-16T13:57:37.471780
2016-01-18T15:01:42
2016-01-18T15:01:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,061
cpp
#include "pch.h" #include "AlembicImporter.h" #include "aiLogger.h" #include "aiContext.h" #include "aiObject.h" #include "aiSchema.h" #include "aiXForm.h" #include "aiPolyMesh.h" #include "aiCamera.h" #include <limits> class GlobalCache { public: struct ArchiveItem { Abc::IArchive archive; int refcount; }; typedef std::map<int, aiContext*> ContextMap; typedef std::map<std::string, ArchiveItem> ArchiveMap; public: static aiContext* GetContext(int uid) { ContextMap::iterator it = ms_instance.m_contexts.find(uid); if (it != ms_instance.m_contexts.end()) { aiLogger::Info("Using already created context for gameObject with ID %d", uid); return it->second; } else { return 0; } } static bool RegisterContext(int uid, aiContext *ctx) { ContextMap::iterator it = ms_instance.m_contexts.find(uid); if (it != ms_instance.m_contexts.end()) { return false; } else { aiLogger::Info("Register context for gameObject with ID %d", uid); ms_instance.m_contexts[uid] = ctx; if (!RefArchive(ctx->getPath())) { AddArchive(ctx->getPath(), ctx->getArchive()); } return true; } } static void UnregisterContext(int uid) { ContextMap::iterator it = ms_instance.m_contexts.find(uid); if (it != ms_instance.m_contexts.end()) { UnrefArchive(it->second->getPath()); aiLogger::Info("Unregister context for gameObject with ID %d", uid); ms_instance.m_contexts.erase(it); } } static bool AddArchive(const std::string &path, Abc::IArchive archive) { if (!archive.valid()) { return false; } ArchiveMap::iterator it = ms_instance.m_archives.find(path); if (it != ms_instance.m_archives.end()) { return false; } else { aiLogger::Info("Add new alembic archive '%s'", path.c_str()); ArchiveItem &item = ms_instance.m_archives[path]; item.refcount = 1; item.archive = archive; return true; } } static Abc::IArchive RefArchive(const std::string &path) { ArchiveMap::iterator it = ms_instance.m_archives.find(path); if (it != ms_instance.m_archives.end()) { aiLogger::Info("Reference alembic archive '%s'", path.c_str()); it->second.refcount += 1; return it->second.archive; } else { return Abc::IArchive(); } } static void UnrefArchive(const std::string &path) { ArchiveMap::iterator it = ms_instance.m_archives.find(path); if (it != ms_instance.m_archives.end()) { aiLogger::Info("Unreference alembic archive '%s'", path.c_str()); it->second.refcount -= 1; if (it->second.refcount <= 0) { aiLogger::Info("Remove alembic archive '%s'", path.c_str()); ms_instance.m_archives.erase(it); } } } private: GlobalCache() { } ~GlobalCache() { if (m_contexts.size()) { aiLogger::Warning("%lu remaining context(s) registered", m_contexts.size()); } for (ContextMap::iterator it=m_contexts.begin(); it!=m_contexts.end(); ++it) { delete it->second; } m_contexts.clear(); m_archives.clear(); } private: ContextMap m_contexts; ArchiveMap m_archives; static GlobalCache ms_instance; }; GlobalCache GlobalCache::ms_instance; // --- aiContext* aiContext::create(int uid) { aiContext *ctx = GlobalCache::GetContext(uid); if (!ctx) { ctx = new aiContext(uid); GlobalCache::RegisterContext(uid, ctx); } return ctx; } void aiContext::destroy(aiContext* ctx) { GlobalCache::UnregisterContext(ctx->getUid()); delete ctx; } aiContext::aiContext(int uid) : m_path("") , m_uid(uid) { m_timeRange[0] = 0; m_timeRange[1] = 0; } aiContext::~aiContext() { waitTasks(); m_top_node.reset(); m_archive.reset(); } Abc::IArchive aiContext::getArchive() const { return m_archive; } const std::string& aiContext::getPath() const { return m_path; } int aiContext::getNumTimeSamplings() { return (int)m_archive.getNumTimeSamplings(); } void aiContext::getTimeSampling(int i, aiTimeSamplingData& dst) { auto ts = m_archive.getTimeSampling(i); auto tst = ts->getTimeSamplingType(); dst.numTimes = (int)ts->getNumStoredTimes(); if (tst.isUniform() || tst.isCyclic()) { int numCycles = int(m_archive.getMaxNumSamplesForTimeSamplingIndex(i) / tst.getNumSamplesPerCycle()); dst.type = tst.isUniform() ? aiTimeSamplingType_Uniform : aiTimeSamplingType_Cyclic; dst.interval = (float)tst.getTimePerCycle(); dst.startTime = (float)ts->getStoredTimes()[0]; dst.endTime = dst.startTime + dst.interval * (numCycles - 1); } else if (tst.isAcyclic()) { dst.type = aiTimeSamplingType_Acyclic; dst.startTime = (float)ts->getSampleTime(0); dst.endTime = (float)ts->getSampleTime(ts->getNumStoredTimes() - 1); dst.times = const_cast<double*>(&ts->getStoredTimes()[0]); } } void aiContext::copyTimeSampling(int i, aiTimeSamplingData& dst) { int dst_numSamples = dst.numTimes; double *dst_samples = dst.times; getTimeSampling(i, dst); if (dst.type == aiTimeSamplingType_Acyclic) { const auto& times = m_archive.getTimeSampling(i)->getStoredTimes(); if (dst_samples && dst_numSamples >= (int)times.size()) { // memcpy() is way faster than std::copy() on VC... memcpy(dst.times, &times[0], sizeof(times[0])*times.size()); } } } int aiContext::getTimeSamplingIndex(Abc::TimeSamplingPtr ts) { int n = m_archive.getNumTimeSamplings(); for (int i = 0; i < n; ++i) { if (m_archive.getTimeSampling(i) == ts) { return i; } } return 0; } int aiContext::getUid() const { return m_uid; } const aiConfig& aiContext::getConfig() const { return m_config; } void aiContext::setConfig(const aiConfig &config) { DebugLog("aiContext::setConfig: %s", config.toString().c_str()); m_config = config; } void aiContext::gatherNodesRecursive(aiObject *n) { abcObject &abc = n->getAbcObject(); size_t numChildren = abc.getNumChildren(); for (size_t i = 0; i < numChildren; ++i) { aiObject *child = n->newChild(abc.getChild(i)); gatherNodesRecursive(child); } } void aiContext::reset() { DebugLog("aiContext::reset()"); // just in case waitTasks(); m_top_node.reset(); GlobalCache::UnrefArchive(m_path); m_path = ""; m_archive.reset(); m_timeRange[0] = 0.0f; m_timeRange[1] = 0.0f; } std::string aiContext::normalizePath(const char *inPath) const { std::string path; if (inPath != nullptr) { path = inPath; #ifdef _WIN32 size_t n = path.length(); for (size_t i=0; i<n; ++i) { char c = path[i]; if (c == '\\') { path[i] = '/'; } else if (c >= 'A' && c <= 'Z') { path[i] = 'a' + (c - 'A'); } } #endif } return path; } bool aiContext::load(const char *inPath) { std::string path = normalizePath(inPath); DebugLog("aiContext::load: '%s'", path.c_str()); if (path == m_path && m_archive) { aiLogger::Info("Context already loaded for gameObject with id %d", m_uid); return true; } aiLogger::Info("Alembic file path changed from '%s' to '%s'. Reset context.", m_path.c_str(), path.c_str()); aiLogger::Indent(1); reset(); if (path.length() == 0) { aiLogger::Unindent(1); return false; } m_path = path; m_archive = GlobalCache::RefArchive(m_path); if (!m_archive.valid()) { aiLogger::Info("Archive '%s' not yet opened", inPath); try { DebugLog("Trying to open AbcCoreOgawa::ReadArchive..."); m_archive = Abc::IArchive(AbcCoreOgawa::ReadArchive(std::thread::hardware_concurrency()), path); } catch (Alembic::Util::Exception e) { DebugLog("Failed (%s)", e.what()); try { DebugLog("Trying to open AbcCoreHDF5::ReadArchive..."); m_archive = Abc::IArchive(AbcCoreHDF5::ReadArchive(), path); } catch (Alembic::Util::Exception e) { DebugLog("Failed (%s)", e.what()); } } } else { aiLogger::Info("Archive '%s' already opened", inPath); } if (m_archive.valid()) { abcObject abcTop = m_archive.getTop(); m_top_node.reset(new aiObject(this, nullptr, abcTop)); gatherNodesRecursive(m_top_node.get()); m_timeRange[0] = std::numeric_limits<double>::max(); m_timeRange[1] = -std::numeric_limits<double>::max(); for (unsigned int i=0; i<m_archive.getNumTimeSamplings(); ++i) { AbcCoreAbstract::TimeSamplingPtr ts = m_archive.getTimeSampling(i); AbcCoreAbstract::TimeSamplingType tst = ts->getTimeSamplingType(); // Note: alembic guaranties we have at least one stored time if (tst.isCyclic() || tst.isUniform()) { int numCycles = int(m_archive.getMaxNumSamplesForTimeSamplingIndex(i) / tst.getNumSamplesPerCycle()); m_timeRange[0] = ts->getStoredTimes()[0]; m_timeRange[1] = m_timeRange[0] + (numCycles - 1) * tst.getTimePerCycle(); } else if (tst.isAcyclic()) { m_timeRange[0] = ts->getSampleTime(0); m_timeRange[1] = ts->getSampleTime(ts->getNumStoredTimes() - 1); } } if (m_timeRange[0] > m_timeRange[1]) { m_timeRange[0] = 0.0; m_timeRange[1] = 0.0; } DebugLog("Succeeded"); GlobalCache::AddArchive(m_path, m_archive); aiLogger::Unindent(1); return true; } else { aiLogger::Error("Invalid archive '%s'", inPath); m_path = ""; m_archive.reset(); m_timeRange[0] = 0.0; m_timeRange[1] = 0.0; aiLogger::Unindent(1); return false; } } float aiContext::getStartTime() const { return float(m_timeRange[0]); } float aiContext::getEndTime() const { return float(m_timeRange[1]); } aiObject* aiContext::getTopObject() { return m_top_node.get(); } void aiContext::destroyObject(aiObject *obj) { if (obj == getTopObject()) { m_top_node.reset(); } else { delete obj; } } void aiContext::updateSamples(float time) { if (m_config.useThreads) { DebugLog("aiContext::updateSamples() [threaded]"); eachNodes([](aiObject *o) { o->readConfig(); }); eachNodes([this, time](aiObject *o) { enqueueTask([o, time]() { o->updateSample(time); }); }); waitTasks(); eachNodes([](aiObject *o) { o->notifyUpdate(); }); } else { DebugLog("aiContext::updateSamples()"); eachNodes([time](aiObject *o) { o->updateSample(time); }); } } void aiContext::updateSamplesBegin(float time) { eachNodes([](aiObject *o) { o->readConfig(); }); enqueueTask([this, time](){ eachNodes([time](aiObject *o) { o->updateSample(time); }); }); } void aiContext::updateSamplesEnd() { waitTasks(); eachNodes([](aiObject *o) { o->notifyUpdate(); }); } void aiContext::enqueueTask(const std::function<void()> &task) { m_tasks.run(task); } void aiContext::waitTasks() { m_tasks.wait(); }
[ "saint.skr@gmail.com" ]
saint.skr@gmail.com
be59bdb86b9f17cd457bd39907c35126fe34c28f
ef89332ae5a17dc1c79d2a71a12e3f3aab555c3a
/Info/LaboDocumentation/Presentations/SEE_examples/RobocupExample/Manager.cpp
fc6c8685d4c8357c7f25a5b2360542a848d79a33
[]
no_license
sammaes/piBotSchakel
faa7d6c9a4e4e6f6af5912147aa439f76069e6cd
c7d04e0b44b96f4d5e08af7a0b16f22a38496547
refs/heads/master
2021-01-18T22:38:36.306260
2016-04-14T13:44:32
2016-04-14T13:44:32
32,748,946
0
0
null
null
null
null
UTF-8
C++
false
false
1,027
cpp
/* * Author: Floris De Smedt - EAVISE/VISICS * * Manager.cpp */ #include "Manager.h" void Manager::AddRobot(string name, Point Location){ RBots.push_back(new Robot(name,Location)); } int Manager::FindPosition(string name){ for(int i=0;i<this->RBots.size();i++){ if(RBots[i]->getName()==name) return i; } /* As you can see, there is no protection for non-existing names ... */ } void Manager::DeleteRobot(string name){ //Find the position of the robot int Pos = FindPosition(name); // delete the dynamic allocated robot-object delete RBots[Pos]; // remove the location from the vector RBots.erase(RBots.begin()+Pos); } void Manager::PrintRobots(){ for(int i=0;i<RBots.size();i++) RBots[i]->PrintRobot(); } void Manager::Move(string name, Point P){ int Pos = FindPosition(name); RBots[Pos]->DriveTo(P); } Manager::~Manager(){ cout << "deleting the remaining robots: " << endl; for(int i=0;i<RBots.size();i++) delete RBots[i]; }
[ "sammaes92@gmail.com" ]
sammaes92@gmail.com
d549cdb8c7d3ddc08a803c12906d458746b7e992
9e37bb8dc004cc39f39aae340b5ca5e3223bbde0
/095-1929.cpp
e6781f7cc32c656ec4dc0c48e2906c76c1a59278
[]
no_license
yongsoonko/solved-problems
5868823edfa2a5451b23b06e06ee7855b7073182
55dd3e0a1e40581f48a46b4ed78455d04de41ffc
refs/heads/master
2022-11-19T15:23:39.938416
2020-04-07T03:37:15
2020-04-07T03:37:15
221,386,455
0
0
null
null
null
null
UTF-8
C++
false
false
610
cpp
#include <iostream> #include <string> #include <time.h> #include <vector> #include <cmath> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); clock_t start = clock(); int m, n; cin >> m >> n; // 소수인 경우 true vector<bool> v(n + 1, true); v[1] = false; for (int i = 2; i <= sqrt(n); i++) { for (int j = i + i; j <= n; j += i) { v[j] = false; } } for (int i = m; i <= n; i++) { if (v[i]) cout << i << ' '; } float _time = (float)(clock() - start) / CLOCKS_PER_SEC; // cout << "\ntime : " << _time; }
[ "goys5228@gmail.com" ]
goys5228@gmail.com
bfa411a5b414acfa252b9147201bb7c08d649fbb
c1f40215bd8e7c2423e56422018de94bb9daaa09
/venv/lib/python3.7/site-packages/pystan/stan/lib/stan_math/stan/math/prim/mat/prob/lkj_cov_lpdf.hpp
55d6f667b0d8619c2421c62b149f197ef0911c72
[ "MIT", "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
vchiapaikeo/prophet
e05fc1854fed35387449e6a11f89f03187f344a1
e8c250ca7bfffc280baa7dabc80a2c2d1f72c6a7
refs/heads/master
2022-04-22T04:49:09.716851
2020-04-18T15:21:18
2020-04-18T15:21:18
256,718,973
0
0
MIT
2020-04-18T14:34:53
2020-04-18T09:53:39
Python
UTF-8
C++
false
false
4,811
hpp
#ifndef STAN_MATH_PRIM_MAT_PROB_LKJ_COV_LPDF_HPP #define STAN_MATH_PRIM_MAT_PROB_LKJ_COV_LPDF_HPP #include <stan/math/prim/scal/err/check_size_match.hpp> #include <stan/math/prim/mat/err/check_square.hpp> #include <stan/math/prim/scal/err/check_finite.hpp> #include <stan/math/prim/scal/err/check_positive.hpp> #include <stan/math/prim/scal/fun/constants.hpp> #include <stan/math/prim/scal/prob/lognormal_lpdf.hpp> #include <stan/math/prim/mat/prob/lkj_corr_lpdf.hpp> #include <stan/math/prim/scal/meta/include_summand.hpp> namespace stan { namespace math { // LKJ_cov(y|mu, sigma, eta) [ y covariance matrix (not correlation matrix) // mu vector, sigma > 0 vector, eta > 0 ] template <bool propto, typename T_y, typename T_loc, typename T_scale, typename T_shape> typename boost::math::tools::promote_args<T_y, T_loc, T_scale, T_shape>::type lkj_cov_lpdf(const Eigen::Matrix<T_y, Eigen::Dynamic, Eigen::Dynamic>& y, const Eigen::Matrix<T_loc, Eigen::Dynamic, 1>& mu, const Eigen::Matrix<T_scale, Eigen::Dynamic, 1>& sigma, const T_shape& eta) { static const char* function = "lkj_cov_lpdf"; using boost::math::tools::promote_args; typename promote_args<T_y, T_loc, T_scale, T_shape>::type lp(0.0); check_size_match(function, "Rows of location parameter", mu.rows(), "columns of scale parameter", sigma.rows()); check_square(function, "random variable", y); check_size_match(function, "Rows of random variable", y.rows(), "rows of location parameter", mu.rows()); check_positive(function, "Shape parameter", eta); check_finite(function, "Location parameter", mu); check_finite(function, "Scale parameter", sigma); for (int m = 0; m < y.rows(); ++m) for (int n = 0; n < y.cols(); ++n) check_finite(function, "Covariance matrix", y(m, n)); const unsigned int K = y.rows(); const Eigen::Array<T_y, Eigen::Dynamic, 1> sds = y.diagonal().array().sqrt(); for (unsigned int k = 0; k < K; k++) { lp += lognormal_lpdf<propto>(sds(k), mu(k), sigma(k)); } if (stan::is_constant<typename stan::scalar_type<T_shape> >::value && eta == 1.0) { // no need to rescale y into a correlation matrix lp += lkj_corr_lpdf<propto, T_y, T_shape>(y, eta); return lp; } Eigen::DiagonalMatrix<T_y, Eigen::Dynamic> D(K); D.diagonal() = sds.inverse(); lp += lkj_corr_lpdf<propto, T_y, T_shape>(D * y * D, eta); return lp; } template <typename T_y, typename T_loc, typename T_scale, typename T_shape> inline typename boost::math::tools::promote_args<T_y, T_loc, T_scale, T_shape>::type lkj_cov_lpdf(const Eigen::Matrix<T_y, Eigen::Dynamic, Eigen::Dynamic>& y, const Eigen::Matrix<T_loc, Eigen::Dynamic, 1>& mu, const Eigen::Matrix<T_scale, Eigen::Dynamic, 1>& sigma, const T_shape& eta) { return lkj_cov_lpdf<false>(y, mu, sigma, eta); } // LKJ_Cov(y|mu, sigma, eta) [ y covariance matrix (not correlation matrix) // mu scalar, sigma > 0 scalar, eta > 0 ] template <bool propto, typename T_y, typename T_loc, typename T_scale, typename T_shape> typename boost::math::tools::promote_args<T_y, T_loc, T_scale, T_shape>::type lkj_cov_lpdf(const Eigen::Matrix<T_y, Eigen::Dynamic, Eigen::Dynamic>& y, const T_loc& mu, const T_scale& sigma, const T_shape& eta) { static const char* function = "lkj_cov_lpdf"; using boost::math::tools::promote_args; typename promote_args<T_y, T_loc, T_scale, T_shape>::type lp(0.0); check_positive(function, "Shape parameter", eta); check_finite(function, "Location parameter", mu); check_finite(function, "Scale parameter", sigma); const unsigned int K = y.rows(); const Eigen::Array<T_y, Eigen::Dynamic, 1> sds = y.diagonal().array().sqrt(); for (unsigned int k = 0; k < K; k++) { lp += lognormal_lpdf<propto>(sds(k), mu, sigma); } if (stan::is_constant<typename stan::scalar_type<T_shape> >::value && eta == 1.0) { // no need to rescale y into a correlation matrix lp += lkj_corr_lpdf<propto>(y, eta); return lp; } Eigen::DiagonalMatrix<T_y, Eigen::Dynamic> D(K); D.diagonal() = sds.inverse(); lp += lkj_corr_lpdf<propto, T_y, T_shape>(D * y * D, eta); return lp; } template <typename T_y, typename T_loc, typename T_scale, typename T_shape> inline typename boost::math::tools::promote_args<T_y, T_loc, T_scale, T_shape>::type lkj_cov_lpdf(const Eigen::Matrix<T_y, Eigen::Dynamic, Eigen::Dynamic>& y, const T_loc& mu, const T_scale& sigma, const T_shape& eta) { return lkj_cov_lpdf<false>(y, mu, sigma, eta); } } // namespace math } // namespace stan #endif
[ "vchiapaikeo@etsy.com" ]
vchiapaikeo@etsy.com
f31b18c1a39dac56015749ab756404a4fed739c0
9c303af1ed008b99b9a4972f18eef6cf8cdd286a
/radix_sort.cpp
364fc7df51d9d1970f68766e25ab89cc54890e0f
[]
no_license
guohengkai/algorithm
9628dd37f34ff0c12858163af1efdbfd8e3823e5
548c2d2840eb68d07f2190a490e4cb814698c659
refs/heads/master
2021-01-19T00:40:48.526808
2018-07-07T08:13:10
2018-07-07T08:13:10
67,852,214
4
1
null
null
null
null
UTF-8
C++
false
false
1,428
cpp
/************************************************************************* > File Name: radix_sort.cpp > Author: Guo Hengkai > Description: Radix sort > Created Time: Sat 10 Sep 2016 03:32:49 PM CST ************************************************************************/ #include "common.h" const int n = 10; const int m = 4; const int scope = pow(10, m); void RadixSort(vector<int>& nums) { vector<size_t> idx; idx.reserve(nums.size()); for (size_t i = 0; i < nums.size(); ++i) { idx.push_back(i); } for (int k = 0, base = 1; k < m; ++k, base *= 10) { vector<int> count(10, 0); for (size_t i = 0; i < idx.size(); ++i) { ++count[nums[idx[i]] / base % 10]; } for (size_t i = 1; i < count.size(); ++i) { count[i] += count[i - 1]; } vector<size_t> new_idx(nums.size()); for (size_t i = n; i > 0; --i) { new_idx[--count[nums[idx[i - 1]] / base % 10]] = idx[i - 1]; } idx = std::move(new_idx); } vector<int> temp(nums); for (size_t i = 0; i < nums.size(); ++i) { nums[i] = temp[idx[i]]; } } int main() { vector<int> nums = GetRandomVector(n, scope); cout << "origin: "; PrintVector(nums); RadixSort(nums); cout << "sorted: "; PrintVector(nums); assert(IsSorted(nums)); return 0; }
[ "guohengkaighk@gmail.com" ]
guohengkaighk@gmail.com
1abf483101a6f7fb05dbbbe922b51e705663007e
4222d4de5d5c081ae6109baed60ee234c495d2a9
/CT/Parser.h
c0fb47c24f98bf052702627d5f8ed8a8b0516f5e
[ "MIT" ]
permissive
bredelings/Compatibility-Testing
b0010b389c259100a14a592a963c6f66c0811d3c
d775a1a052bf09655a154bc115eb95ce00f40d9e
refs/heads/master
2022-12-07T08:49:22.977376
2020-09-01T17:15:38
2020-09-01T17:15:38
292,032,416
0
0
MIT
2020-09-01T15:15:09
2020-09-01T15:15:08
null
UTF-8
C++
false
false
1,873
h
//MIT License // //Copyright (c) 2018 Lei Liu // //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. // // This class implements a parser transforming from Newick format to linked-list tree structure which // is described in SparseTable.h in linear time // This structure is mainly used for analyzing the quality of resulting super tree // Details are implemented in Parser.cpp // #ifndef FGO_PARSER_H #define FGO_PARSER_H #include "SparseTable.h" class Parser { public: dis_tree parse_label(string newick_string); tree_node* parse_label_weight(string newick_string); vector<string> get_label_weight(string str); private: int label_counter = 1;//used for labeling those nodes which do not have any label // the number will be increased without fixing its correctness string string_trim(string& s); }; #endif //FGO_PARSER_H
[ "github4lliu@gmail.com" ]
github4lliu@gmail.com
c95678bdd5cd58bb03bd40f72bb5f6ff5ec31012
6e6ec445c99523c566599894fb9d371127768d47
/minisat/utils/StreamBuffer.h
73777079cfa32e73cd6adc22b49c946e1f07ce1e
[ "MIT" ]
permissive
fkutzner/minisat
9dda52bbeee600b4fb2653e75102f15f9ba7ff69
998df47ed962be5c4cbdbf121b7a680ad76ef4ec
refs/heads/master
2020-03-10T18:50:00.580567
2018-05-18T12:11:28
2018-05-18T12:11:28
129,534,937
0
0
null
2018-04-14T16:32:31
2018-04-14T16:32:31
null
UTF-8
C++
false
false
2,622
h
/************************************************************************************[ParseUtils.h] Copyright (c) 2003-2006, Niklas Een, Niklas Sorensson Copyright (c) 2007-2010, Niklas Sorensson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. **************************************************************************************************/ #ifndef Minisat_StreamBuffer_h #define Minisat_StreamBuffer_h #include <stdlib.h> #include <stdio.h> #include <zlib.h> #include "minisat/mtl/XAlloc.h" namespace Minisat { //------------------------------------------------------------------------------------------------- // A simple buffered character stream class: class StreamBuffer { gzFile in; unsigned char* buf; int pos; int size; enum { buffer_size = 64*1024 }; void assureLookahead() { if (pos >= size) { pos = 0; size = gzread(in, buf, buffer_size); } } public: explicit StreamBuffer(gzFile i) : in(i), pos(0), size(0){ buf = (unsigned char*)xrealloc(NULL, buffer_size); assureLookahead(); } ~StreamBuffer() { free(buf); } int operator * () const { return (pos >= size) ? EOF : buf[pos]; } void operator ++ () { pos++; assureLookahead(); } int position () const { return pos; } }; //------------------------------------------------------------------------------------------------- // End-of-file detection functions for StreamBuffer and char*: static inline bool isEof(StreamBuffer& in) { return *in == EOF; } static inline bool isEof(const char* in) { return *in == '\0'; } } #endif
[ "felixkutzner@gmail.com" ]
felixkutzner@gmail.com
b0d46604bb44bfcfe5238589e204de34d2ead627
6aca6f0d4dd61c7f4208015a04355361e5f0c988
/5/src/user/Hello.cc
f299bb1b8271654d56646a2fbe44e0aae9b4ca51
[]
no_license
bognari/CoStuBs
f1b9b9f1cba8c6047394c07743219b7d0c85b332
ab2ac1738f0584bbdfdc1c048f3346b7d02fb969
refs/heads/master
2021-03-27T13:37:42.263672
2013-06-08T12:53:52
2013-06-08T12:53:52
10,547,883
1
1
null
null
null
null
UTF-8
C++
false
false
1,180
cc
#include "user/Hello.h" #include "system/Environment.h" Hello::Hello(const char* name, int runs, int slice, void* sp, Console& console) : Thread(sp, slice), console(console), runs(runs), name(name) { out.print(name); out.println(" is created!"); this -> start(); } Hello::~Hello() { this -> console.attach(); out.print("Waiting for termination of "); out.println(name); this -> console.detach(); this -> join(); this -> console.attach(); out.print(name); out.println(" is terminated"); this -> console.detach(); } void Hello::run() { this -> console.attach(); out.print(name); out.println("is running "); this -> console.detach(); for (int i = 0; i < runs; i++) { this -> console.attach(); // Konsole reservieren out.print(name); out.print("> "); int size = (this -> console.read(line, LINE_SIZE)); out.print(name); out.print(" got: "); out.print(size); out.print(" "); line[size - 1] = '\0'; // '\n' durch '\0' ersetzen // jetzt koennen wir die Zeile ausgeben out.println(line); this -> console.detach(); // und freigeben } this -> console.attach(); out.print(name); out.println("finished"); this -> console.detach(); }
[ "bognari.s@gmail.com" ]
bognari.s@gmail.com
f18a39dcde55d8ab25acdf2724229a8d79101525
10ed683bcd2ba0ade6095975014f5c43d6ad55e6
/Examples/Fatras/src/detail/FatrasExampleBase.hpp
84a2beebe9df5912845b85e4cef46371c9b035ac
[]
no_license
Sharad24/acts-framework
a922dabeaa3abc548b3fd3c7852f273227323e67
452fdc841a3fd31d6b76baabfd6ca529647baa12
refs/heads/master
2022-12-13T01:31:22.160636
2020-03-11T08:52:08
2020-03-11T08:52:08
204,444,776
0
0
null
null
null
null
UTF-8
C++
false
false
5,121
hpp
// This file is part of the Acts project. // // Copyright (C) 2017 Acts project team // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. #pragma once #include <memory> #include <boost/program_options.hpp> #include "ACTFW/Barcode/BarcodeSvc.hpp" #include "ACTFW/Common/CommonOptions.hpp" #include "ACTFW/Common/GeometryOptions.hpp" #include "ACTFW/Common/OutputOptions.hpp" #include "ACTFW/Digitization/DigitizationOptions.hpp" #include "ACTFW/Fatras/FatrasOptions.hpp" #include "ACTFW/Framework/Sequencer.hpp" #include "ACTFW/Framework/WhiteBoard.hpp" #include "ACTFW/Options/ParticleGunOptions.hpp" #include "ACTFW/Options/Pythia8Options.hpp" #include "ACTFW/Plugins/BField/BFieldOptions.hpp" #include "ACTFW/Plugins/Csv/CsvParticleWriter.hpp" #include "ACTFW/Random/RandomNumbersOptions.hpp" #include "ACTFW/Random/RandomNumbersSvc.hpp" #include "FatrasDigitizationBase.hpp" #include "FatrasEvgenBase.hpp" #include "FatrasSimulationBase.hpp" namespace po = boost::program_options; /// @brief The Fatras example /// /// This instantiates the geometry and runs fast track simultion /// /// @tparam options_setup_t are the callable example options /// @tparam geometry_setup_t Type of the geometry getter struct /// /// @param argc the number of argumetns of the call /// @param argv the argument list /// @param optionsSetup is a callable options struct /// @param geometrySetup is a callable geometry getter template <typename options_setup_t, typename geometry_setup_t> int fatrasExample(int argc, char* argv[], options_setup_t& optionsSetup, geometry_setup_t& geometrySetup) { // Create the config object for the sequencer FW::Sequencer::Config seqConfig; // Now create the sequencer FW::Sequencer sequencer(seqConfig); // Declare the supported program options. po::options_description desc("Allowed options"); // Add the Common options FW::Options::addCommonOptions<po::options_description>(desc); // Add the geometry options FW::Options::addGeometryOptions<po::options_description>(desc); // Add the particle gun options FW::Options::addParticleGunOptions(desc); // Add the Pythia 8 options FW::Options::addPythia8Options(desc); // Add the random number options FW::Options::addRandomNumbersOptions<po::options_description>(desc); // Add the bfield options FW::Options::addBFieldOptions<po::options_description>(desc); // Add the fatras options FW::Options::addFatrasOptions<po::options_description>(desc); // Add the digization options FW::Options::addDigitizationOptions<po::options_description>(desc); // Add the output options FW::Options::addOutputOptions<po::options_description>(desc); // Add program specific options: input / output desc.add_options()("evg-input-type", po::value<std::string>()->default_value("pythia8"), "Type of evgen input 'gun', 'pythia8'"); // Add specific options for this geometry optionsSetup(desc); // Map to store the given program options po::variables_map vm; // Get all options from contain line and store it into the map po::store(po::parse_command_line(argc, argv, desc), vm); po::notify(vm); // Print help if requested if (vm.count("help")) { std::cout << desc << std::endl; return 1; } // Read the common options : number of events and log level auto nEvents = FW::Options::readNumberOfEvents<po::variables_map>(vm); auto logLevel = FW::Options::readLogLevel<po::variables_map>(vm); // Create the random number engine auto randomNumberSvcCfg = FW::Options::readRandomNumbersConfig<po::variables_map>(vm); auto randomNumberSvc = std::make_shared<FW::RandomNumbersSvc>(randomNumberSvcCfg); // Add it to the sequencer sequencer.addServices({randomNumberSvc}); // Create the barcode service FW::BarcodeSvc::Config barcodeSvcCfg; auto barcodeSvc = std::make_shared<FW::BarcodeSvc>( barcodeSvcCfg, Acts::getDefaultLogger("BarcodeSvc", logLevel)); // Add it to the sequencer sequencer.addServices({barcodeSvc}); // Create the geometry and the context decorators auto geometry = geometrySetup(vm); auto tGeometry = geometry.first; auto contextDecorators = geometry.second; // Add it to the sequencer sequencer.addContextDecorators(contextDecorators); // (A) EVGEN // Setup the evgen input to the simulation setupEvgenInput<po::variables_map>( vm, sequencer, barcodeSvc, randomNumberSvc); // (B) SIMULATION // Setup the simulation setupSimulation<po::variables_map>( vm, sequencer, tGeometry, barcodeSvc, randomNumberSvc); // (C) DIGITIZATION // Setup the digitization setupDigitization<po::variables_map>( vm, sequencer, barcodeSvc, randomNumberSvc); // (D) TRUTH TRACKING // (E) PATTERN RECOGNITION // Initiate the run sequencer.run(nEvents); // Return 0 for success return 0; }
[ "f20170472@goa.bits-pilani.ac.in" ]
f20170472@goa.bits-pilani.ac.in
ce960889ecfa2dce1935ae1aa59c9eb3f4dca877
9d0c1da53da9e60d4a891d7edb7a02c31c8d26b9
/kontact/plugins/weather/weather_plugin.cpp
2c0934bf923ba77942ac5ffcdefe8b9bafaf27ca
[]
no_license
serghei/kde3-kdepim
7e6d4a0188c35a2c9c17babd317bfe3c0f1377d2
a1980f1560de118f19f54a5eff5bae87a6aa4784
refs/heads/master
2021-01-17T10:03:14.624954
2018-11-04T21:31:00
2018-11-04T21:31:00
3,688,187
0
0
null
null
null
null
UTF-8
C++
false
false
2,322
cpp
/* This file is part of Kontact. Copyright (C) 2003 Tobias Koenig <tokoe@kde.org> 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; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include <kaboutdata.h> #include <kgenericfactory.h> #include <kparts/componentfactory.h> #include "core.h" #include "summarywidget.h" #include "weather_plugin.h" typedef KGenericFactory< WeatherPlugin, Kontact::Core > WeatherPluginFactory; K_EXPORT_COMPONENT_FACTORY(libkontact_weatherplugin, WeatherPluginFactory("kontact_weatherplugin")) WeatherPlugin::WeatherPlugin(Kontact::Core *core, const char *name, const QStringList &) : Kontact::Plugin(core, core, name), mAboutData(0) { setInstance(WeatherPluginFactory::instance()); } Kontact::Summary *WeatherPlugin::createSummaryWidget(QWidget *parentWidget) { return new SummaryWidget(parentWidget); } const KAboutData *WeatherPlugin::aboutData() { if(!mAboutData) { mAboutData = new KAboutData("weatherplugin", I18N_NOOP("Weather Information"), "0.1", I18N_NOOP("Weather Information"), KAboutData::License_GPL_V2, "(c) 2003 The Kontact developers"); mAboutData->addAuthor("Ian Reinhart Geiser", "", "geiseri@kde.org"); mAboutData->addAuthor("Tobias Koenig", "", "tokoe@kde.org"); mAboutData->addCredit("John Ratke", I18N_NOOP("Improvements and more code cleanups"), "jratke@comcast.net"); } return mAboutData; }
[ "serghei.amelian@gmail.com" ]
serghei.amelian@gmail.com
5fcaca8f00b243297c41ebfbf48c78e873c0362b
95cc023556e96743b1b47f4459181a81bf592be7
/lib/wlan/mlme/include/wlan/mlme/mac_frame.h
7786ce55f182ce3848afe86f61970cbb4bbf8e7a
[ "BSD-3-Clause" ]
permissive
return/garnet
5034ae8b8083455aa66da10040098c908f3de532
f14e7e50a1b6b55eaa8013755201a25fc83bd389
refs/heads/master
2020-03-23T16:13:28.763852
2018-07-21T07:24:31
2018-07-21T07:24:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,104
h
// Copyright 2017 The Fuchsia Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #pragma once #include <wlan/mlme/sequence.h> #include <fbl/type_support.h> #include <fbl/unique_ptr.h> #include <lib/zx/time.h> #include <wlan/common/bitfield.h> #include <wlan/common/mac_frame.h> #include <wlan/common/macaddr.h> #include <wlan/mlme/packet.h> #include <zircon/compiler.h> #include <zircon/types.h> #include <cstdint> namespace wlan { namespace { template <unsigned int N, typename T> T align(T t) { static_assert(N > 1 && !(N & (N - 1)), "alignment must be with a power of 2"); return (t + (N - 1)) & ~(N - 1); } template <typename T> static constexpr bool CanCarryRxInfo() { constexpr bool is_data_frame = std::is_same<T, DataFrameHeader>::value; constexpr bool is_mgmt_frame = std::is_same<T, MgmtFrameHeader>::value; constexpr bool is_ctrl_frame = std::is_same<T, CtrlFrameHdr>::value; return is_data_frame || is_mgmt_frame || is_ctrl_frame; } template <typename T> static constexpr bool CanCarryTxInfo() { return CanCarryRxInfo<T>(); } } // namespace using NilHeader = uint8_t[0]; struct UnknownBody { uint8_t data[]; } __PACKED; // A temporary representation of a frame. template <typename Header, typename Body = UnknownBody> class FrameView { public: FrameView(const Packet* pkt, size_t offset = 0) : data_offset_(offset), pkt_(pkt) { ZX_DEBUG_ASSERT(pkt_ != nullptr); } const Header* hdr() const { ZX_DEBUG_ASSERT(pkt_ != nullptr); auto hdr = pkt_->field<Header>(hdr_offset()); ZX_DEBUG_ASSERT(hdr != nullptr); return hdr; } const Body* body() const { ZX_DEBUG_ASSERT(pkt_ != nullptr); auto body = pkt_->field<Body>(body_offset()); ZX_DEBUG_ASSERT(body != nullptr); return body; } size_t body_len() const { ZX_DEBUG_ASSERT(pkt_ != nullptr); size_t offset = body_offset(); ZX_DEBUG_ASSERT(offset <= pkt_->len()); if (pkt_->len() < offset) { return 0; } return pkt_->len() - offset; } size_t len() const { ZX_DEBUG_ASSERT(pkt_ != nullptr); if (pkt_->len() < hdr_offset()) { return 0; } return pkt_->len() - hdr_offset(); } bool has_rx_info() const { ZX_DEBUG_ASSERT(pkt_ != nullptr); if (!CanCarryRxInfo<Header>()) { return false; } return pkt_->has_ctrl_data<wlan_rx_info_t>(); } const wlan_rx_info_t* rx_info() const { ZX_DEBUG_ASSERT(pkt_ != nullptr); ZX_DEBUG_ASSERT(has_rx_info()); static_assert(CanCarryRxInfo<Header>(), "only MAC frame can carry rx_info"); return pkt_->ctrl_data<wlan_rx_info_t>(); } bool HasValidLen() const { ZX_DEBUG_ASSERT(pkt_ != nullptr); if (pkt_->field<Header>(hdr_offset()) == nullptr) { return false; } return pkt_->field<Body>(body_offset()) != nullptr; } // Advances the frame such that it points to the beginning of its previous Body. // Example: // DataFrameView<> data_frame(packet_ptr); // FrameView<LlcHeader> llc_frame = data_frame.NextFrame<LlcHeader>(); // FrameView<Eapol> eapol_frame = llc_frame.NextFrame<Eapol>(); // TODO(hahnr): This should be called NextHdr instead. template <typename NextH = Body, typename NextB = UnknownBody> FrameView<NextH, NextB> NextFrame() const { ZX_DEBUG_ASSERT(pkt_ != nullptr); return FrameView<NextH, NextB>(pkt_, body_offset()); } // Allows to change the representation of the frame's body. The resulting frame's length should // be verified before working with it. One would typically use this method after verifying that // an "unknown" body is supposed to be of a certain type. Because this method takes a frame's // offset into account, it should be used when specializing frames, rather than taking the // frame's Packet and constructing a new Frame yourself which can be error prone when working // with advanced frames. For example, avoid doing this: // FrameView<LlcHeader, UnknownBody> llc_frame = data_frame.NextFrame(); // FrameView<LlcHeader, EapolHeader> llc_eapol_frame(llc_frame.take()); // PROBLEM: llc_eapol_frame.body() is *NOT* pointing to the EAPOL header // because the frame's offset got lost // // Instead use this method: // FrameView<LlcHeader, UnknownBody> llc_frame = data_frame.NextFrame(); // FrameView<LlcHeader, EapolHeader> llc_eapol_frame = llc_frame.Specialize<EapolHeader>(); // ... template <typename NewBody> FrameView<Header, NewBody> Specialize() const { ZX_DEBUG_ASSERT(pkt_ != nullptr); return FrameView<Header, NewBody>(pkt_, hdr_offset()); } size_t hdr_offset() const { return data_offset_; } size_t body_offset() const { size_t hdr_len = hdr()->len(); auto rx = pkt_->ctrl_data<wlan_rx_info_t>(); if (CanCarryRxInfo<Header>() && rx != nullptr && rx->rx_flags & WLAN_RX_INFO_FLAGS_FRAME_BODY_PADDING_4) { hdr_len = align<4>(hdr_len); } return hdr_offset() + hdr_len; } private: size_t data_offset_ = 0; const Packet* pkt_; }; template <typename Header, typename Body = UnknownBody> class Frame { public: explicit Frame(fbl::unique_ptr<Packet> pkt) : data_offset_(0), pkt_(fbl::move(pkt)) { ZX_DEBUG_ASSERT(pkt_ != nullptr); } Frame(size_t offset, fbl::unique_ptr<Packet> pkt) : data_offset_(offset), pkt_(fbl::move(pkt)) { ZX_DEBUG_ASSERT(pkt_ != nullptr); } Frame() : data_offset_(0), pkt_(nullptr) {} Header* hdr() { ZX_DEBUG_ASSERT(!IsTaken()); auto hdr = pkt_->mut_field<Header>(View().hdr_offset()); ZX_DEBUG_ASSERT(hdr != nullptr); return hdr; } const Header* hdr() const { return View().hdr(); } Body* body() { ZX_DEBUG_ASSERT(!IsTaken()); auto body = pkt_->mut_field<Body>(View().body_offset()); ZX_DEBUG_ASSERT(body != nullptr); return body; } const Body* body() const { return View().body(); } size_t body_len() const { return View().body_len(); } zx_status_t set_body_len(size_t len) { ZX_DEBUG_ASSERT(!IsTaken()); ZX_DEBUG_ASSERT(len <= pkt_->len()); return pkt_->set_len(View().body_offset() + len); } size_t len() const { return View().len(); } zx_status_t FillTxInfo() { static_assert(CanCarryTxInfo<Header>(), "only MAC frame can carry tx_info"); ZX_DEBUG_ASSERT(pkt_ != nullptr); wlan_tx_info_t txinfo = { // Outgoing management frame .tx_flags = 0x0, .valid_fields = WLAN_TX_INFO_VALID_PHY | WLAN_TX_INFO_VALID_CHAN_WIDTH, .phy = WLAN_PHY_OFDM, // Always .cbw = CBW20, // Use CBW20 always }; // TODO(porce): Implement rate selection. auto fc = pkt_->field<FrameControl>(0); switch (fc->subtype()) { default: txinfo.valid_fields |= WLAN_TX_INFO_VALID_MCS; // txinfo.data_rate = 12; // 6 Mbps, one of the basic rates. txinfo.mcs = 0x3; // TODO(NET-645): Choose an optimal MCS break; } pkt_->CopyCtrlFrom(txinfo); return ZX_OK; } bool HasValidLen() const { if (IsTaken()) { return false; } return View().HasValidLen(); } // Similar to `FrameView::NextFrame()` but consumes this Frame. template <typename NextH = Body, typename NextB = UnknownBody> Frame<NextH, NextB> NextFrame() { return Frame<NextH, NextB>(View().body_offset(), Take()); } // Similar to `FrameView::Specialize()` but consumes this Frame. template <typename NewBody> Frame<Header, NewBody> Specialize() { return Frame<Header, NewBody>(View().hdr_offset(), Take()); } // `true` if the frame was 'taken' and should no longer be used. bool IsTaken() const { return pkt_ == nullptr; } // Returns the Frame's underlying Packet. The Frame will no longer own the Packet and // will be `empty` from that moment on and should no longer be used. fbl::unique_ptr<Packet> Take() { ZX_DEBUG_ASSERT(!IsTaken()); return fbl::move(pkt_); } FrameView<Header, Body> View() const { ZX_DEBUG_ASSERT(!IsTaken()); return FrameView<Header, Body>(pkt_.get(), data_offset_); } private: size_t data_offset_; fbl::unique_ptr<Packet> pkt_; }; // Frame which contains a known header but unknown payload. using EthFrame = Frame<EthernetII>; template <typename T = UnknownBody> using MgmtFrame = Frame<MgmtFrameHeader, T>; template <typename T = UnknownBody> using CtrlFrame = Frame<CtrlFrameHdr, T>; template <typename T = UnknownBody> using DataFrame = Frame<DataFrameHeader, T>; using EthFrameView = FrameView<EthernetII>; template <typename T = UnknownBody> using MgmtFrameView = FrameView<MgmtFrameHeader, T>; template <typename T = UnknownBody> using CtrlFrameView = FrameView<CtrlFrameHdr, T>; template <typename T = UnknownBody> using DataFrameView = FrameView<DataFrameHeader, T>; // TODO(hahnr): This isn't a great location for these definitions. using aid_t = size_t; static constexpr aid_t kGroupAdressedAid = 0; static constexpr aid_t kMaxBssClients = 2008; static constexpr aid_t kUnknownAid = kMaxBssClients + 1; template <typename Body> zx_status_t BuildMgmtFrame(MgmtFrame<Body>* frame, size_t body_payload_len = 0, bool has_ht_ctrl = false); seq_t NextSeqNo(const MgmtFrameHeader& hdr, Sequence* seq); seq_t NextSeqNo(const MgmtFrameHeader& hdr, uint8_t aci, Sequence* seq); seq_t NextSeqNo(const DataFrameHeader& hdr, Sequence* seq); void SetSeqNo(MgmtFrameHeader* hdr, Sequence* seq); void SetSeqNo(MgmtFrameHeader* hdr, uint8_t aci, Sequence* seq); void SetSeqNo(DataFrameHeader* hdr, Sequence* seq); } // namespace wlan
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
5d3df6b71b6a486d3c05d6c965817659baa9b9eb
8839ae53da765c6ebd54d5fa97b4325730efbd54
/inc/kl_divergence_functions.h
41caf840f1bce53bd12f5bcaf68ae5e44aa9bede
[]
no_license
wavescholar/klMatrixCore
f176803a3870ae06beccd46a369df99a033e5420
281f341e69e5173c80f38c12611787c13c1272c6
refs/heads/master
2021-07-15T16:20:06.562301
2015-10-05T18:02:05
2015-10-05T18:02:05
6,783,829
0
2
null
null
null
null
UTF-8
C++
false
false
3,677
h
/******************************* * Copyright (c) <2007>, <Bruce Campbell> All rights reserved. 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. 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. * * Bruce B Campbell 07 08 2014 * ********************************/ #ifndef __kl_bregman_divergence__ #define __kl_bregman_divergence__ #include "mkl.h" #include "kl_matrix.h" template<class TYPE> TYPE klMahalanobisDivergence(klMatrix<TYPE> A, klVector<TYPE> x,klVector<TYPE> y) { if(A.getColumns()!=A.getRows()) { ANSI_INFO; throw klError(err + "TYPE klManhalobisDivergence(klMatrix<TYPE> A, klVector<TYPE> x,klVector<TYPE> y) invalid dimension"); } if(x.getColumns()!=A.getRows()) { ANSI_INFO; throw klError(err + "TYPE klManhalobisDivergence(klMatrix<TYPE> A, klVector<TYPE> x,klVector<TYPE> y) invalid dimension"); } if(y.getColumns()!=A.getRows()) { ANSI_INFO; throw klError(err + "TYPE klManhalobisDivergence(klMatrix<TYPE> A, klVector<TYPE> x,klVector<TYPE> y) invalid dimension"); } TYPE dist = (x-y).dot( A * (x-y)); } //B_F(x,y) = \sum x(i) \log \frac{x(i)}{y(i)} - \sum x(i) + \sum y(i) template<class TYPE> TYPE klKullbackLiebelerDivergence(klVector<TYPE> x,klVector<TYPE> y) { if(x.getColumns()!=y.getColumns()) { ANSI_INFO; throw klError(err + "TYPE TYPE klKullbackLiebelerDivergence(klVector<TYPE> x,klVector<TYPE> y) invalid dimension"); } if(!x.isPositive() || !y.isPositive()) { ANSI_INFO; throw klError(err + "TYPE TYPE klKullbackLiebelerDivergence(klVector<TYPE> x,klVector<TYPE> y) x and y should be positive"); } TYPE sx=x.sum(); TYPE sy=y.sum(); klVector<double> lx= klApplyFn<double,double>(std::log,x); klVector<double> ly= klApplyFn<double,double>(std::log,y); TYPE s1= (lx-ly).dot(x)-sx+sy; } //B_F(x,y) = \sum_i \left(\frac {x(i)}{y(i)} - \log \frac{x(i)}{y(i)} - 1 template<class TYPE> TYPE klItakuraSaitoDivergence(klVector<TYPE> x,klVector<TYPE> y) { if(x.getColumns()!=x.getRows()) { ANSI_INFO; throw klError(err + "TYPE TYPE klItakuraSaitoDivergence(klVector<TYPE> x,klVector<TYPE> y) invalid dimension"); } if(!x.isPositive() || !y.isPositive()) { ANSI_INFO; throw klError(err + "TYPE TYPE klItakuraSaitoDivergence(klVector<TYPE> x,klVector<TYPE> y) x and y should be positive"); } TYPE s1= (x/y).sum(); klVector<double> lx= klApplyFn<double,double>(std::log,x); klVector<double> ly= klApplyFn<double,double>(std::log,y); TYPE s2=(lx-ly).sum(); TYPE result = s1-s2-1; } #endif //__kl_bregman_divergence__
[ "wavescholar@gmail.com" ]
wavescholar@gmail.com
a4b43d8307de4c03685af65c0e49df0e08cba720
d282d555b33ee3f6363f6839f82157e0ed48ceaa
/05/P2.cpp
941ab71feb5b7ba56eab07c27903e4c7b41805f6
[]
no_license
UnsafePointer/advent-of-code-2019
5949b1b93e10560f52bb188348b3329e7cd781af
8c3065938a9c8fdb287ef2dafc2790f3fb69b4b3
refs/heads/master
2020-09-23T15:22:14.830510
2019-12-13T06:20:56
2019-12-13T06:20:56
225,529,844
0
0
null
null
null
null
UTF-8
C++
false
false
5,699
cpp
#include <iostream> #include <fstream> #include <cstdint> #include <sstream> #include <vector> using namespace std; struct Instruction { uint64_t op; uint64_t intcode; vector<bool> parameterMode; Instruction(int64_t opcode) : intcode(opcode) { op = 0; parameterMode = {}; while (opcode != 0) { if (op == 0) { op = opcode % 100; opcode /= 100; } else { bool mode = opcode % 10; parameterMode.push_back(mode); opcode /= 10; } } }; bool modeForParameterPosition(uint8_t position) { if (parameterMode.size() <= position) { return false; } return parameterMode[position]; } }; struct Computer { vector<int64_t> memory; vector<int64_t>::size_type pc; Instruction currentInstruction; Computer() : memory(vector<int64_t>()), pc(0), currentInstruction({}) {} void loadProgram(vector<int64_t> program) { copy(program.begin(), program.end(), back_inserter(memory)); } void executeNextInstruction() { fetchInstruction(); switch (currentInstruction.op) { case 1: case 2: executeArithmetic(); break; case 3: executeInput(); break; case 4: executeOutput(); break; case 5: executeJump(true); break; case 6: executeJump(false); break; case 7: executeCompare(false); break; case 8: executeCompare(true); break; case 99: exit(0); break; default: exit(1); } } void fetchInstruction() { int64_t opcode = memory[pc]; if (opcode <= 0) { exit(1); } pc++; currentInstruction = Instruction(opcode); } int64_t read(uint64_t address) { int64_t value = memory[address]; return value; } void write(uint64_t address, int64_t value) { memory[address] = value; } void executeInput() { int64_t input; cin >> input; int64_t positionA = memory[pc]; memory[positionA] = input; pc++; } void executeOutput() { uint64_t positionA = memory[pc]; int64_t output; if (currentInstruction.modeForParameterPosition(0)) { output = positionA; } else { output = memory[positionA]; } cout << output << endl; pc++; } void executeArithmetic() { int64_t positionA = memory[pc]; pc++; int64_t positionB = memory[pc]; pc++; int64_t positionC = memory[pc]; pc++; int64_t a; if (currentInstruction.modeForParameterPosition(0)) { a = positionA; } else { a = memory[positionA]; } int64_t b; if (currentInstruction.modeForParameterPosition(1)) { b = positionB; } else { b = memory[positionB]; } int64_t result; if (currentInstruction.op == 1) { result = a + b; } else { result = a * b; } memory[positionC] = result; } void executeJump(bool conditionIsTrue) { int64_t positionA = memory[pc]; pc++; int64_t positionB = memory[pc]; pc++; int64_t eval; if (currentInstruction.modeForParameterPosition(0)) { eval = positionA; } else { eval = memory[positionA]; } int64_t destination; if (currentInstruction.modeForParameterPosition(1)) { destination = positionB; } else { destination = memory[positionB]; } if (conditionIsTrue) { if (eval != 0) { pc = destination; } } else { if (eval == 0) { pc = destination; } } } void executeCompare(bool compareIsEqual) { int64_t positionA = memory[pc]; pc++; int64_t positionB = memory[pc]; pc++; int64_t positionC = memory[pc]; pc++; int64_t a; if (currentInstruction.modeForParameterPosition(0)) { a = positionA; } else { a = memory[positionA]; } int64_t b; if (currentInstruction.modeForParameterPosition(1)) { b = positionB; } else { b = memory[positionB]; } if (compareIsEqual) { if (a == b) { memory[positionC] = 1; } else { memory[positionC] = 0; } } else { if (a < b) { memory[positionC] = 1; } else { memory[positionC] = 0; } } } }; int main(int argc, char *argv[]) { ifstream input = ifstream("input.txt"); stringstream buffer; buffer << input.rdbuf(); input.close(); vector<int64_t> program; for (int64_t i = 0; buffer >> i;) { if (i < 0) { int a = 0; } program.push_back(i); if (buffer.peek() == ',') buffer.ignore(); } Computer computer = Computer(); computer.loadProgram(program); while (true) { computer.executeNextInstruction(); } return 0; }
[ "renzo@crisostomo.me" ]
renzo@crisostomo.me
5036cfcf32f901acd901f2bcd99de10501abd5dc
ae2f7ad4b7ef977d1914843d6ed93f3891713ab2
/Claude/interfaceDEL4.ino
d942c89300af0a58adf12694a75439a02c23b0c9
[ "Apache-2.0" ]
permissive
TSO-team/Vehicule
805d01aa0639017e6672a23e6545dbef42ccca30
5924c9b516a0978159b521db45609bc4257ae8b3
refs/heads/main
2023-02-03T13:53:19.893500
2020-12-18T13:24:23
2020-12-18T13:24:23
310,890,351
0
0
null
null
null
null
UTF-8
C++
false
false
3,571
ino
//interfaceDEL4: //Historique: // 2020-11-15, Yves Roy, creation //INCLUSIONS #include "main.h" #include "piloteSortieDEL4.h" #include "piloteTicker.h" #include "serviceBaseDeTemps.h" #include "interfaceDEL4.h" //Definitions privees #define INTERFACEDEL4_COMPTE_MAXIMUM_POUR_ALLUMER (\ INTERFACEDEL4_TEMPS_ALLUME_EN_MS / PILOTETICKER_PERIODE_EN_MS) #define INTERFACEDEL4_COMPTE_MAXIMUM_POUR_ETEINDRE (\ INTERFACEDEL4_TEMPS_ETEINT_EN_MS / PILOTETICKER_PERIODE_EN_MS) //Declarations de fonctions privees: void interfaceDEL4_gereLEtatEteint(void); void interfaceDEL4_gereLEtatAllume(void); void interfaceDEL4_gereLEtatClignotantAllume(void); void interfaceDEL4_gereLEtatClignotantEteint(void); //Definitions de variables privees: unsigned long interfaceDEL4_compteurDInterruptions; //Definitions de fonctions privees: void interfaceDEL4_gereLEtatEteint(void) { if (interfaceDEL4_etatRequis == INTERFACEDEL4_ETEINT) { return; } INTERFACEDEL4_ALLUME_LA_DEL(); if (interfaceDEL4_etatRequis == INTERFACEDEL4_ALLUME) { serviceBaseDeTemps_execute[INTERFACEDEL4_PHASE] = interfaceDEL4_gereLEtatAllume; return; } interfaceDEL4_compteurDInterruptions = 0; serviceBaseDeTemps_execute[INTERFACEDEL4_PHASE] = interfaceDEL4_gereLEtatClignotantAllume; } void interfaceDEL4_gereLEtatAllume(void) { if (interfaceDEL4_etatRequis == INTERFACEDEL4_ETEINT) { INTERFACEDEL4_ETEINT_LA_DEL(); serviceBaseDeTemps_execute[INTERFACEDEL4_PHASE] = interfaceDEL4_gereLEtatEteint; return; } if (interfaceDEL4_etatRequis == INTERFACEDEL4_CLIGNOTANT) { interfaceDEL4_compteurDInterruptions = 0; serviceBaseDeTemps_execute[INTERFACEDEL4_PHASE] = interfaceDEL4_gereLEtatClignotantAllume; return; } } void interfaceDEL4_gereLEtatClignotantAllume(void) { if (interfaceDEL4_etatRequis == INTERFACEDEL4_ETEINT) { INTERFACEDEL4_ETEINT_LA_DEL(); serviceBaseDeTemps_execute[INTERFACEDEL4_PHASE] = interfaceDEL4_gereLEtatEteint; return; } if (interfaceDEL4_etatRequis == INTERFACEDEL4_ALLUME) { serviceBaseDeTemps_execute[INTERFACEDEL4_PHASE] = interfaceDEL4_gereLEtatAllume; return; } interfaceDEL4_compteurDInterruptions++; if (interfaceDEL4_compteurDInterruptions < INTERFACEDEL4_COMPTE_MAXIMUM_POUR_ALLUMER) { return; } interfaceDEL4_compteurDInterruptions = 0; INTERFACEDEL4_ETEINT_LA_DEL(); serviceBaseDeTemps_execute[INTERFACEDEL4_PHASE] = interfaceDEL4_gereLEtatClignotantEteint; } void interfaceDEL4_gereLEtatClignotantEteint(void) { if (interfaceDEL4_etatRequis == INTERFACEDEL4_ETEINT) { serviceBaseDeTemps_execute[INTERFACEDEL4_PHASE] = interfaceDEL4_gereLEtatEteint; return; } if (interfaceDEL4_etatRequis == INTERFACEDEL4_ALLUME) { INTERFACEDEL4_ALLUME_LA_DEL(); serviceBaseDeTemps_execute[INTERFACEDEL4_PHASE] = interfaceDEL4_gereLEtatAllume; return; } interfaceDEL4_compteurDInterruptions++; if (interfaceDEL4_compteurDInterruptions < INTERFACEDEL4_COMPTE_MAXIMUM_POUR_ETEINDRE) { return; } interfaceDEL4_compteurDInterruptions = 0; INTERFACEDEL4_ALLUME_LA_DEL(); serviceBaseDeTemps_execute[INTERFACEDEL4_PHASE] = interfaceDEL4_gereLEtatClignotantAllume; } //Definitions de variables publiques: unsigned char interfaceDEL4_etatRequis; //Definitions de fonctions publiques: void interfaceDEL4_initialise(void) { interfaceDEL4_etatRequis = INTERFACEDEL4_ETEINT; INTERFACEDEL4_ETEINT_LA_DEL(); serviceBaseDeTemps_execute[INTERFACEDEL4_PHASE] = interfaceDEL4_gereLEtatEteint; }
[ "nomfullcreatif@gmail.com" ]
nomfullcreatif@gmail.com
3852c1c4fcf0445b72366acded63dd99998c0633
9012f534bb271c30750f73da81252dfa62def9be
/laddu.cpp
f620566cbf76395bd5c5b91ec34dcab681faf102
[]
no_license
akulkanojia2414/Spoj_questions
a90d08cc3cb4dc943e0dedcf9bf17c14e1215ed6
14742ea8efa17927e32d565a0f02b09d246264a7
refs/heads/master
2021-01-18T13:58:30.917482
2015-01-14T09:11:22
2015-01-14T09:11:22
23,980,064
0
0
null
null
null
null
UTF-8
C++
false
false
2,142
cpp
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <utility> #include <map> #include <vector> #include <list> #include <string> #include <set> #include <queue> #include <ctime> #include <fstream> #include <sstream> #include <cmath> #include <limits.h> #include <cstdlib> #include <stack> #define gc getchar_unlocked #define s(x) scanf("%d",&x) #define sil(x) scanf("%llu",&x) #define sd(x) scanf("%ld",&x) #define in(s) cin>>s #define FOR(i,a,b) for( typeof(a) i=(a); i<(b); ++i) // exclusive for #define FORR(i,a,b) for( typeof(a) i=(a-1) ; i>=(b); --i) #define REP(k,a,b) for(typeof(a) k=(a); k <= (b); ++k) // inclusive for #define REPR(i,a,b) for( typeof(a) i=(a) ; i>=(b); --i) #define ALL(c) (c).begin(), (c).end() #define PB push_back #define MP make_pair #define SZ(x) ((int)((x).size())) #define SRT(v) std::sort(ALL(v)) #define CTN(x) std::cout<<x<<'\n' //cout with newline #define CTS(x) std::cout<<x<<" " //cout with space #define CT(x) std::cout<<x #define CLR(x) std::memset(x,0,sizeof(x)) #define FILL(x,n) std::fill_n(x,sizeof(x),n) #define T(t) int t=read<int>();// while(t--) #define DBGA(x,n) {for(int i=0;i<n;i++) cout<<x[i]<<" "; cout<<"\n";} #define REC(x) clock_t x=clock() #define CPS CLOCKS_PER_SEC #define TM(x,y) CTN(((double)(y-x)/CPS)); typedef std::vector<int> VI; typedef std::vector<long long int> VL; typedef std::vector<unsigned long long int> VULL; typedef std::vector<std::string> VS; typedef std::map<int,int> MI; typedef std::pair<int,int> PII; typedef std::string str; typedef unsigned long long ull; typedef long long ll; typedef long int li; using namespace std; int a[100020]; int abs(int x) { if(x>=0) return x; else return -x; } int main() { int t,n,indp,indn; ll ans =0; cin>>t; while(t--) {indp=0,ans=0,indn=0; cin>>n; for(int i =0;i<n;i++) { cin>>a[i]; } while(indp<n||indn<n) { while(a[indp]<=0){indp++;} while(a[indn]>=0) {indn++;} if(a[indp] < (-a[indn])) { ans += a[indp]*abs(indp-indn); } else { ans += a[indn]*abs(indp-indn); } indn++; indp++; } cout<<ans<<endl; CLR(a); } }
[ "akulkanojia2414@gmail.com" ]
akulkanojia2414@gmail.com
bc94bd7a71411131d9d996394a42cc99a745339b
5a294cedee7d26bd078368f0d4250ff81388a24c
/code/src/problem7_print_ascii/main.cpp
f977966a46d739e0596883188af0bad46f6d23f3
[]
no_license
pumpkin-code/dsba-prog-2021spring-wshps03-04
029efdbfd93e7249c7aaafc6845988ba57d17746
fad497b087a6e59909d55d09395ae0f06aa5b689
refs/heads/master
2023-02-18T14:30:33.131264
2021-01-18T22:09:45
2021-01-18T22:09:45
330,771,116
1
0
null
null
null
null
UTF-8
C++
false
false
681
cpp
//////////////////////////////////////////////////////////////////////////////// /// \file /// \brief Main module for Problem 7: "Print ASCII table". /// \author Sergey Shershakov /// \version 0.1.0 /// \date 19.01.2021 /// This code is for educational purposes of the course "Introduction /// to programming" provided by the Faculty of Computer Science /// at the Higher School of Economics. /// /// Print the “printable part” of the ASCII table using tabs for aligning. /// //////////////////////////////////////////////////////////////////////////////// int main() { // TODO: input your code here return 0; }
[ "bjolyk@gmail.com" ]
bjolyk@gmail.com
08a43cac1f0dce5c8c90adbf478a23ca35daffb0
692e36818bdefc892c15b2f313ade0bf4452cf35
/samael/src/FileExplorerListProxyModel.cpp
a58abf99ab76ece9239915d88fdbf288e129577d
[]
no_license
NPTricky/img-classification-ss13
814480a69489ad328b8ebd2d1632dc36ee40f5de
cd234ecde9f670c6cf7705d7aa54eed24c1dd991
refs/heads/master
2016-09-06T12:26:08.769213
2013-07-10T13:41:02
2013-07-10T13:41:02
9,509,127
0
1
null
2013-06-25T15:48:56
2013-04-17T22:44:03
C++
UTF-8
C++
false
false
1,664
cpp
#include "stdafx.h" #include "FileExplorerListProxyModel.h" FileExplorerListProxyModel::FileExplorerListProxyModel(QObject *parent /*= nullptr*/) : QSortFilterProxyModel(parent) { connect(this,SIGNAL(modelReset()),this,SLOT(onSourceModelChanged())); QRegExp m_Filters = QRegExp("(bmp|dib|jpeg|jpg|jpe|jp2|png|pbm|pgm|ppm|tiff|tif)$", Qt::CaseInsensitive); ///! BUG: empty indices after conversion between proxy models ///! test ///! } FileExplorerListProxyModel::~FileExplorerListProxyModel() { } bool FileExplorerListProxyModel::filterAcceptsRow(int source_row, const QModelIndex &source_parent) const { //QModelIndex index = m_FileSystemModel->index(source_row, 0, source_parent); //if (m_FileSystemModel->isDir(index)) // return false; return true; } void FileExplorerListProxyModel::onSourceModelChanged() { m_FileSystemModel = qobject_cast<QFileSystemModel*>(sourceModel()); invalidate(); } bool FileExplorerListProxyModel::filterAcceptsColumn(int source_column, const QModelIndex &source_parent) const { return true; } QVariant FileExplorerListProxyModel::data(const QModelIndex &index, int role /*= Qt::DisplayRole */) const { QFileInfo info = m_FileSystemModel->fileInfo(mapToSource(index)); switch (role) { //case (Qt::ToolTipRole): // return QVariant("Test"); // break; //case (Qt::BackgroundColorRole): // break; // if (index.row() % 2 == 1) return QColor(qRgb(240,240,240)); case (Qt::DisplayRole): return QVariant(); // filenames deactivated default: return QSortFilterProxyModel::data(index,role); } }
[ "tim@nptricky.com" ]
tim@nptricky.com
e07fc30bafe60b652251fc8b209aad6d8944e1a8
b35c6859e5e70348d1feafeeb35f6fd0fda7a621
/day2/gt.cpp
01079609fb3b57d8b133e21010aeff7a96831f7a
[]
no_license
MessyShen/FreeLoopDaily
58c975d5538c9480f9228230cfd4765ed06af2ef
b4fb1115bf4a30e5c42f00c601277f5560d2eb88
refs/heads/master
2021-01-21T14:53:50.469026
2017-08-23T08:15:01
2017-08-23T08:15:01
95,357,464
5
1
null
2017-06-25T12:44:07
2017-06-25T12:09:06
C++
UTF-8
C++
false
false
627
cpp
#include<iostream> #include<cstring> #include<cstdlib> #include<cstdio> #include<cmath> #include<algorithm> using namespace std; typedef long long lint; const int maxn=3000+10; int n; int p[100100]; int main() { int t; cin>>t; while(t --) { cin>:>n; for(int i = 2;i <= n;i ++) cin>>p[i]; if(n % 2) { cout<<"No"<<endl; continue; } bool f = true; int sum = 0; for(int i = n;i >= 2;i --) { if(p[i] == 1) { sum ++; } else { if(sum == 0) { f = false; break; } sum --; } } if(f) cout<<"Yes"<<endl; else cout<<"No"<<endl; } return 0; }
[ "MessyShen" ]
MessyShen
5bad9170b3ae2ee44830332aa6c27a0ee7bbfa93
03742d47850b16fc825b44a381f1553a4be428db
/GGP-Project/Rescue-Engine/InputManager.h
267baa58c04c473d9ccfbc9eb808259db01e635f
[ "MIT" ]
permissive
rimij405/ggp-smij
2bc0f990bd9a35d65b60412e950301e43bef6157
7f0e73eb3def42d344f3a4748aa2b091f0b5abc9
refs/heads/master
2020-04-25T22:54:19.180608
2019-05-02T11:34:55
2019-05-02T11:34:55
173,127,068
3
1
MIT
2019-05-02T08:30:17
2019-02-28T14:29:55
C++
UTF-8
C++
false
false
7,345
h
#pragma once #include "Windows.h" #include <DirectXMath.h> #include <map> //Enum for mouse buttons enum class MouseButtons {L, R, M}; // Singleton basis from: https://stackoverflow.com/questions/1008019/c-singleton-design-pattern // -------------------------------------------------------- // Singleton // // Handles input from keyboard and mouse // -------------------------------------------------------- class InputManager { private: //Keyboard Control std::map<char, bool> pressedKeys; std::map<char, bool> prevPressedKeys; //Mouse control POINT mousePos; POINT prevMousePos; bool mb_L_Down; bool mb_R_Down; bool mb_M_Down; bool prev_MB_L_Down; bool prev_MB_R_Down; bool prev_MB_M_Down; //Scrollwheel control float wheelDelta; //Window control HWND hWnd; bool winRequireFocus; bool windowFocused; // -------------------------------------------------------- // Singleton Constructor - Set up the singleton instance of the input manager // -------------------------------------------------------- InputManager() { } // -------------------------------------------------------- // Destructor for when the singleton instance is deleted // -------------------------------------------------------- ~InputManager(); public: // -------------------------------------------------------- // Initialize default values // (CALL ONLY ONCE AT THE VERY START OF THE GAME) // -------------------------------------------------------- void Init(HWND hWnd); // -------------------------------------------------------- // Get the singleton instance of the renderer // -------------------------------------------------------- static InputManager* GetInstance() { static InputManager instance; return &instance; } //Delete these functions InputManager(InputManager const&) = delete; void operator=(InputManager const&) = delete; // -------------------------------------------------------- // Change the window focus requirement // // windowMustBeFocused - Whether the window must be focused // for input to be captured // -------------------------------------------------------- void SetWindowFocusRequirement(bool windowMustBeFocused); // -------------------------------------------------------- // Get the focus of the window // If the focus requirement is false, then this will always return true // -------------------------------------------------------- bool IsWindowFocused(); // -------------------------------------------------------- // NOT FOR USE OUTSIDE OF GAME.CPP // Helper method for mouse clicking. // -------------------------------------------------------- void OnMouseDown(WPARAM buttonState, int x, int y); // -------------------------------------------------------- // NOT FOR USE OUTSIDE OF GAME.CPP // Helper method for mouse release // -------------------------------------------------------- void OnMouseUp(WPARAM buttonState, int x, int y, int button); // -------------------------------------------------------- // NOT FOR USE OUTSIDE OF GAME.CPP // Helper method for updating mouse movement. We only get this message // if the mouse is currently over the window, or if we're // currently capturing the mouse. // -------------------------------------------------------- void OnMouseMove(WPARAM buttonState, int x, int y); // -------------------------------------------------------- // NOT FOR USE OUTSIDE OF GAME.CPP // Helper method for mouse wheel scrolling. // WheelDelta may be positive or negative, depending // on the direction of the scroll // -------------------------------------------------------- void OnMouseWheel(float wheelDelta, int x, int y); // -------------------------------------------------------- //Update the focus state of the window // -------------------------------------------------------- void InputManager::UpdateFocus(); // -------------------------------------------------------- // Update the input manager's key/button states (only call ONCE PER FRAME!) // -------------------------------------------------------- void UpdateStates(); // -------------------------------------------------------- // Update the mouse position (only call ONCE PER FRAME!) // -------------------------------------------------------- void UpdateMousePos(); // -------------------------------------------------------- // Returns true while the inputted key is held down // -------------------------------------------------------- bool GetKey(char key); //TODO: Implement key states /* // -------------------------------------------------------- // Returns true during the frame the user pressed down the inputted key // -------------------------------------------------------- bool GetKeyDown(char key); // -------------------------------------------------------- // Returns true the first frame the user releases the inputted key // -------------------------------------------------------- bool GetKeyUp(char key); */ // -------------------------------------------------------- // Returns true while the inputted mouse button is held down // -------------------------------------------------------- bool GetMouseButton(MouseButtons button); // -------------------------------------------------------- // Returns true during the frame the user pressed down the mouse button // -------------------------------------------------------- bool GetMouseButtonDown(MouseButtons button); // -------------------------------------------------------- //Returns true the first frame the user releases the mouse button // -------------------------------------------------------- bool GetMouseButtonUp(MouseButtons button); // -------------------------------------------------------- // Get the current X mouse position // -------------------------------------------------------- long GetMouseX(); // -------------------------------------------------------- // Get the current Y mouse position // -------------------------------------------------------- long GetMouseY(); // -------------------------------------------------------- // Get the current scrollwheel delta // -------------------------------------------------------- float GetScrollWheelDelta(); // -------------------------------------------------------- // Get the X coordinate of the window (left) // -------------------------------------------------------- long GetWindowX(); // -------------------------------------------------------- // Get the Y coordinate of the window (top) // -------------------------------------------------------- long GetWindowY(); // -------------------------------------------------------- // Get the center X coordinate of the window // -------------------------------------------------------- long GetWindowCenterX(); // -------------------------------------------------------- // Get the center Y coordinate of the window // -------------------------------------------------------- long GetWindowCenterY(); // -------------------------------------------------------- // Get window width // -------------------------------------------------------- long GetWindowWidth(); // -------------------------------------------------------- // Get window height // -------------------------------------------------------- long GetWindowHeight(); };
[ "michaelclavell11@gmail.com" ]
michaelclavell11@gmail.com
51f9debc1bdc1e6513b7b2c8a590adf4d270cf8f
5bbbe92351acc1d319bf688dfd22bad51f2055df
/본문소스/CH_44_06/CH_44_06.ino
820409c3ccbd9172ce594b3ad09e8740375853ad
[]
no_license
lsa-src/ArduinoBible
70a8d152af68fbecfeb5cc8bf93d5a3a288ba653
a293231368f8c9b14014dd551575b1452f1c8108
refs/heads/main
2023-05-27T00:36:13.742810
2021-06-07T01:19:45
2021-06-07T01:19:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
663
ino
#include <Adafruit_STMPE610.h> #define STMPE_CS 8 // 터치패널의 CS 핀 // 터치패널을 위한 객체 생성 Adafruit_STMPE610 myTouch = Adafruit_STMPE610(STMPE_CS); void setup() { Serial.begin(9600); pinMode(10, OUTPUT); // TFT-LCD가 선택되지 않도록 함 digitalWrite(10, LOW); myTouch.begin(); // 터치패널 객체 초기화 } void loop() { if (myTouch.touched()) { // 터치가 발생한 경우 TS_Point tp = myTouch.getPoint(); // 터치 정보 얻기 Serial.print(tp.x); Serial.print('\t'); // 시리얼로 데이터 출력 Serial.print(tp.y); Serial.print('\t'); Serial.println(tp.z); } }
[ "jeipubmanager@gmail.com" ]
jeipubmanager@gmail.com
d2c3d39f24298d1d9224cee598a9db5368477aa7
30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a
/DP/3062.cpp
cb3ae01c780998e13b713291f4df8506763e5864
[]
no_license
thegamer1907/Code_Analysis
0a2bb97a9fb5faf01d983c223d9715eb419b7519
48079e399321b585efc8a2c6a84c25e2e7a22a61
refs/heads/master
2020-05-27T01:20:55.921937
2019-11-20T11:15:11
2019-11-20T11:15:11
188,403,594
2
1
null
null
null
null
UTF-8
C++
false
false
930
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 5005; const ll INF = 0x3f3f3f3f3f3f3f3f; int a[maxn],b[maxn]; ll ans[maxn]; int main(){ int n; scanf("%d",&n); for(int i = 1 ; i <= n ; ++ i)scanf("%d",&a[i]); for(int i = 1 ; i <= n ; ++ i)scanf("%d",&b[i]); for(int i = 1 ; i <= n ; ++ i)ans[i] = b[i]; for(int t = 2 ; t <= 3 ; ++ t){ for(int i = n ; i >= 1 ; -- i){ if(ans[i] == INF)continue; ll tmp = INF; for(int j = 1 ; j < i ; ++ j){ if(a[j] < a[i] && ans[j] < tmp)tmp = ans[j]; } if(tmp == INF)ans[i] = INF; else ans[i] = tmp + b[i]; } } ll res = INF; for(int i = 1 ; i <= n ; ++ i)if(ans[i] < res)res = ans[i]; if(res == INF)res = -1; printf("%lld\n",res); return 0; }
[ "mukeshchugani10@gmail.com" ]
mukeshchugani10@gmail.com
d2ef7ec6975cee35bd9c0fc686a2405112a251fa
38b2b96759a0107699831a008f2b416dfe6f4ebb
/41. 50 - 1/41. 50 - 1.cpp
139b7fcbc7559580d927484a49893466b1bd3d94
[]
no_license
Vedant-Jayesh-Oza/My-CPP-Programs
4d51e8e0a1e8c605636e648cc9b1b82f3d84ba89
025bd3813ed3547dee6cf1deb3e80485ef49c91c
refs/heads/main
2023-01-14T22:46:40.756557
2020-11-26T14:03:10
2020-11-26T14:03:10
316,258,766
1
0
null
null
null
null
UTF-8
C++
false
false
111
cpp
#include<iostream.h> #include<conio.h> void main() { for(int i=50;i>0;i--) { cout<<i<<endl; } getch(); }
[ "vedantoza1313@gmail.com" ]
vedantoza1313@gmail.com
61cfa61adc95639c998ad7d8eff381b7dedba062
732a527bf7aead3e01080613bf61cfe701cd0f27
/Targets/AT91SAM9X35/AT91_Time.cpp
b3cdf4ecb66da348d27523761d025f04f11d91bc
[ "LicenseRef-scancode-generic-cla", "Apache-2.0" ]
permissive
dobova86/TinyCLR_Port
52f36fff674c108d21a01377cffa9bc87cbde371
e1b9ce4f935604e5b292687dcd61715bf0c7f09c
refs/heads/master
2021-04-09T11:01:49.138004
2019-03-04T11:08:35
2019-03-04T11:08:35
125,496,801
1
4
null
null
null
null
UTF-8
C++
false
false
14,262
cpp
// Copyright Microsoft Corporation // Copyright GHI Electronics, LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "AT91.h" #define TIMER_IDLE_VALUE 0x0000FFFFFFFFFFFFFull #define AT91_SLEEP_USEC_FIXED_OVERHEAD_CLOCKS 4 #define SLOW_CLOCKS_PER_SECOND (AT91_SYSTEM_PERIPHERAL_CLOCK_HZ / 32) #define CLOCK_COMMON_FACTOR 10 #define SLOW_CLOCKS_TEN_MHZ_GCD 10 #define SLOW_CLOCKS_MILLISECOND_GCD 10 ////////////////////////////////////////////////////////////////////////////// // TIMER state // struct At91TimerDriver { static const uint32_t c_SystemTimer = 0; static const uint32_t c_MaxTimerValue = 0xFFFFFFFF; // Change to 32 bit TC static const uint32_t c_MaxTimer = 3; //--// static bool Initialize(uint32_t Timer, bool FreeRunning, uint32_t ClkSource, uint32_t* ISR, void* ISR_Param); static bool Uninitialize(uint32_t Timer); static void ISR_TIMER(void* param); static void EnableCompareInterrupt(uint32_t Timer) { if (!(Timer < At91TimerDriver::c_MaxTimer)) return; AT91_TC &TC = AT91::TIMER(Timer); (void)TC.TC_SR; TC.TC_IER = AT91_TC::TC_CPCS; TC.TC_CCR = (AT91_TC::TC_SWTRG | AT91_TC::TC_CLKEN); } static void DisableCompareInterrupt(uint32_t Timer) { if (!(Timer < At91TimerDriver::c_MaxTimer)) return; AT91_TC &TC = AT91::TIMER(Timer); TC.TC_IDR = AT91_TC::TC_CPCS; } static void ForceInterrupt(uint32_t Timer) { if (!(Timer < At91TimerDriver::c_MaxTimer)) return; AT91_Interrupt_ForceInterrupt(AT91C_ID_TC0_TC1); } static void SetCompare(uint32_t Timer, uint32_t Compare) // Change to 32 bit TC { if (!(Timer < At91TimerDriver::c_MaxTimer)) return; AT91_TC &TC = AT91::TIMER(Timer); TC.TC_RC = Compare; } static uint32_t ReadCounter(uint32_t Timer) { if (!(Timer < At91TimerDriver::c_MaxTimer)) return 0; AT91_TC &TC = AT91::TIMER(Timer); return TC.TC_CV; } static bool DidTimerOverFlow(uint32_t Timer) { if (!(Timer < At91TimerDriver::c_MaxTimer)) return false; AT91_TC &TC = AT91::TIMER(Timer); return (TC.TC_SR & AT91_TC::TC_COVFS) != 0; } //--// private: struct Descriptors { AT91_Interrupt_Callback isr; void* arg; bool configured; }; Descriptors m_descriptors[c_MaxTimer]; }; At91TimerDriver at91TimerDriver; bool At91TimerDriver::Initialize(uint32_t timer, bool freeRunning, uint32_t clkSource, uint32_t* ISR, void* ISR_Param) { DISABLE_INTERRUPTS_SCOPED(irq); if (!(timer < At91TimerDriver::c_MaxTimer)) return false; if (at91TimerDriver.m_descriptors[timer].configured == true) return false; at91TimerDriver.m_descriptors[timer].isr.Initialize(ISR, (void*)(size_t)ISR_Param); //--// if (ISR) { if (!AT91_InterruptInternal_Activate(AT91C_ID_TC0_TC1, (uint32_t*)&ISR_TIMER, (void*)timer)) return false; } { AT91_TC &tc = AT91::TIMER(timer); // First, enable the clock of the TIMER AT91_PMC &pmc = AT91::PMC(); //pmc.PMC_PCER = (1 << (AT91C_ID_TC0+timer));//hyddra pmc.PMC_PCER = (1 << (17 + timer));//G400 // Disable the clock and the interrupts tc.TC_CCR = AT91_TC::TC_CLKDIS; tc.TC_IDR = 0xFFFFFFFF; // Clear status bit ////(void) tc.TC_SR; volatile int x = tc.TC_SR; // Set the Mode of the timer Counter if (freeRunning == true) tc.TC_CMR = (clkSource); // 2; else tc.TC_CMR = (AT91_TC::TC_CPCTRG | clkSource); // Enable Interrupt (Compare RC) tc.TC_IER = AT91_TC::TC_CPCS; // Enable the clock tc.TC_CCR = (AT91_TC::TC_CLKEN | AT91_TC::TC_SWTRG); } at91TimerDriver.m_descriptors[timer].configured = true; return true; } bool At91TimerDriver::Uninitialize(uint32_t timer) { // Get Timer pointer AT91_TC &tc = AT91::TIMER(timer); // Disable the clock tc.TC_CCR = AT91_TC::TC_CLKDIS; // Clear Irq Status (void)tc.TC_SR; // Disable All Irq tc.TC_IDR = 0xFFFFFFFF; // First, enable the clock of the TIMER // Todo clock API - PMC *((volatile int*)(AT91C_BASE_PMC + 0x014)) = (1 << AT91C_ID_TC0_TC1); at91TimerDriver.m_descriptors[timer].configured = false; return true; } void At91TimerDriver::ISR_TIMER(void* param) { uint32_t timer = (uint32_t)param; if (!(timer < At91TimerDriver::c_MaxTimer)) return; // Execute the ISR for the Timer at91TimerDriver.m_descriptors[timer].isr.Execute(); } ////////////////////////////////////////////////////////////////////////////// // TimeState // struct TimeState { int32_t controllerIndex; uint64_t m_lastRead; uint64_t m_nextCompare; TinyCLR_NativeTime_Callback m_DequeuAndExecute; bool tableInitialized; }; #define TOTAL_TIME_CONTROLLERS 1 static TimeState timeStates[TOTAL_TIME_CONTROLLERS]; // // TimeState ////////////////////////////////////////////////////////////////////////////// static TinyCLR_NativeTime_Controller timeControllers[TOTAL_TIME_CONTROLLERS]; static TinyCLR_Api_Info timeApi[TOTAL_TIME_CONTROLLERS]; const char* timeApiNames[TOTAL_TIME_CONTROLLERS] = { "GHIElectronics.TinyCLR.NativeApis.AT91.NativeTimeController\\0", }; void AT91_Time_EnsureTableInitialized() { for (auto i = 0; i < TOTAL_TIME_CONTROLLERS; i++) { if (timeStates[i].tableInitialized) continue; timeControllers[i].ApiInfo = &timeApi[i]; timeControllers[i].Initialize = &AT91_Time_Initialize; timeControllers[i].Uninitialize = &AT91_Time_Uninitialize; timeControllers[i].GetNativeTime = &AT91_Time_GetCurrentProcessorTicks; timeControllers[i].ConvertNativeTimeToSystemTime = &AT91_Time_GetTimeForProcessorTicks; timeControllers[i].ConvertSystemTimeToNativeTime = &AT91_Time_GetProcessorTicksForTime; timeControllers[i].SetCallback = &AT91_Time_SetTickCallback; timeControllers[i].ScheduleCallback = &AT91_Time_SetNextTickCallbackTime; timeControllers[i].Wait = &AT91_Time_DelayNative; timeApi[i].Author = "GHI Electronics, LLC"; timeApi[i].Name = timeApiNames[i]; timeApi[i].Type = TinyCLR_Api_Type::NativeTimeController; timeApi[i].Version = 0; timeApi[i].Implementation = &timeControllers[i]; timeApi[i].State = &timeStates[i]; timeStates[i].controllerIndex = i; timeStates[i].tableInitialized = true; } } const TinyCLR_Api_Info* AT91_Time_GetRequiredApi() { AT91_Time_EnsureTableInitialized(); return &timeApi[0]; } void AT91_Time_AddApi(const TinyCLR_Api_Manager* apiManager) { AT91_Time_EnsureTableInitialized(); for (auto i = 0; i < TOTAL_TIME_CONTROLLERS; i++) { apiManager->Add(apiManager, &timeApi[i]); } apiManager->SetDefaultName(apiManager, TinyCLR_Api_Type::NativeTimeController, timeApi[0].Name); } void AT91_Time_InterruptHandler(void* Param) { TinyCLR_NativeTime_Controller *self = (TinyCLR_NativeTime_Controller*)Param; TimeState* state = ((self == nullptr) ? &timeStates[0] : reinterpret_cast<TimeState*>(self->ApiInfo->State)); if (AT91_Time_GetCurrentProcessorTicks(self) >= state->m_nextCompare) { // this also schedules the next one, if there is one state->m_DequeuAndExecute(); } else { // // Because we are limited in the resolution of timer, // resetting the compare will properly configure the next interrupt. // AT91_Time_SetNextTickCallbackTime(self, state->m_nextCompare); } } uint32_t AT91_Time_GetTicksPerSecond(const TinyCLR_NativeTime_Controller* self) { return SLOW_CLOCKS_PER_SECOND; } uint64_t AT91_Time_GetTimeForProcessorTicks(const TinyCLR_NativeTime_Controller* self, uint64_t ticks) { ticks *= (10000000 / SLOW_CLOCKS_TEN_MHZ_GCD); ticks /= (SLOW_CLOCKS_PER_SECOND / SLOW_CLOCKS_TEN_MHZ_GCD); return ticks; } uint64_t AT91_Time_GetProcessorTicksForTime(const TinyCLR_NativeTime_Controller* self, uint64_t time) { return AT91_Time_MicrosecondsToTicks(self, time / 10); } uint64_t AT91_Time_GetCurrentProcessorTime() { return AT91_Time_GetTimeForProcessorTicks(nullptr, AT91_Time_GetCurrentProcessorTicks(nullptr)); } uint64_t AT91_Time_MillisecondsToTicks(const TinyCLR_NativeTime_Controller* self, uint64_t ticks) { ticks *= (SLOW_CLOCKS_PER_SECOND / SLOW_CLOCKS_MILLISECOND_GCD); ticks /= (1000 / SLOW_CLOCKS_MILLISECOND_GCD); return ticks; } uint64_t AT91_Time_MicrosecondsToTicks(const TinyCLR_NativeTime_Controller* self, uint64_t microseconds) { #if 1000000 <= SLOW_CLOCKS_PER_SECOND return microseconds * (SLOW_CLOCKS_PER_SECOND / 1000000); #else return microseconds / (1000000 / SLOW_CLOCKS_PER_SECOND); #endif } uint64_t AT91_Time_GetCurrentProcessorTicks(const TinyCLR_NativeTime_Controller* self) { int32_t timer = AT91_TIME_DEFAULT_CONTROLLER_ID; DISABLE_INTERRUPTS_SCOPED(irq); uint32_t value = At91TimerDriver::ReadCounter(At91TimerDriver::c_SystemTimer); TimeState* state = ((self == nullptr) ? &timeStates[0] : reinterpret_cast<TimeState*>(self->ApiInfo->State)); state->m_lastRead &= (0xFFFFFFFF00000000ull); if (At91TimerDriver::DidTimerOverFlow(At91TimerDriver::c_SystemTimer)) { state->m_lastRead += (0x1ull << 32); } state->m_lastRead |= value; return (uint64_t)state->m_lastRead; } TinyCLR_Result AT91_Time_SetNextTickCallbackTime(const TinyCLR_NativeTime_Controller* self, uint64_t processorTicks) { int32_t timer = AT91_TIME_DEFAULT_CONTROLLER_ID; DISABLE_INTERRUPTS_SCOPED(irq); TimeState* state = ((self == nullptr) ? &timeStates[0] : reinterpret_cast<TimeState*>(self->ApiInfo->State)); state->m_nextCompare = processorTicks; bool fForceInterrupt = false; uint64_t ticks = AT91_Time_GetCurrentProcessorTicks(self); if (state->m_nextCompare >= TIMER_IDLE_VALUE && ticks >= TIMER_IDLE_VALUE) { // Calculate next compare after overflow if (state->m_nextCompare > processorTicks) state->m_nextCompare = state->m_nextCompare - processorTicks; else state->m_nextCompare = 0; // Reset current tick state->m_lastRead = 0; ticks = AT91_Time_GetCurrentProcessorTicks(self); } if (ticks >= state->m_nextCompare) { fForceInterrupt = true; } else { uint32_t diff; if ((state->m_nextCompare - ticks) > At91TimerDriver::c_MaxTimerValue) { diff = At91TimerDriver::c_MaxTimerValue; } else { diff = (uint32_t)(state->m_nextCompare - ticks); } At91TimerDriver::SetCompare(At91TimerDriver::c_SystemTimer, (uint32_t)(At91TimerDriver::ReadCounter(At91TimerDriver::c_SystemTimer) + diff)); if (AT91_Time_GetCurrentProcessorTicks(self) > state->m_nextCompare) { fForceInterrupt = true; } } if (fForceInterrupt) { // Force interrupt to process this. At91TimerDriver::ForceInterrupt(At91TimerDriver::c_SystemTimer); } return TinyCLR_Result::Success; } TinyCLR_Result AT91_Time_Initialize(const TinyCLR_NativeTime_Controller* self) { int32_t timer = AT91_TIME_DEFAULT_CONTROLLER_ID; TimeState* state = ((self == nullptr) ? &timeStates[0] : reinterpret_cast<TimeState*>(self->ApiInfo->State)); state->m_lastRead = 0; state->m_nextCompare = (uint64_t)At91TimerDriver::c_MaxTimerValue; if (!At91TimerDriver::Initialize(At91TimerDriver::c_SystemTimer, true, AT91_TC::TC_CLKS_TIMER_DIV3_CLOCK, (uint32_t*)&AT91_Time_InterruptHandler, (void*)self)) return TinyCLR_Result::InvalidOperation;; At91TimerDriver::SetCompare(At91TimerDriver::c_SystemTimer, At91TimerDriver::c_MaxTimerValue); return TinyCLR_Result::Success; } TinyCLR_Result AT91_Time_Uninitialize(const TinyCLR_NativeTime_Controller* self) { int32_t timer = AT91_TIME_DEFAULT_CONTROLLER_ID; if (!At91TimerDriver::Uninitialize(At91TimerDriver::c_SystemTimer)) return TinyCLR_Result::InvalidOperation;; return TinyCLR_Result::Success; } TinyCLR_Result AT91_Time_SetTickCallback(const TinyCLR_NativeTime_Controller* self, TinyCLR_NativeTime_Callback callback) { TimeState* state = ((self == nullptr) ? &timeStates[0] : reinterpret_cast<TimeState*>(self->ApiInfo->State)); if (state->m_DequeuAndExecute != nullptr) return TinyCLR_Result::InvalidOperation; state->m_DequeuAndExecute = callback; return TinyCLR_Result::Success; } extern "C" void IDelayLoop(int32_t iterations); void AT91_Time_Delay(const TinyCLR_NativeTime_Controller* self, uint64_t microseconds) { // iterations must be signed so that negative iterations will result in the minimum delay microseconds *= ((AT91_AHB_CLOCK_HZ / 2) / CLOCK_COMMON_FACTOR); microseconds /= (1000000 / CLOCK_COMMON_FACTOR); // iterations is equal to the number of CPU instruction cycles in the required time minus // overhead cycles required to call this subroutine. int iterations = (int)microseconds - 14; // Subtract off call & calculation overhead IDelayLoop(iterations); } void AT91_Time_DelayNative(const TinyCLR_NativeTime_Controller* self, uint64_t nativeTime) { //TODO do inline later, don't call out to Delay auto microseconds = AT91_Time_GetTimeForProcessorTicks(self, nativeTime) / 10; AT91_Time_Delay(self, microseconds); }
[ "dome@ledonet.it" ]
dome@ledonet.it
ab42ba9f613b77b6bd5419be732427d9a9c8f3f8
0609228a0e5c83c080d77a6b5da8e4125f05c0ac
/JCppXref/WinNTCpp/Microsoft/NamespaceDemo/ZoologyBird.hh
fb70fb51aadfd2a6563bbb80f7bd4f4ec9c1dc68
[]
no_license
rortian/oldjava
44fcf150ed51f2e136eed04d092ffd0333441799
17bd00e2c2086ec2f87e490e3d5dd4b801dde9ce
refs/heads/master
2020-05-30T06:53:26.661226
2010-09-16T03:49:12
2010-09-16T03:49:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
305
hh
#ifndef ZOOLOGY_BIRD_HH #define ZOOLOGY_BIRD_HH namespace Zoology { class Bird { public: Bird(String, String, double, long); void getData(); long getSpeed(); private: String name; String family; double wing_span; long speed; }; } // Namespace Zoology #endif
[ "jeremy.lael@gmail.com" ]
jeremy.lael@gmail.com
a1332d47b32d6c2c11b772f82180db035dc9ef16
a68c444d56d0bb6b5e0bb8ccbb76bfb081ba6b07
/LampMatrix/matrixpatterns/Matrix5by7.h
c4dfec94727a8bbe2e178744f9e3536bf6a41d1f
[]
no_license
fitzpatricksrus/Pinduino
03040b99bdc27daecf6743a63a1a9a5d6f1b0a51
45bfdd5ca34163dc44ceb91380d36a7307c4f2df
refs/heads/master
2020-04-06T07:05:09.429566
2016-06-30T02:23:51
2016-06-30T02:23:51
24,709,921
2
0
null
null
null
null
UTF-8
C++
false
false
312
h
/* * Matrix5by7.h * * Created on: Oct 2, 2014 * Author: Dad */ #ifndef MATRIX5BY7_H_ #define MATRIX5BY7_H_ #include "MatrixPattern.h" namespace matrixpatterns { class Matrix5by7 { public: static MatrixPattern* getPattern1(); static MatrixPattern* getPattern2(); }; } #endif /* MATRIX5BY7_H_ */
[ "junk@fitzpatircksr.us" ]
junk@fitzpatircksr.us